:root {
  --orange: #F57C28;
  --orange-light: #FEF0E6;
  --orange-dark: #D4621A;
  --dark: #1E1E1E;
  --dark2: #2D2D2D;
  --gray: #6B6B6B;
  --gray-light: #F5F5F4;
  --border: #E8E6E1;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 128px;
  height: 28px;
  background: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nav-logo-icon img {
  width: 128px;
  height: 28px;
  object-fit: contain;
  
}


.nav-logo-text span {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

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

.btn-orange {
  padding: 9px 22px;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding: 140px 24px 90px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 244, 232, 0.00);
  z-index: 2;
}

.hero-content {
	margin-top: -100px;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;

}
.hero-space {
  position: relative;
  z-index: 3;
  width: 100%;
	height: 400px;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 248, 243, 0.92);
  border: 1px solid rgba(245,124,40,0.28);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--orange-dark);
  margin-bottom: 26px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
  color: #ffede0;
  max-width: 1180px;
  margin: 0 auto 18px;
  font-weight: 800;
  white-space: nowrap;
}

.hero h1 em {
  font-style: normal;
  color: #c92200;
}

.hero-sub {
  font-size: 22px;
  color: white;
  max-width: 980px;
  margin: 0 auto 34px;
  line-height: 1.25;
  font-weight: 100;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 14px 32px;
  background: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: orangered;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero:hover {
  background: #141414;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,124,40,0.3);
}

.btn-hero-ghost {
  padding: 14px 28px;
  background: rgba(255,255,255,0.95);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 44px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #ffede0;
  letter-spacing: -1px;
}

.stat-num span {
  color: #ffede0;
}

.stat-label {
  font-size: 12px;
  color: #ffede0;
  margin-top: 2px;
}

/* SECTIONS */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--dark);
  max-width: 560px;
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-sub {
  font-size: 15px;
  color: var(--gray);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 480px;
}

.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.alt-row.reverse .text-side {
  order: 2;
}

.alt-row.reverse .visual-side {
  order: 1;
}

.visual-card {
  background: #E59451;
  border-radius: 20px;
	max-width: 480px;
  padding: 1px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,124,40,0.04) 0%, transparent 60%);
}

.visual-card img {
  max-width: 480px;
	border-radius: 20px;
  filter: drop-shadow(0 12px 24px rgba(245,124,40,0.15));
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.feature-text strong {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.section-divider {
  background: var(--gray-light);
}

/* HOW TO USE */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step {
  text-align: center;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin: 0 auto 14px;
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.2s;
}

.feat-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(245,124,40,0.1);
  transform: translateY(-2px);
}

.feat-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.feat-card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feat-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* CTA */
.cta-section {
  background: #191919;
  margin: 0;
  padding: 80px 24px;
  text-align: center;
}

.cta-inner { 
  max-width: 720px;
  margin: 0 auto;
}

.cta-mascot {
  width: 280px;
  margin: 0 auto 1px;
}

.cta-mascot img {
  width: 100%;
  
}

.cta-title {
	width: 100%;
  font-size: clamp(24px, 4vw, 40px);
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: white;
  padding: 32px 24px;
	color: black;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-innerimg {
width: 200px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.footer-logo-text {
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.footer-links {
	color: black;
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(0,0,0,1.00);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(49,49,49,1.00);
}

/* TABLET */
@media (max-width: 1024px) {
  .hero {
    min-height: 760px;
    padding: 130px 24px 80px;
  }

  .hero h1 {
    white-space: normal;
    max-width: 760px;
    line-height: 1.05;
  }

  .hero-sub {
    white-space: normal;
    max-width: 720px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .alt-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alt-row.reverse .text-side,
  .alt-row.reverse .visual-side {
    order: unset;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: 680px;
    padding: 120px 20px 70px;
  }

  .hero h1 {
    font-size: clamp(34px, 8vw, 48px);
    white-space: normal;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 16px;
    white-space: normal;
    line-height: 1.45;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-stats {
	  
    gap: 20px;
  }
}
