/* ===== VARIABLES ===== */
:root {
  --orange: #d4521a;
  --orange-h: #c24415;
  --orange-glow: rgba(212, 82, 26, 0.25);
  --dark: #111110;
  --dark2: #1a1918;
  --dark3: #222120;
  --white: #ffffff;
  --off: #f7f5f2;
  --gray: #888580;
  --light: #efefed;
  --border: #e8e5e0;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head: "Open Sans", sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}


/* ===== NAVBAR — exact from index.css ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.4s var(--ease-smooth);
}

#navbar.scrolled .nav-main {
  box-shadow: 0 4px 40px rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}

.nav-main {
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .4s var(--ease-smooth), background .4s;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: 44px;
  flex-shrink: 0;
  transition: opacity .2s;
  width: 50px;
  height: 60px;
}

.logo:hover {
  opacity: .85;
}

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
  align-items: center;
  justify-content: center;
  
}

.nav-links a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #444;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: var(--radius);
  transition: color .25s var(--ease-smooth);
  white-space: nowrap;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
  transform-origin: left;
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--orange);
  color: #fff;
  padding: 14px 20px;
  flex-shrink: 0;
  transition: background .25s var(--ease-smooth);
  margin-right: -32px;
}

.nav-cta:hover {
  background: var(--orange-h);
}

.cta-body strong {
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.35s var(--ease-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 52px 0;
}

/* Background image layer */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('./img/fire\ banner.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.04);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.04) translateX(0px);
  }

  100% {
    transform: scale(1.10) translateX(-18px);
  }
}

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 6, 2, 0.82) 0%, rgba(10, 6, 2, 0.55) 55%, rgba(10, 6, 2, 0.20) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
}

/* Subtle grid on top of overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255, 106, 0, 0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
}

/* Orange ember vignette bottom */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  z-index: 3;
  background: linear-gradient(to top, rgba(255, 106, 0, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 32px;
  max-width: 900px;
}

.overlay-img-hero {
  position: absolute;
  z-index: 6;
  right: 10%;
  bottom: 0%;
  filter: drop-shadow(0 24px 64px rgba(255, 106, 0, 0.30));
  animation: heroFloat 5s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes heroFloat {

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

  33% {
    transform: translateY(-14px) rotate(0.5deg);
  }

  66% {
    transform: translateY(-7px) rotate(-0.5deg);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 0, 0.15);
  border: 1px solid rgba(255, 106, 0, 0.45);
  padding: 6px 28px;
  margin-bottom: 30px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-glow);
  backdrop-filter: blur(8px);
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--fire);
  border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px var(--fire);
  flex-shrink: 0;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--fire);
  }

  50% {
    opacity: 0.25;
    box-shadow: none;
  }
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(68px, 8.5vw, 110px);
  line-height: 0.9;

  color: #ffffff;
  margin-bottom: 2px;
}

.hero-title .accent {
  /* color: var(--fire); */
  display: inline-block;
  text-shadow: 0 0 60px rgba(255, 106, 0, 0.6), 0 0 120px rgba(255, 106, 0, 0.25);
  animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {

  0%,
  100% {
    text-shadow: 0 0 60px rgba(255, 106, 0, 0.6), 0 0 120px rgba(255, 106, 0, 0.25);
  }

  50% {
    text-shadow: 0 0 90px rgba(255, 106, 0, 0.9), 0 0 160px rgba(255, 106, 0, 0.4);
  }
}

.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
  color: transparent;
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 26px 0 22px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: var(--orange-h);
  color: #fff;
  padding: 16px 38px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(255, 106, 0, 0.45);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 106, 0, 0.55);
  background: var(--orange);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
 
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateY(-2px);
}

/* Stats — white text on dark bg */
.hero-stats {
  position: absolute;
  right: 92px;
  bottom: 80px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.stat {
  text-align: right;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 54px;
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-num .fire-num {
  color: var(--fire);
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.hero-stats .stat:not(:last-child) {
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 0;
  gap: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: fadeInUp 1s ease 1.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }

  to {
    opacity: 0.6;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(14px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.section-h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.section-h2.center {
  text-align: center;
}

.sec-head {
  margin-bottom: 56px;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0 110px;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-smooth);
}

.img-wrap:hover img {
  transform: scale(1.04);
}
.accent{
  color: var(--orange);
}

.img-border-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(212, 82, 26, 0.2);
  pointer-events: none;
}

.exp-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px var(--orange-glow);
  transition: transform 0.4s var(--ease-spring);
}

.about-img-col:hover .exp-badge {
  transform: scale(1.05);
}

.exp-n {
  display: block;
  font-family: var(--font-body);
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: 1px;
}

.exp-t {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.5;
}

.about-text {
  padding-left: 8px;
}

.body-txt {
  font-size:1.2rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 300;
}

.feat-row {
  display: flex;
  gap: 36px;
  margin-bottom: 20px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
  width: 48px;
  height: 48px;
  background: rgba(212, 82, 26, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.feat-item:hover .feat-icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}

.feat-item span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 4px;
  letter-spacing: 0.3px;
}

.check-list {
  margin-bottom: 20px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.2rem;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  line-height: 1.5;
  transition: color 0.25s;
}

.check-list li:hover {
  color: var(--dark);
}

.check-list li:last-child {
  border: none;
}

.chk {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s var(--ease-spring);
}

.check-list li:hover .chk {
  transform: scale(1.15);
}

.emg-inline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.emg-inline:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.emg-ic {
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform 0.3s var(--ease-spring);
}

.emg-inline:hover .emg-ic {
  transform: rotate(-15deg) scale(1.1);
}

.emg-inline small {
  display: block;
  font-size: 0.72rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  font-family: var(--font-head);
}

.emg-inline strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--dark);
}

/* ===== STATS ===== */
.stats {
  position: relative;
  padding: 30px 0;
  overflow: hidden;
  margin-bottom: 100px;
}

.stats-bg-img {
  position: absolute;
  inset: 0;
}

.stats-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.87);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-item {
  text-align: center;
  padding: 52px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: background 0.35s var(--ease-smooth);
  cursor: default;
}

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

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease-out);
  border-radius: 2px;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stat-item:hover::after {
  transform: scaleX(1);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  color: var(--orange);
  opacity: 0.8;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s;
}

.stat-item:hover .stat-icon {
  transform: scale(1.2) translateY(-4px);
  opacity: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-lbl {
  font-family: var(--font-head);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testi {
  padding: 100px 0;
  background: var(--off);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth);
}

.tcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.09);
}

.tcard::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.45s var(--ease-out);
}

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

.tcard-quote {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3.5rem;
  color: rgba(212, 82, 26, 0.1);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.tcard:hover .tcard-quote {
  color: rgba(212, 82, 26, 0.18);
}

.stars {
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.tcard p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tcard-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  flex-shrink: 0;
  border: 2px solid rgba(212, 82, 26, 0.3);
  transition: transform 0.3s var(--ease-spring);
}

.tcard:hover .tcard-avatar {
  transform: scale(1.08);
}

.tcard-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--dark);
}

.tcard-author small {
  font-size: 0.78rem;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 600;
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 8, 0.84);
}

.cta-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px;
}

.cta-body h2 {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-body h2 em {
  color: var(--orange);
  font-style: normal;
}

.cta-body p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.icard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
}

.icard:hover {
  border-color: var(--orange);
  transform: translateX(6px);
  box-shadow: 4px 0 20px var(--orange-glow);
}

.ic {
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
  width: 42px;
  height: 42px;
  background: rgba(212, 82, 26, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.icard:hover .ic {
  background: var(--orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.icard h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 4px;
}

.icard p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--off);
  border: 1.5px solid var(--border);
  color: var(--dark);
  padding: 13px 16px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s;
  resize: vertical;
  appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
}

.footer-top {
  padding: 76px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
}

.footer-logo {
  margin-bottom: 18px;
  width: 60px;
  height: 70px;
  display: block;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.87rem;
  line-height: 1.75;
  font-weight: 300;
}

.f-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.f-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  transition: background 0.25s var(--ease-smooth), color 0.25s, border-color 0.25s, transform 0.3s var(--ease-spring);
}

.f-socials a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.87rem;
  transition: color 0.25s, padding-left 0.3s var(--ease-smooth);
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.f-emg {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(212, 82, 26, 0.1);
  border: 1px solid rgba(212, 82, 26, 0.25);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 22px;
  transition: background 0.3s, border-color 0.3s;
}

.f-emg:hover {
  background: rgba(212, 82, 26, 0.15);
  border-color: rgba(212, 82, 26, 0.4);
}

.f-emg i {
  font-size: 1.2rem;
  color: var(--orange);
}

.f-emg small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.f-emg strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--orange);
  letter-spacing: 1px;
}

.f-news-lbl {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.f-news {
  display: flex;
}

.f-news input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: #fff;
  padding: 11px 14px;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.85rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.3s, background 0.3s;
}

.f-news input:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.09);
}

.f-news input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.f-news button {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 11px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.25s, transform 0.2s;
}

.f-news button:hover {
  background: var(--orange-h);
}

.f-news button:active {
  transform: scale(0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.f-bot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.f-bot-inner p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-spring), background 0.25s;
  z-index: 999;
  box-shadow: 0 8px 24px var(--orange-glow);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--orange-h);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes shimmer {
  0% { left: -80%; }
  100% { left: 140%; }
}

@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.fade-up { transform: translateY(50px); }
.fade-left { transform: translateX(-48px); }
.fade-right { transform: translateX(48px); }

.fade-up.in,
.fade-left.in,
.fade-right.in {
  opacity: 1;
  transform: translate(0);
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 100px 0 110px;
  background: var(--off);
}

.categories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.cat-title-accent {
  color: var(--orange);
}

.section-sub {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.75;
  max-width:500px;
  font-weight: 300;
  text-align: right;
  margin-bottom: 32px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-smooth), border-color 0.3s;
}

.cat-card:hover,
.cat-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.10);
  border-color: var(--orange);
}

.cat-card-inner {
  padding: 32px 28px 26px;
  position: relative;
}

.cat-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(212, 82, 26, 0.06);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
  transition: color 0.4s;
  pointer-events: none;
}

.cat-card:hover .cat-num {
  color: rgba(212, 82, 26, 0.13);
}

.cat-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 82, 26, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}

.cat-card:hover .cat-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-6deg) scale(1.1);
}

.cat-name {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 10px;
}

.cat-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 22px;
  font-weight: 300;
}

.cat-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.cat-count {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cat-arrow {
  width: 32px;
  height: 32px;
  background: var(--off);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  border: 1px solid var(--border);
  font-weight: 700;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
  text-decoration: none;
  flex-shrink: 0;
}

.cat-card:hover .cat-arrow {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateX(5px);
}

.cat-footer {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cat-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--orange);
  line-height: 1;
}

.cat-stat-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.6;
}

/* ===== FEATURED BAND ===== */
.featured-wrap {
  background: var(--dark2);
  padding: 90px 0;
}

.featured-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.featured-content {
  max-width: 580px;
}

.featured-title {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.featured-title span {
  color: var(--orange);
  display: block;
}

.featured-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 400;
}

.featured-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 82, 26, 0.12);
  border: 1px solid rgba(212, 82, 26, 0.25);
  color: rgba(255, 255, 255, 0.8);
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.feat-tag i {
  color: var(--orange);
  font-size: 0.7rem;
}

.feat-tag:hover {
  background: rgba(212, 82, 26, 0.22);
  border-color: var(--orange);
  color: #fff;
}

.featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 20px;
}

.featured-visual img {
  max-width: 600px;
  max-height: 800px;
}

/* ===== BRANDS TICKER ===== */
.brands-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.brands-head {
  margin-bottom: 44px;
}

.brands-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.brands-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 26px;
  cursor: default;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.brand-chip img {
  width: 90px;
  
}





/* ===================================================
   NEW SECTION 1 — WHY CHOOSE US
   =================================================== */

.why-us {
  padding: 100px 0 110px;
  background: #fff;
}

.why-head {
  text-align: center;
  margin-bottom: 64px;
}

.why-sub {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.45s var(--ease-smooth), border-color 0.3s;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.09);
  border-color: rgba(212, 82, 26, 0.2);
}

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

.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(212, 82, 26, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--orange);
  margin-bottom: 22px;
  position: relative;
  transition: background 0.3s var(--ease-smooth), transform 0.4s var(--ease-spring);
}

.why-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  border: 2px solid var(--orange);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
}

.why-card:hover .why-icon-wrap {
  background: var(--orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.why-card:hover .why-icon-wrap::after {
  opacity: 0.25;
  transform: scale(1.1);
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.why-card p {
  font-size: 1.06rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

.why-accent-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.3s;
}

.why-card:hover .why-accent-bar {
  background: var(--orange);
}

/* Trust bar */
.trust-bar {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.trust-item:hover {
  color: #fff;
}

.trust-item i {
  color: var(--orange);
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-spring);
}

.trust-item:hover i {
  transform: scale(1.2) rotate(-5deg);
}

.trust-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ===================================================
   PROCESS SECTION — 2×2 GRID LAYOUT
   =================================================== */

.process {
  padding: 100px 0 110px;
  background: var(--off);
  position: relative;
  overflow: hidden;
}

.process-bg-shape {
  position: absolute;
  top: -140px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,82,26,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Top header row */
.process-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-label-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-label-inline span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.process-top .section-h2 {
  margin-bottom: 0;
}

.process-top-sub {
  font-size: 1.1rem;
  color: #777;
  line-height: 1.75;
  max-width: 450px;
  font-weight: 300;
  text-align: right;
  align-self: flex-end;
}

/* 2×2 grid */
.process-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

/* Card */
.p2-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 26px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition:
    transform 0.45s var(--ease-spring),
    box-shadow 0.45s var(--ease-smooth),
    border-color 0.3s;
  cursor: default;
}

.p2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.10);
  border-color: rgba(212,82,26,0.28);
}

/* Orange top bar reveal on hover */
.p2-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

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

/* Bottom glow fill on hover */
.p2-glow {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,82,26,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.p2-card:hover .p2-glow {
  opacity: 1;
}

/* Ghost number */
.p2-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  color: rgba(212,82,26,0.06);
  position: absolute;
  top: 6px;
  right: 16px;
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}

.p2-card:hover .p2-num {
  color: rgba(212,82,26,0.13);
}

/* Icon */
.p2-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,82,26,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition:
    background 0.3s var(--ease-smooth),
    color 0.3s,
    transform 0.4s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.p2-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  transform: translateX(-120%);
  transition: transform 0.4s var(--ease-smooth);
}

.p2-card:hover .p2-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
}

.p2-card:hover .p2-icon::after {
  transform: translateX(120%);
}

.p2-body {
  flex: 1;
}

.p2-body h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  transition: color 0.25s;
}

.p2-card:hover .p2-body h3 {
  color: var(--orange);
}

.p2-body p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 22px;
}

/* Footer */
.p2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
  transition: border-color 0.3s;
}

.p2-card:hover .p2-footer {
  border-color: rgba(212,82,26,0.18);
}

.p2-tag {
  display: inline-block;
  background: rgba(212,82,26,0.08);
  color: var(--orange);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(212,82,26,0.15);
  transition: background 0.3s, border-color 0.3s;
}

.p2-card:hover .p2-tag {
  background: rgba(212,82,26,0.14);
  border-color: rgba(212,82,26,0.3);
}

.p2-arrow {
  width: 34px;
  height: 34px;
  background: var(--off);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--dark);
  border: 1px solid var(--border);
  text-decoration: none;
  flex-shrink: 0;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    transform 0.35s var(--ease-spring);
}

.p2-card:hover .p2-arrow {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateX(4px);
}

/* Process CTA bar */
.process-cta {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.process-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.process-cta-text strong {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-cta-text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.btn-fire{
  color: #fff;
  border: 2px solid white;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  
}
.btn-fire:hover{
  background-color: var(--orange);
  color: black;
  border: 2px solid black;
}
.btn-ghost-light{
  background-color: var(--orange);
  color: black;
  border: none;
  padding: 14px 20px;
  border-radius: 10px;
}
.eyebrow-tag{
  color: white;
  font-size: 20px;
  font-weight: 600;

}

/* ---- Responsive ---- */
@media(max-width: 768px) {
  .process-2x2 {
    grid-template-columns: 1fr;
  }
  .process-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .process-top-sub {
    text-align: left;
    max-width: 100%;
  }
  .process-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 18px;
  }
}



/* ===== RESPONSIVE ===== */
@media(max-width: 1100px) {
  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-connector {
    display: none;
  }
}

@media(max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-band {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .featured-visual {
    justify-content: center;
  }
  .featured-features {
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar {
    padding: 24px 32px;
    gap: 16px;
  }
  .trust-div {
    display: none;
  }
}

@media(max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 32px;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-smooth);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateX(0);
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .f-bot-inner {
    flex-direction: column;
    text-align: center;
  }
  .feat-row {
    flex-direction: column;
    gap: 18px;
  }
  .hero-stat-bar {
    flex-wrap: wrap;
    gap: 14px;
  }
  .hstat-div {
    display: none;
  }
  .hero-h1 {
    font-size: 2.6rem;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .categories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-sub {
    text-align: left;
    max-width: 100%;
  }
  .cat-footer {
    padding: 24px 28px;
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .featured-band {
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 28px;
    gap: 14px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 24px;
  }
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */

.home-products-section {
  padding: 100px 0 110px;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

/* Subtle fire-ember bg texture */
.home-products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(212, 82, 26, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 20%, rgba(212, 82, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.home-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.home-products-header .section-h2 {
  color: #fff;
  margin-bottom: 0;
}

.section-sub.sub-1 {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  max-width: 420px;
  font-weight: 300;
  text-align: right;
  margin-bottom: 0;
}

/* Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

/* Card */
.project-card {
  display: block;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition:
    transform 0.45s var(--ease-spring),
    box-shadow 0.45s var(--ease-smooth),
    border-color 0.35s;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 82, 26, 0.35);
  border-color: rgba(212, 82, 26, 0.4);
}

/* Image wrap */
.project-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease-smooth), filter 0.4s;
  filter: brightness(0.85);
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.07);
  filter: brightness(0.7);
}

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10, 9, 8, 0.7) 100%
  );
  transition: background 0.4s;
}

.project-card:hover .project-img-overlay {
  background: linear-gradient(
    to bottom,
    rgba(212, 82, 26, 0.12) 0%,
    rgba(10, 9, 8, 0.85) 100%
  );
}

/* Hover arrow icon on image */
.project-hover-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: opacity 0.3s var(--ease-smooth), transform 0.4s var(--ease-spring);
}

.project-card:hover .project-hover-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Content */
.project-content {
  padding: 24px 26px 28px;
  position: relative;
}

/* Orange line top of content on hover */
.project-content::before {
  content: '';
  position: absolute;
  top: 0; left: 26px; right: 26px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  border-radius: 2px;
}

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

/* Tag pill */
.project-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(212, 82, 26, 0.12);
  border: 1px solid rgba(212, 82, 26, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  transition: background 0.3s, border-color 0.3s;
}

.project-card:hover .project-tag {
  background: rgba(212, 82, 26, 0.2);
  border-color: rgba(212, 82, 26, 0.5);
}

.project-content h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  transition: color 0.25s;
}

.project-card:hover .project-content h3 {
  color: var(--orange);
}

.project-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
}

/* Bottom CTA link */
.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
  width: 100%;
  transition: color 0.3s;
}

.project-cta i {
  transition: transform 0.35s var(--ease-spring), color 0.3s;
  font-size: 0.75rem;
}

.project-card:hover .project-cta {
  color: var(--orange);
  border-top-color: rgba(212, 82, 26, 0.2);
}

.project-card:hover .project-cta i {
  transform: translateX(5px);
  color: var(--orange);
}

/* Products footer */
.products-footer {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

@media(max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  .home-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-sub.sub-1 {
    text-align: left;
    max-width: 100%;
  }
  .project-grid {
    grid-template-columns: 1fr;
  }
  .project-img-wrap {
    height: 220px;
  }



  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cut {
    display: none;
  }
  .hero-stat-bar {
    position: relative;
  }
  .container {
    padding: 0 20px;
  }
}





/* ===== HERO SECTION — MOBILE 100VH RESPONSIVE ===== */

/* ============ TABLET (1024px Down) ============ */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 85vh;
    padding: 100px 32px 40px;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 70px);
  }

  .hero-sub {
    font-size: clamp(0.9rem, 1.8vw, 16px);
    margin: 20px 0 18px;
  }

  .hero-actions {
    gap: 12px;
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    padding: 14px 28px;
    font-size: 12px;
    justify-content: center;
  }

  .overlay-img-hero {
    right: 2%;
    bottom: -10%;
    max-width: 300px;
    opacity: 0.5;
  }

  .hero-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    width: 100%;
  }

  .stat {
    text-align: center;
    padding: 20px 0;
    border: none;
  }

  .stat-num {
    font-size: clamp(1.8rem, 4vw, 42px);
  }

  .stat-label {
    font-size: 9px;
    margin-top: 4px;
  }
}

/* ============ MOBILE (768px Down) — 100vh Responsive ============ */
@media (max-width: 768px) {
  .hero {
    /* Use dvh (dynamic viewport height) for mobile - accounts for browser UI */
    height: 100dvh;
  
    /* Fallback for older browsers */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px;
    overflow: visible;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
    text-align: left;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(1.75rem, 5.5vw, 44px);
    line-height: 1.1;
    margin-bottom: 16px;
   
  }

  .hero-sub {
    font-size: clamp(0.85rem, 1.6vw, 14px);
    margin: 14px 0 18px;
    max-width: 100%;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    padding: 13px 20px;
    font-size: 11px;
    justify-content: center;
    letter-spacing: 1.5px;
  }

  .btn-primary svg,
  .btn-ghost svg {
    display: none;
  }

  .overlay-img-hero {
    display: none;
  }

  .hero-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0;
    width: auto;
    z-index: 6;
  }

  .stat {
    text-align: center;
    padding: 12px 0;
    border: none;
  }

  .stat-num {
    font-size: clamp(1.4rem, 3vw, 32px);
    line-height: 1;
  }

  .stat-label {
    font-size: 7px;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
  }
}

/* ============ MOBILE SMALL (576px Down) — 100vh Responsive ============ */
@media (max-width: 576px) {
  .hero {
    height: 100dvh;
    
    min-height: 100vh;
    padding: 75px 16px 15px;
  }

  .hero-title {
    font-size: clamp(3.55rem, 5vw, 38px);
    line-height: 1.05;
    margin-bottom: 12px;
  }

  .hero-sub {
    font-size: clamp(3rem, 2vw, 14px);
    margin: 12px 0 16px;
  }

  .hero-actions {
    gap: 8px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 11px 16px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero-stats {
    bottom: 15px;
    left: 16px;
    right: 16px;
    gap: 10px;
  }

  .stat {
    padding: 10px 0;
  }

  .stat-num {
    font-size: clamp(1.2rem, 2.8vw, 28px);
  }

  .stat-label {
    font-size: 6px;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }
}

/* ============ EXTRA SMALL (480px Down) — 100vh Responsive ============ */
@media (max-width: 480px) {
  .hero {
    height: 100dvh;
  
    min-height: 100vh;
    padding:40px 14px 12px;
  }

  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(3.4rem, 10vw, 74px);
    line-height: 1;
    margin-bottom: 10px;
  }

  .hero-sub {
    font-size: clamp(1.2rem, 1.7vw, 14px);
    margin: 10px 0 14px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 8px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 10px 14px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .hero-stats {
    bottom: 12px;
    left: 14px;
    right: 14px;
    gap: 8px;
  }

  .stat {
    padding: 8px 0;
  }

  .stat-num {
    font-size: clamp(1.1rem, 2.5vw, 24px);
  }

  .stat-label {
    font-size: 5px;
    letter-spacing: 0px;
    margin-top: 2px;
  }
}

/* ============ ULTRA SMALL (< 360px) — 100vh Responsive ============ */
@media (max-width: 360px) {
  .hero {
    height:98dvh;
    min-height: 98dvh;
    min-height: 100vh;
    padding: 65px 12px 10px;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 40px);
    margin-bottom: 8px;
  }

  .hero-sub {
    font-size: clamp(1rem, 1.8vw, 14px);
    margin: 8px 0 12px;
  }

  .btn-primary,
  .btn-ghost {
    padding: 9px 12px;
    font-size: 8px;
  }

  .hero-stats {
    bottom: 10px;
    left: 12px;
    right: 12px;
    gap: 8px;
  }

  .stat {
    padding: 6px 0;
  }

  .stat-num {
    font-size: clamp(1rem, 2.2vw, 22px);
  }

  .stat-label {
    font-size: 5px;
    margin-top: 1px;
  }
}

/* Content size polish: footer only */
.footer-about p,
.footer-col ul li a {
  font-size: 1.05rem;
  line-height: 1.8;
}

.f-emg small,
.f-news-lbl,
.f-news input,
.f-news button,
.f-bot-inner p {
  font-size: 0.95rem;
}
