/* ============================================================
   THRI VENTURE — style.css
   ============================================================ */

/* --- Variables --- */
:root {
  --gold:      #c9a227;
  --gold-l:    #e0b93a;
  --gold-d:    #a07e18;
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark2:     #1a1a1a;
  --g1:        #2a2a2a;
  --g2:        #555555;
  --g3:        #888888;
  --g4:        #bbbbbb;
  --light:     #f6f3ee;
  --border:    #e5e1d8;
  --white:     #ffffff;
  --bg:        #fafaf8;
  --r-sm:      8px;
  --r-md:      14px;
  --r-lg:      20px;
  --r-xl:      28px;
  --r-pill:    999px;
  --sh-sm:     0 1px 4px rgba(0,0,0,.07);
  --sh-md:     0 4px 20px rgba(0,0,0,.09);
  --sh-lg:     0 12px 48px rgba(0,0,0,.13);
  --sh-xl:     0 24px 80px rgba(0,0,0,.18);
  --ease:      cubic-bezier(.4,0,.2,1);
  --t:         .28s;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--bg); color: var(--dark); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* --- Container --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 24px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark  { background: var(--black); color: #fff; box-shadow: var(--sh-md); }
.btn-dark:hover  { background: #1e1e1e; box-shadow: var(--sh-lg); }
.btn-gold  { background: var(--gold); color: #fff; box-shadow: 0 6px 24px rgba(201,162,39,.35); }
.btn-gold:hover  { background: var(--gold-d); box-shadow: 0 10px 32px rgba(201,162,39,.4); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.82); border: 1.5px solid rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.45); color: #fff; }
.btn-lg  { padding: 14px 32px; font-size: 15px; }
.btn-full { width: 100%; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 96px 0; }

.sec-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,162,39,.35);
  padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 14px;
}

.sec-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }

.sec-title {
  font-size: clamp(1.85rem, 3.8vw, 2.7rem);
  font-weight: 800; line-height: 1.18; letter-spacing: -.025em; margin-bottom: 14px;
}

.sec-sub { font-size: 16px; color: var(--g2); line-height: 1.72; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(229,225,216,.7);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--sh-md); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-main {
  height: 42px; width: auto; max-width: 180px;
  object-fit: contain; display: block;
  transition: opacity var(--t), transform var(--t);
}
.logo:hover .logo-main { opacity: .85; transform: scale(1.02); }
.footer-logo {
  height: 38px; max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: .85;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 13.5px; font-weight: 500; color: var(--g2);
  position: relative; padding: 4px 0;
  transition: color var(--t);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-wa { padding: 9px 18px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: #fff; padding: 8px;
}
.hamburger span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #09090b 0%, #16100a 45%, #0c0f14 100%);
}

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,162,39,.22) 0%, transparent 68%);
  top: -120px; right: -100px;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,162,39,.1) 0%, transparent 70%);
  bottom: -60px; left: -60px;
}

.hero-body {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 28px;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px; border-radius: var(--r-pill);
  background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.28);
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-l);
}
.badge-pulse {
  width: 6px; height: 6px; background: var(--gold-l); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .45; transform: scale(1.6); }
}

/* Title */
.hero-title {
  font-size: clamp(2.8rem, 6.2vw, 5rem); font-weight: 900;
  line-height: 1.06; letter-spacing: -.035em; color: #fff; max-width: 820px;
}
.gold-text {
  background: linear-gradient(130deg, var(--gold-l), var(--gold-d));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.6); line-height: 1.72; max-width: 580px; }

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

/* Stats bar */
.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg);
  padding: 22px 32px;
}
.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }
.stat-n { display: block; font-size: 26px; font-weight: 800; color: var(--gold-l); letter-spacing: -.02em; line-height: 1; }
.stat-l { display: block; font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 4px; white-space: nowrap; }
.stat-div { width: 1px; height: 38px; background: rgba(255,255,255,.1); }

/* Scroll hint */
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-track {
  width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.22);
  border-radius: 14px; display: flex; justify-content: center; padding: 7px 0;
}
.scroll-dot {
  width: 4px; height: 9px; background: var(--gold);
  border-radius: 2px; animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(13px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-sec { background: var(--bg); }

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

.svc-card {
  background: var(--white); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); padding: 28px;
  display: flex; flex-direction: column; gap: 0;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--sh-xl); border-color: transparent; }
.svc-card.featured { border-color: rgba(201,162,39,.45); background: linear-gradient(145deg, #fffef9, #fff); }
.svc-card.featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(201,162,39,.04), transparent);
  pointer-events: none;
}

/* Card badge */
.card-badge {
  display: inline-flex; align-self: flex-start;
  font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: 16px;
  background: rgba(201,162,39,.12); color: var(--gold-d);
}
.card-badge.blue   { background: rgba(60,100,220,.1); color: #3c64dc; }
.card-badge.orange { background: rgba(230,100,20,.1); color: #c05010; }
.card-badge.pink   { background: rgba(220,60,130,.1); color: #b03070; }
.card-badge.purple { background: rgba(120,60,220,.1); color: #7030c0; }

/* Card icon */
.card-icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  background: var(--light); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); margin-bottom: 18px;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.svc-card:hover .card-icon { background: var(--gold); border-color: var(--gold); color: #fff; }

.card-name { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.card-desc { font-size: 13.5px; color: var(--g2); line-height: 1.65; flex-grow: 1; margin-bottom: 18px; }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.card-tags span { font-size: 10.5px; font-weight: 600; padding: 3px 10px; background: var(--light); border-radius: var(--r-pill); color: var(--g2); }

.card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  transition: color var(--t), gap var(--t); margin-top: auto;
}
.svc-card:hover .card-cta { color: var(--gold-d); gap: 10px; }

/* ============================================================
   LLC SECTION
   ============================================================ */
.llc-sec { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }

.llc-layout {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start;
}

/* Package card */
.llc-pkg {
  background: var(--white); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); overflow: hidden;
}

.pkg-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px 18px; border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #fffef8, #fff);
}
.pkg-head h3 { font-size: 18px; font-weight: 700; }
.pkg-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: rgba(201,162,39,.12); color: var(--gold-d);
}

.pkg-list { padding: 6px 0; }
.pkg-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 28px; border-bottom: 1px solid var(--light);
  transition: background var(--t);
}
.pkg-item:last-child { border-bottom: none; }
.pkg-item:hover { background: var(--light); }

.pkg-check {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
  border-radius: 50%; color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pkg-item strong { display: block; font-size: 13.5px; font-weight: 650; margin-bottom: 2px; }
.pkg-item p { font-size: 12px; color: var(--g3); }

.llc-pkg > .btn { margin: 22px 28px; width: calc(100% - 56px); }

/* Pricing column */
.llc-right { display: flex; flex-direction: column; gap: 22px; }

.price-box, .addr-box {
  background: var(--white); border-radius: var(--r-xl);
  border: 1.5px solid var(--border); padding: 26px;
}
.price-box h3, .addr-box h3 { font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.price-note { font-size: 12.5px; color: var(--g3); margin-bottom: 18px; line-height: 1.5; }

/* State list */
.state-list { display: flex; flex-direction: column; gap: 8px; }
.state-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px; background: var(--light); border-radius: var(--r-md);
  transition: background var(--t);
}
.state-row:hover { background: rgba(201,162,39,.08); }
.state-name { display: block; font-size: 14px; font-weight: 650; }
.state-use  { display: block; font-size: 11px; color: var(--g3); margin-top: 1px; }
.state-price { font-size: 18px; font-weight: 800; color: var(--gold-d); }

/* Address options */
.addr-list { display: flex; flex-direction: column; gap: 10px; }
.addr-opt {
  padding: 15px; background: var(--light); border-radius: var(--r-md);
  border: 1.5px solid transparent; position: relative;
  transition: border-color var(--t), background var(--t);
}
.addr-opt:hover { border-color: var(--gold); background: rgba(201,162,39,.04); }
.addr-opt.best  { border-color: var(--gold); background: rgba(201,162,39,.05); }
.best-label {
  position: absolute; top: -10px; right: 14px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--gold-d); padding: 2px 10px; border-radius: var(--r-pill);
}
.addr-price { font-size: 20px; font-weight: 800; line-height: 1; margin-bottom: 7px; }
.addr-price span { font-size: 13px; font-weight: 500; color: var(--g3); }
.addr-opt strong { font-size: 13px; font-weight: 700; display: block; margin-bottom: 3px; }
.addr-opt p { font-size: 12px; color: var(--g3); line-height: 1.5; }

/* ============================================================
   WHY US
   ============================================================ */
.why-sec {
  background: linear-gradient(145deg, #09090b 0%, #18120a 50%, #0d0f14 100%);
}

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

.feat-card {
  padding: 26px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.feat-card:hover {
  background: rgba(255,255,255,.07); border-color: rgba(201,162,39,.3);
  transform: translateY(-4px);
}
.feat-icon {
  width: 46px; height: 46px; border-radius: var(--r-md); margin-bottom: 18px;
  background: rgba(201,162,39,.1); border: 1px solid rgba(201,162,39,.2);
  display: flex; align-items: center; justify-content: center; color: var(--gold-l);
}
.feat-card h4 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.feat-card p  { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.65; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-sec { background: var(--bg); }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start; gap: 0;
}

.step { text-align: center; padding: 0 14px; }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
  color: #fff; font-size: 19px; font-weight: 800;
  margin-bottom: 18px; box-shadow: 0 8px 24px rgba(201,162,39,.3);
}
.step h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 10px; }
.step p   { font-size: 13.5px; color: var(--g2); line-height: 1.65; }

.step-line {
  width: 48px; height: 2px; margin-top: 28px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,.1));
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-sec { background: var(--white); border-top: 1px solid var(--border); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }

.contact-info h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800; line-height: 1.22; margin: 14px 0;
}
.contact-info > p { font-size: 15px; color: var(--g2); line-height: 1.7; margin-bottom: 34px; }

.c-details { display: flex; flex-direction: column; gap: 14px; }
.c-row { display: flex; align-items: center; gap: 13px; }
.c-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--light); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; color: var(--gold-d);
}
.c-row a { font-size: 14px; color: var(--dark); transition: color var(--t); }
.c-row a:hover { color: var(--gold-d); }

/* Form */
.contact-form-wrap {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--r-xl); padding: 34px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg label { font-size: 13px; font-weight: 600; color: var(--dark); }
.fg input, .fg select, .fg textarea {
  padding: 11px 15px; border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-family: inherit; font-size: 14px; color: var(--dark); background: var(--white);
  transition: border-color var(--t), box-shadow var(--t); outline: none; resize: vertical;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.11);
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--g4); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111; color: #fff; padding: 64px 0 0; }

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

.footer-brand .f-logo {
  display: flex; align-items: center; gap: 11px; margin-bottom: 14px;
}
.footer-brand .f-logo span { font-size: 15px; font-weight: 800; letter-spacing: .12em; }
.footer-brand > p { font-size: 13.5px; color: rgba(255,255,255,.48); line-height: 1.7; margin-bottom: 22px; }

.f-socials { display: flex; gap: 9px; }
.f-social {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: background var(--t), color var(--t), border-color var(--t);
}
.f-social:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.footer-col h4 {
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.56); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--gold-l); }

.f-contact { display: flex; flex-direction: column; gap: 9px; }
.f-contact p, .f-contact a { font-size: 13.5px; color: rgba(255,255,255,.56); transition: color var(--t); }
.f-contact a:hover { color: var(--gold-l); }
.f-btn { margin-top: 8px; padding: 10px 18px; font-size: 13px; }

.footer-bottom {
  margin-top: 48px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.3);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 998;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: #fff;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: transform var(--t), box-shadow var(--t);
}
.wa-float:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--sh-xl); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-bg {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.72); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  max-width: 600px; width: 100%; max-height: 88vh; overflow-y: auto;
  position: relative;
  transform: translateY(22px) scale(.97);
  transition: transform .32s cubic-bezier(.34,1.56,.64,1);
}
.modal-bg.open .modal-box { transform: translateY(0) scale(1); }

.modal-x {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.modal-x:hover { background: var(--border); }

#modalBody { padding: 36px; }

.m-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-d); border: 1px solid rgba(201,162,39,.3);
  padding: 4px 12px; border-radius: var(--r-pill); margin-bottom: 12px;
}
.m-title { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.m-overview { font-size: 14.5px; color: var(--g2); line-height: 1.7; margin-bottom: 24px; }
.m-section { font-size: 13px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--g3); }

.m-items { display: grid; gap: 9px; margin-bottom: 26px; }
.m-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; background: var(--light); border-radius: var(--r-md); font-size: 14px;
}
.m-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-l), var(--gold-d));
  border-radius: 50%; color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.m-wa-note { font-size: 14px; color: var(--g2); line-height: 1.65; margin-bottom: 14px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.anim.in { opacity: 1; transform: translateY(0); }

/* Hero entrance — each child animates in sequence */
.hero-badge,
.hero-title,
.hero-sub,
.hero-btns,
.hero-stats {
  opacity: 0;
  transform: translateY(32px);
  animation: heroFadeUp .7s var(--ease) forwards;
}
.hero-badge  { animation-delay: .05s; }
.hero-title  { animation-delay: .18s; }
.hero-sub    { animation-delay: .30s; }
.hero-btns   { animation-delay: .42s; }
.hero-stats  { animation-delay: .55s; }

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

/* Scroll-hint entrance */
.scroll-hint {
  opacity: 0;
  animation: heroFadeUp .6s var(--ease) .9s forwards;
}

/* Navbar slide in */
.navbar {
  animation: navSlide .5s var(--ease) forwards;
}
@keyframes navSlide {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Floating orbs */
.orb-1 { animation: floatA 7s ease-in-out infinite; }
.orb-2 { animation: floatB 9s ease-in-out infinite; }
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-18px, 22px) scale(1.05); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(14px, -18px) scale(1.08); }
}

/* Gold text shimmer */
.gold-text {
  background-size: 200% auto;
  background-image: linear-gradient(120deg, var(--gold-d) 0%, var(--gold-l) 40%, #f5d060 60%, var(--gold-d) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* Progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2.5px; z-index: 2000;
  background: linear-gradient(90deg, var(--gold-d), var(--gold-l), var(--gold-d));
  background-size: 200% auto;
  width: 0%; transition: width .1s linear;
  animation: shimmer 2s linear infinite;
}

/* Section titles fade-in */
.sec-head {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.sec-head.in { opacity: 1; transform: translateY(0); }

/* Card 3D tilt (applied via JS) */
.svc-card  { transform-style: preserve-3d; will-change: transform; }
.feat-card { transform-style: preserve-3d; will-change: transform; }

/* Step number pulse on hover */
.step:hover .step-num {
  animation: stepPop .35s var(--ease);
}
@keyframes stepPop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* Stat number count flash */
.stat-n { transition: color .3s; }

/* Package item slide-in */
.pkg-item.anim { transform: translateX(-18px); }
.pkg-item.in   { transform: translateX(0); }

/* State row slide-in */
.state-row.anim { transform: translateX(18px); }
.state-row.in   { transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .llc-layout   { grid-template-columns: 1fr; }
  .feat-grid    { grid-template-columns: repeat(2, 1fr); }
  .steps        { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 28px; }
  .step-line    { display: none; }
  .footer-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none; flex-direction: column; gap: 4px;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 16px 20px 20px;
    box-shadow: var(--sh-lg); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 11px 14px; border-radius: var(--r-md); font-size: 15px; }
  .nav-link:hover, .nav-link.active { background: var(--light); }
  .nav-link::after { display: none; }
  .hamburger { display: flex; }
  .nav-wa    { display: none; }

  /* Sections */
  .section { padding: 72px 0; }
  .cards-grid   { grid-template-columns: 1fr; }
  .feat-grid    { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr; gap: 20px; }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 28px; }

  /* Hero stats */
  .hero-stats { padding: 16px 20px; flex-wrap: wrap; gap: 8px; }
  .stat       { padding: 6px 14px; flex: 1; min-width: 100px; }
  .stat-div   { display: none; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Float button */
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-btns  { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .contact-form-wrap { padding: 22px; }
  #modalBody  { padding: 24px; }
  .m-title    { font-size: 20px; }
  .hero-stats { justify-content: center; }
}
