:root {
  --orange: #f78b02;
  --orange-light: #ffaa35;
  --orange-glow: rgba(247, 139, 2, 0.18);
  --bg: #ffffff;
  --bg2: #f7f7f5;
  --bg3: #efefed;
  --text: #111111;
  --text2: #333333;
  --gray: #888888;
  --gray-light: #555555;
  --border: rgba(0, 0, 0, 0.09);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 5%; display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: all .3s;
}
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--text); letter-spacing: 2px; cursor: pointer; text-decoration: none; }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--gray-light); text-decoration: none; font-size: .9rem; font-weight: 600; letter-spacing: .4px; transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width .3s; }
.nav-links a:hover, .nav-links a.active-link { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }
.nav-cta { background: var(--orange); color: #fff; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: .88rem; text-decoration: none; transition: all .3s; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }
.nav-cta:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 6px 20px var(--orange-glow); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; display: block; }

/* MOBILE MENU */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: #fff; border-left: 2px solid var(--orange); padding: 80px 30px 30px; transition: right .35s cubic-bezier(.4,0,.2,1); z-index: 999; box-shadow: -10px 0 40px rgba(0,0,0,.1); }
.mobile-menu.open { right: 0; }
.mobile-menu a { display: block; padding: 14px 0; color: var(--text); text-decoration: none; font-weight: 600; font-size: 1rem; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--orange); }

/* SECTION COMMON */
section { padding: 90px 5%; }
.section-label { color: var(--orange); font-size: .78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem,4vw,3.4rem); letter-spacing: 2px; margin-bottom: 14px; color: var(--text); }
.section-title span { color: var(--orange); }
.section-sub { color: var(--gray); line-height: 1.7; max-width: 540px; font-size: .94rem; }
.section-header { margin-bottom: 56px; }

/* PAGE HERO */
.page-hero { padding: 120px 5% 70px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 800px; }

/* BUTTONS */
.btn-primary { background: var(--orange); color: #fff; padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: .94rem; text-decoration: none; transition: all .3s; box-shadow: 0 4px 20px var(--orange-glow); border: 2px solid var(--orange); cursor: pointer; font-family: 'Outfit', sans-serif; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(247,139,2,.4); background: var(--orange-light); }
.btn-outline { color: var(--text); padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: .94rem; text-decoration: none; transition: all .3s; border: 2px solid rgba(0,0,0,.2); cursor: pointer; background: transparent; font-family: 'Outfit', sans-serif; }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--orange); padding: 14px 36px; border-radius: 50px; font-weight: 800; font-size: .95rem; text-decoration: none; transition: all .3s; cursor: pointer; border: none; font-family: 'Outfit', sans-serif; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }

/* CTA SECTION */
.cta-section { background: var(--orange); text-align: center; padding: 90px 5%; }
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem,5vw,3.8rem); letter-spacing: 2px; margin-bottom: 14px; color: #fff; }
.cta-sub { color: rgba(255,255,255,.85); margin-bottom: 34px; font-size: 1rem; }

/* STATS BAR */
.stats-bar { background: var(--orange); padding: 32px 5%; }
.stats-bar-inner { display: flex; justify-content: space-around; align-items: center; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: #fff; line-height: 1; }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.85); font-weight: 600; letter-spacing: 1px; margin-top: 4px; }

/* TESTIMONIALS */
.testi-section { background: var(--bg2); }
.testi-wrap { max-width: 860px; margin: 0 auto; }
.testi-slider { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform .5s ease; }
.testi-card { min-width: 100%; padding: 44px; background: #fff; border: 1.5px solid var(--border); border-radius: 22px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.testi-stars { color: var(--orange); font-size: 1.2rem; margin-bottom: 18px; }
.testi-text { font-size: 1rem; line-height: 1.8; color: var(--gray-light); font-style: italic; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), #ff6b00); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; color: #fff; }
.author-name { font-weight: 700; color: var(--text); }
.author-role { color: var(--gray); font-size: .8rem; }
.testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,.15); cursor: pointer; transition: all .3s; }
.testi-dot.active { background: var(--orange); width: 26px; border-radius: 5px; }

/* FOOTER */
footer { background: var(--text); border-top: 1px solid rgba(255,255,255,.07); padding: 60px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; max-width: 1280px; margin: 0 auto 44px; }
.footer-brand .logo { font-size: 1.5rem; display: block; margin-bottom: 14px; }
.footer-brand p { color: #888; font-size: .85rem; line-height: 1.7; max-width: 270px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #aaa; text-decoration: none; transition: all .3s; }
.social-link:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-size: .9rem; font-weight: 700; margin-bottom: 16px; color: #fff; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: #888; font-size: .85rem; text-decoration: none; transition: color .3s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; }
.footer-copy { color: #666; font-size: .81rem; }
.footer-tagline { color: var(--orange); font-size: .81rem; font-style: italic; font-weight: 600; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* STAT BOX */
.stat-box { background: var(--bg2); border: 1.5px solid var(--border); padding: 18px; border-radius: 12px; text-align: center; transition: all .3s; }
.stat-box:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(247,139,2,.1); }
.stat-box .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--orange); }
.stat-box .stat-lbl { font-size: .75rem; color: var(--gray); font-weight: 600; margin-top: 3px; }

/* RESPONSIVE */
@media(max-width:900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
