/* ======================================
   BELEX MOTOR — style.css
====================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #faf5e8;
  color: #1c1208;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

:root {
  --cream: #faf5e8;
  --cream2: #f3ece0;
  --cream3: #ece4d4;
  --white: #fffdf7;
  --brown-d: #2b1c0c;
  --brown-m: #3d2b18;
  --text: #1c1208;
  --text-m: #4a3828;
  --text-l: #8a7a66;
  --orange: #e85500;
  --red: #c41800;
  --oglow: rgba(232, 85, 0, .35);
}

/* ======================================
   NAV
====================================== */
.belex-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: 58px;
  padding: 0 24px;
  background: rgba(255, 253, 247, .97);
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: box-shadow .3s;
}

.belex-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .13);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-m);
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 8px 20px;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 3px 3px 0 var(--red);
  transition: all .2s;
}

.nav-cta:hover {
  background: var(--red);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

.hamburger span:nth-child(1) {
  width: 24px;
}

.hamburger span:nth-child(2) {
  width: 16px;
}

.hamburger span:nth-child(3) {
  width: 20px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  width: 24px;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 24px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 253, 247, .98);
  padding: 24px;
  border-bottom: 2px solid var(--orange);
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--text-m);
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: color .2s;
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 640px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ======================================
   BUTTONS
====================================== */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 12px 26px;
  text-transform: uppercase;
  clip-path: polygon(9px 0%, 100% 0%, calc(100% - 9px) 100%, 0% 100%);
  box-shadow: 4px 4px 0 var(--red);
  transition: all .22s;
}

.btn-orange:hover {
  background: var(--red);
  color: #fff;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--text-m);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 11px 18px;
  text-transform: uppercase;
  border: 1.5px solid rgba(28, 18, 8, .18);
  transition: all .22s;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 13px 34px;
  text-transform: uppercase;
  clip-path: polygon(11px 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
  box-shadow: 4px 4px 0 var(--red);
  transition: all .22s;
}

.btn-white:hover {
  background: var(--brown-d);
  color: var(--orange);
}

/* ======================================
   HERO
====================================== */
.belex-hero {
  min-height: 100vh;
  padding-top: 58px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 85% at 15% 60%, rgba(232, 85, 0, .12) 0%, transparent 60%),
    linear-gradient(155deg, #fdf9ef 0%, #f8efd5 35%, #f3e4bc 65%, #eedad0 100%);
}

.hero-stripes {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 260px;
  background: repeating-linear-gradient(-55deg, transparent 0, transparent 16px, rgba(232, 85, 0, .06) 16px, rgba(232, 85, 0, .06) 18px);
  pointer-events: none;
}

.hero-speed-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-speed-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(232, 85, 0, .28), transparent);
  animation: slMove linear infinite;
  opacity: 0;
}

@keyframes slMove {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    transform: translateX(120vw);
    opacity: 0;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 40px 24px 90px clamp(40px, 6vw, 110px);
  max-width: 600px;
  width: 100%;
}

.hero-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--orange);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.hero-h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(56px, 15vw, 106px);
  line-height: .90;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.hero-h1 .h-outline {
  -webkit-text-stroke: 2px rgba(28, 18, 8, .2);
  color: transparent;
}

.hero-h1 .h-orange {
  color: var(--orange);
}

.hero-h1 .h-dark {
  color: var(--text);
}

.hero-h1 .h-muted {
  color: #b0a090;
  font-size: .58em;
}

.hero-desc {
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: var(--text-m);
  max-width: 360px;
  margin-bottom: 38px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.google-badge {
  position: absolute;
  right: 24px;
  bottom: 90px;
  z-index: 3;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px var(--oglow), 0 4px 16px rgba(0, 0, 0, .1);
  animation: rotateSpin 22s linear infinite;
}

@keyframes rotateSpin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.google-badge-inner {
  animation: rotateReverse 22s linear infinite;
  text-align: center;
}

@keyframes rotateReverse {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(-360deg);
  }
}

.g-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 29px;
  color: #fff;
  line-height: 1;
}

.g-star {
  color: #ffd700;
  font-size: 11px;
}

.g-txt {
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  color: rgba(255, 255, 255, .8);
  letter-spacing: 1px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: .35;
}

.hero-scroll-hint span {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-m);
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 1.5px solid var(--text-m);
  border-bottom: 1.5px solid var(--text-m);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* Hero right-side image — revealed gradually from text end */
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.4) 52%,
      rgba(0, 0, 0, 0.8) 64%,
      black 78%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.4) 52%,
      rgba(0, 0, 0, 0.8) 64%,
      black 78%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: sepia(0.25) saturate(0.7) brightness(0.96);
  opacity: 0.75;
}

.hero-cut {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--orange);
}

/* ======================================
   STATS BAR
====================================== */
.stats-bar {
  background: var(--orange);
}

.stats-bar-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.stats-bar-inner::-webkit-scrollbar {
  display: none;
}

.stat-item {
  flex: 1;
  min-width: 105px;
  padding: 15px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .2);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 25px;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  color: rgba(255, 255, 255, .85);
  margin-top: 2px;
}

.checker-bar {
  height: 6px;
  background: repeating-linear-gradient(90deg, #1c0c00 0, #1c0c00 6px, var(--red) 6px, var(--red) 12px);
}

/* ======================================
   TICKER STRIP
====================================== */
.ticker-strip {
  background: var(--cream2);
  border-top: 1px solid rgba(232, 85, 0, .15);
  border-bottom: 1px solid rgba(232, 85, 0, .15);
  padding: 16px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: tickerMove 22s linear infinite;
  width: max-content;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-l);
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-item.hi {
  color: var(--orange);
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: .4;
  flex-shrink: 0;
  align-self: center;
  display: inline-block;
}

/* ======================================
   SECTION BASE
====================================== */
.sec {
  padding: 80px 24px;
  position: relative;
}

.sec-cream {
  background: var(--cream);
}

.sec-white {
  background: var(--white);
}

.sec-cream2 {
  background: var(--cream2);
}

.sec-brown {
  background: var(--brown-m);
}

.sec-brownd {
  background: var(--brown-d);
  clip-path: polygon(0 46px, 100% 0, 100% calc(100% - 46px), 0 100%);
  margin-top: -46px;
  margin-bottom: -46px;
  z-index: 1;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.section-label::after {
  content: '';
  max-width: 55px;
  flex: 1;
  height: 1px;
  background: var(--orange);
  opacity: .4;
}

.section-label.red {
  color: var(--red);
}

.section-label.red::after {
  background: var(--red);
}

.section-h {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 8vw, 58px);
  line-height: .95;
  margin-bottom: 14px;
}

.section-h.dark {
  color: var(--text);
}

.section-h.light {
  color: #fff;
}

.section-h .o {
  color: var(--orange);
}

.section-p {
  font-size: 13px;
  line-height: 2;
  max-width: 480px;
}

.section-p.dark {
  color: var(--text-m);
}

.section-p.light {
  color: rgba(255, 255, 255, .5);
}

/* Diagonal dividers */
.div-cut {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 46px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.div-white {
  background: var(--white);
}

.div-cream {
  background: var(--cream);
}

.div-cream2 {
  background: var(--cream2);
}

.div-brown {
  background: var(--brown-m);
}

.div-brownd {
  background: var(--brown-d);
}

/* ======================================
   WHY US CARDS
====================================== */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #fff;
  border: 1px solid rgba(232, 85, 0, .13);
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  transition: transform .28s, box-shadow .28s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 85, 0, .13);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 60px;
  color: rgba(232, 85, 0, .09);
  position: absolute;
  top: 6px;
  right: 10px;
  line-height: 1;
}

.card-icon {
  font-size: 32px;
  margin-bottom: 13px;
  display: block;
}

.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.card-desc {
  font-size: 12px;
  line-height: 1.85;
  color: var(--text-m);
}

/* ======================================
   TWO COLUMN
====================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 700px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.img-frame {
  position: relative;
  margin-bottom: 16px;
}

.img-box {
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream3), var(--cream2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-box .placeholder-wm {
  font-family: 'Bebas Neue', cursive;
  font-size: 76px;
  color: rgba(232, 85, 0, .1);
  letter-spacing: 5px;
}

.img-box .placeholder-sub {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  color: var(--text-l);
  letter-spacing: 2px;
}

.img-border {
  position: absolute;
  bottom: -10px;
  right: -10px;
  border: 2px solid var(--orange);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.img-border.red {
  border-color: var(--red);
}

.img-stamp {
  position: absolute;
  top: -12px;
  left: -8px;
  background: var(--red);
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 11px;
  letter-spacing: 2px;
  padding: 5px 13px;
  clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.img-stamp.orange {
  background: var(--orange);
}

.big-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(42px, 10vw, 60px);
  line-height: .9;
  color: var(--text);
  margin-bottom: 22px;
}

.big-heading .o {
  color: var(--orange);
}

.body-p {
  font-size: 13px;
  line-height: 2;
  color: var(--text-m);
  margin-bottom: 16px;
}

/* ======================================
   HONEST SECTION
====================================== */
.honest-img-wrap {
  width: 100%;
  height: 320px;
  background: linear-gradient(180deg, var(--brown-d) 0%, var(--brown-m) 50%, var(--brown-d) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.honest-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45) contrast(1.1);
}

.honest-wm {
  font-family: 'Bebas Neue', cursive;
  font-size: 100px;
  color: rgba(255, 255, 255, .04);
  position: absolute;
  white-space: nowrap;
}

.honest-icon {
  font-size: 52px;
  position: relative;
  z-index: 1;
}

.honest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(20, 10, 3, .95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 32px 24px;
}

.honest-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 7px;
}

.honest-head {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(32px, 7vw, 50px);
  color: #fff;
  line-height: 1;
}

.honest-head .o {
  color: var(--orange);
}

.honest-body {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .55);
  margin-top: 12px;
  max-width: 500px;
}

/* ======================================
   SERVICES
====================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid .service-card {
    grid-column: span 2;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: 2 / 4;
  }
}

.service-card {
  background: rgba(255, 253, 247, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 26px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .28s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.service-card:hover {
  background: rgba(232, 85, 0, .14);
  border-color: rgba(232, 85, 0, .5);
  transform: translateY(-4px);
}

.service-card:nth-child(5) {
  grid-column: 1/-1;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 11px;
  display: block;
}

.service-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 253, 247, .9);
}

.service-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 5px;
}

/* ======================================
   CTA SECTION
====================================== */
.cta-section {
  background: var(--orange);
  padding: 68px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'BELEX';
  position: absolute;
  font-family: 'Bebas Neue', cursive;
  font-size: 200px;
  color: rgba(255, 255, 255, .07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.cta-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(34px, 7vw, 52px);
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}

.cta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 30px;
  position: relative;
}

/* ======================================
   CONTACT FORM
====================================== */
.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-m);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--red);
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(28, 18, 8, .15);
  background: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

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

.form-note {
  font-size: 11px;
  color: var(--text-l);
  margin-bottom: 24px;
  line-height: 1.8;
}

/* ======================================
   PAGE HERO
====================================== */
.page-hero {
  padding: 110px 24px 56px;
  background: linear-gradient(155deg, #fdf9ef 0%, #f3e4bc 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 260px;
  background: repeating-linear-gradient(-55deg, transparent 0, transparent 16px, rgba(232, 85, 0, .06) 16px, rgba(232, 85, 0, .06) 18px);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-h1 {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(40px, 8vw, 64px);
  color: var(--text);
  line-height: 1;
}

/* ======================================
   COMPANY TABLE
====================================== */
.company-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 720px;
  margin: 0 auto;
}

.company-table th,
.company-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--cream3);
  vertical-align: top;
  font-size: 13px;
  line-height: 1.9;
}

.company-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  width: 140px;
  padding-right: 20px;
}

.company-table td {
  color: var(--text-m);
}

/* ======================================
   COMPANY PAGE
====================================== */
.page-hero-wm {
  position: absolute;
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(100px, 20vw, 200px);
  color: rgba(232, 85, 0, .05);
  letter-spacing: 0.12em;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.page-hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--text-l);
  text-transform: uppercase;
  margin-top: 10px;
}

.breadcrumb-wrap {
  background: var(--cream);
  padding: 11px 24px;
  border-bottom: 1px solid rgba(232, 85, 0, .08);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-l);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  max-width: 1080px;
  margin: 0 auto;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }

.co-sec-header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 44px;
}

.co-num {
  font-family: 'Bebas Neue', cursive;
  font-size: 88px;
  line-height: 0.78;
  color: var(--orange);
  opacity: 0.18;
  flex-shrink: 0;
  letter-spacing: -2px;
}

.co-num-light {
  color: #fff;
}

.co-heading {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(30px, 5vw, 44px);
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1;
}

.co-heading-light { color: #fff; }

.co-info-list { max-width: 800px; }

.co-info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream3);
  align-items: start;
}

.co-info-row:first-child { border-top: 1px solid var(--cream3); }

.co-info-key {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  padding-top: 4px;
}

.co-info-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.85;
}

.co-info-val small {
  font-size: 12px;
  color: var(--text-l);
  font-weight: 400;
  display: block;
}

.co-tel-link {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--orange);
}

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

@media (min-width: 600px) {
  .co-services { grid-template-columns: repeat(3, 1fr); }
}

.co-svc-card {
  background: var(--cream);
  border-top: 3px solid var(--orange);
  border: 1px solid var(--cream3);
  border-top: 3px solid var(--orange);
  padding: 28px 16px;
  text-align: center;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.co-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(232, 85, 0, .13);
  border-color: rgba(232, 85, 0, .35);
}

.co-svc-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 11px;
}

.co-svc-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

.co-svc-en {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-l);
  text-transform: uppercase;
  margin-top: 5px;
  display: block;
}

.co-access {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 700px) {
  .co-access { grid-template-columns: 260px 1fr; align-items: start; }
}

.co-access-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .65);
}

.co-access-key {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  padding-top: 3px;
}

/* ======================================
   FOOTER
====================================== */
.belex-footer {
  background: var(--brown-d);
  padding: 44px 24px 22px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 24px;
}

@media (min-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  color: var(--orange);
  letter-spacing: 3px;
}

.footer-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .22);
  text-transform: uppercase;
  margin: 3px 0 14px;
}

.footer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.85;
}

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 7px 16px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity .2s;
}

.footer-insta:hover {
  opacity: .8;
  color: #fff;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(232, 85, 0, .25);
}

.footer-table {
  width: 100%;
  border-collapse: collapse;
}

.footer-table td {
  font-size: 11px;
  padding: 6px 0;
  vertical-align: top;
  color: rgba(255, 255, 255, .42);
}

.footer-table td:first-child {
  font-family: 'Oswald', sans-serif;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .2);
  width: 70px;
  padding-right: 8px;
}

.footer-nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav-list a {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .28);
  text-transform: uppercase;
  transition: color .2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 10px;
  color: rgba(255, 255, 255, .14);
  letter-spacing: 1px;
}

.footer-map {
  width: 100%;
  height: 200px;
  border: none;
  margin-top: 24px;
  filter: grayscale(.3) sepia(.15);
}

/* ======================================
   REVEAL ANIMATION
====================================== */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s, transform .65s;
}

.rv2 {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s .14s, transform .65s .14s;
}

.rv3 {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s .28s, transform .65s .28s;
}

.rv.visible,
.rv2.visible,
.rv3.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   UTILITY
====================================== */
.mt-8 {
  margin-top: 8px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mt-32 {
  margin-top: 32px !important;
}