/* ============================================================
   RINGCIRCLE BPO — Master Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Lora:ital@1&display=swap');

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

:root {
  --orange: #f97316;
  --orange2: #ea6c0a;
  --orange3: #c2550a;
  --orangelight: #fff4ed;
  --orangemid: #fed7aa;
  --ink: #1a1a1a;
  --ink2: #374151;
  --mid: #6b7280;
  --soft: #9ca3af;
  --white: #ffffff;
  --off: #fafafa;
  --border: #e5e7eb;
  --border2: #f3f4f6;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --r: 16px;
  --hf: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: #fff; color: var(--ink); font-family: var(--hf); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

/* ---- NAV ---- */
#navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.logo-text span { color: var(--orange); }
.logo-text em { font-style: normal; font-size: 13px; font-weight: 600; color: var(--soft); margin-left: 4px; }
.nav-links { display: flex; gap: 6px; }
.nav-links a { color: var(--mid); text-decoration: none; font-size: 14px; font-weight: 500; padding: 7px 14px; border-radius: 8px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--off); }
.nav-links a.active { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.btn-nav { background: var(--orange); color: #fff; padding: 10px 22px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; }
.btn-nav:hover { background: var(--orange2); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.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); }

/* MOBILE MENU */
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 24px; background: #fff; border-bottom: 1px solid var(--border); gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--mid); text-decoration: none; font-size: 15px; font-weight: 500; padding: 10px 14px; border-radius: 10px; }
.mobile-menu a:hover { background: var(--off); color: var(--ink); }

/* ---- BUTTONS ---- */
.btn-main { background: var(--orange); color: #fff; padding: 15px 34px; border-radius: 12px; font-size: 16px; font-weight: 700; text-decoration: none; transition: all .25s; display: inline-block; box-shadow: 0 4px 20px rgba(249,115,22,.28); }
.btn-main:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,.38); }
.btn-out { border: 1.5px solid var(--border); color: var(--ink); padding: 15px 30px; border-radius: 12px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all .25s; background: #fff; display: inline-block; }
.btn-out:hover { border-color: var(--orangemid); background: var(--orangelight); color: var(--orange3); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.3); color: #fff; padding: 14px 30px; border-radius: 12px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all .25s; display: inline-block; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-wht { background: #fff; color: var(--orange2); padding: 15px 34px; border-radius: 12px; font-size: 15px; font-weight: 800; text-decoration: none; display: inline-block; transition: all .2s; box-shadow: 0 4px 20px rgba(0,0,0,.14); }
.btn-wht:hover { background: var(--orangelight); transform: translateY(-2px); }

/* ---- HERO ---- */
.hero-wrap { position: relative; overflow: hidden; background: #fff; }
.orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .28; animation: floatOrb 8s ease-in-out infinite; }
.orb1 { width: 340px; height: 340px; background: var(--orange); top: -80px; right: 2%; }
.orb2 { width: 220px; height: 220px; background: #fbbf24; bottom: 5%; left: 3%; animation-delay: -3s; }
.orb3 { width: 180px; height: 180px; background: var(--orange2); top: 40%; right: 18%; animation-delay: -5s; }
@keyframes floatOrb { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-28px) scale(1.07)} }

.hero { padding: 96px 32px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orangelight); border: 1.5px solid var(--orangemid); color: var(--orange3); padding: 7px 18px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-bottom: 28px; animation: fadeSlideDown .7s ease both; }
.hero-badge-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero h1 { font-size: clamp(40px, 5vw, 68px); font-weight: 900; line-height: 1.03; letter-spacing: -2px; color: var(--ink); margin-bottom: 20px; animation: fadeSlideUp .8s .1s ease both; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 36px; animation: fadeSlideUp .8s .2s ease both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeSlideUp .8s .3s ease both; margin-bottom: 28px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; animation: fadeSlideUp .8s .4s ease both; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--mid); font-weight: 500; }
.trust-icon { width: 18px; height: 18px; background: var(--green, #10b981); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 10px; font-weight: 700; flex-shrink: 0; background: var(--orange); }

.hero-right { animation: fadeSlideUp .9s .2s ease both; }
.hero-card { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 32px; box-shadow: var(--shadow-lg); animation: cardFloat 5s ease-in-out infinite; }
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-card-avatar { width: 48px; height: 48px; border-radius: 12px; background: var(--orangelight); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.card-title { font-size: 16px; font-weight: 700; color: var(--ink); }
.card-sub { font-size: 13px; color: var(--soft); }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hsg { background: var(--off); border-radius: 14px; padding: 18px 20px; border: 1px solid var(--border2); transition: all .3s; }
.hsg:hover { border-color: var(--orangemid); background: var(--orangelight); transform: scale(1.03); }
.hsg-n { font-size: 30px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -1px; }
.hsg-n span { color: var(--orange); }
.hsg-l { font-size: 12px; color: var(--soft); margin-top: 4px; font-weight: 500; }
.hero-badge2 { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: #fff; padding: 11px 18px; border-radius: 12px; font-size: 13px; font-weight: 700; margin-top: 14px; }

/* ---- TICKER ---- */
.ticker-wrap { background: var(--orange); padding: 14px 0; overflow: hidden; }
.ticker { display: flex; animation: ticker 22s linear infinite; width: max-content; }
.ticker-item { white-space: nowrap; padding: 0 40px; font-size: 14px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 12px; }
.ticker-dot { width: 5px; height: 5px; background: rgba(255,255,255,.5); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ---- STATS STRIP ---- */
.stats-strip { background: var(--ink); padding: 36px 32px; display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.si { padding: 12px 52px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.si:last-child { border-right: none; }
.si-n { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -1px; }
.si-n span { color: var(--orange); }
.si-l { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 5px; font-weight: 500; }

/* ---- SAVINGS ---- */
.savings-band { background: linear-gradient(135deg, #f97316 0%, #ea6c0a 60%, #c2550a 100%); padding: 72px 32px; display: flex; align-items: center; justify-content: center; gap: 72px; flex-wrap: wrap; position: relative; overflow: hidden; }
.deco-ring { position: absolute; border-radius: 50%; border: 40px solid rgba(255,255,255,.08); pointer-events: none; }
.deco-ring1 { width: 340px; height: 340px; top: -100px; right: -60px; animation: spinRing 14s linear infinite; }
.deco-ring2 { width: 220px; height: 220px; bottom: -80px; left: -40px; animation: spinRing 9s linear infinite reverse; }
@keyframes spinRing { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.savings-ring { width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.28); border: 3px solid rgba(255,255,255,.75); box-shadow: 0 0 0 8px rgba(255,255,255,.1), inset 0 0 24px rgba(255,255,255,.15); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; position: relative; z-index: 1; animation: pulseRing 3s ease-in-out infinite; }
@keyframes pulseRing { 0%,100%{box-shadow:0 0 0 0 rgba(255,255,255,.25),inset 0 0 24px rgba(255,255,255,.15)} 50%{box-shadow:0 0 0 18px rgba(255,255,255,0),inset 0 0 24px rgba(255,255,255,.15)} }
.savings-ring-n { font-size: 52px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -2px; text-shadow: 0 2px 12px rgba(0,0,0,.15); }
.savings-ring-l { font-size: 13px; color: rgba(255,255,255,.9); font-weight: 700; margin-top: 4px; }
.savings-txt { max-width: 460px; position: relative; z-index: 1; }
.savings-txt h2 { font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: -.5px; line-height: 1.2; }
.savings-txt p { color: rgba(255,255,255,.85); font-size: 16px; margin-bottom: 28px; line-height: 1.75; }

/* ---- SECTION BASE ---- */
.section { padding: 88px 32px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.tag { font-size: 11px; font-weight: 800; color: var(--orange); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.tag::before { content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 1px; display: inline-block; }
.stitle { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; line-height: 1.08; letter-spacing: -1px; margin-bottom: 14px; color: var(--ink); }
.ssub { color: var(--mid); font-size: 17px; max-width: 500px; line-height: 1.75; margin-bottom: 0; }

/* ---- SERVICE CARDS ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 36px 30px; transition: all .3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.card:hover::before { transform: scaleX(1); }
.card:hover { border-color: var(--orangemid); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(249,115,22,.1); }
.card-ico { width: 52px; height: 52px; background: var(--orangelight); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform .3s; }
.card:hover .card-ico { transform: scale(1.1) rotate(-4deg); }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.card p { color: var(--mid); font-size: 15px; line-height: 1.75; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--orange); font-size: 14px; font-weight: 700; text-decoration: none; margin-top: 18px; transition: gap .2s; }
.card:hover .card-link { gap: 10px; }

/* ---- WHY US ---- */
.why-bg { background: var(--off); border-top: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 56px; }
.why-left { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 44px 36px; position: relative; overflow: hidden; }
.why-left::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--orange); }
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.stars { color: var(--orange); font-size: 18px; letter-spacing: 1px; animation: starPulse 2.5s ease-in-out infinite; }
@keyframes starPulse { 0%,100%{filter:brightness(1)} 50%{filter:brightness(1.35)} }
.rating-txt { font-size: 13px; color: var(--soft); font-weight: 500; }
.big-num { font-size: 80px; font-weight: 900; line-height: 1; color: var(--ink); letter-spacing: -3px; }
.big-num span { color: var(--orange); }
.big-lbl { color: var(--soft); font-size: 15px; font-weight: 500; margin-bottom: 24px; }
.divider { border: none; border-top: 1.5px solid var(--border); margin: 24px 0; }
.testimonial { font-family: 'Lora', serif; font-style: italic; color: var(--ink2); font-size: 15px; line-height: 1.9; }
.tauthor { font-size: 13px; font-weight: 700; color: var(--soft); margin-top: 14px; }
.why-items { display: flex; flex-direction: column; }
.why-item { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1.5px solid var(--border); transition: all .3s; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-item:hover { padding-left: 8px; }
.why-num { font-size: 12px; font-weight: 800; color: var(--orange); background: var(--orangelight); width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; }
.why-item h4 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.why-item p { color: var(--mid); font-size: 15px; line-height: 1.7; }

/* ---- TESTIMONIALS ---- */
.testi-section { background: var(--off); border-top: 1.5px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.testi-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 32px; transition: all .3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orangemid); }
.testi-stars { color: var(--orange); font-size: 16px; margin-bottom: 16px; }
.testi-card p { color: var(--ink2); font-size: 15px; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orangelight); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--orange); flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.testi-author span { display: block; font-size: 12px; color: var(--soft); }

/* ---- CTA BAND ---- */
.cta-band { background: var(--ink); padding: 88px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border: 1px solid rgba(249,115,22,.1); border-radius: 50%; animation: expandRing 4s ease-in-out infinite; }
.cta-band::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 400px; height: 400px; border: 1px solid rgba(249,115,22,.15); border-radius: 50%; animation: expandRing 4s 1s ease-in-out infinite; }
@keyframes expandRing { 0%{transform:translate(-50%,-50%) scale(.8);opacity:1} 100%{transform:translate(-50%,-50%) scale(1.4);opacity:0} }
.cta-band .tag { position: relative; z-index: 1; }
.cta-band .stitle,.cta-band p,.cta-band a { position: relative; z-index: 1; }

/* ---- FOOTER ---- */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.07); padding: 64px 32px 36px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand {}
.flogo { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.flogo span { color: var(--orange); }
.ft { color: rgba(255,255,255,.4); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .2s; }
.social-links a:hover { background: var(--orange); color: #fff; }
.fcol h5 { font-size: 11px; font-weight: 800; color: rgba(255,255,255,.3); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; }
.fcol a { display: block; color: rgba(255,255,255,.6); font-size: 14px; text-decoration: none; margin-bottom: 10px; transition: color .2s, padding-left .2s; }
.fcol a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { max-width: 1180px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: #fff; }
.fb-pill { background: var(--orange); color: #fff; font-size: 11px; font-weight: 800; padding: 6px 16px; border-radius: 999px; letter-spacing: 1px; }

/* ---- FLOAT CTA ---- */
.float-cta { position: fixed; bottom: 28px; right: 28px; background: var(--orange); color: #fff; padding: 14px 22px; border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 24px rgba(249,115,22,.4); transition: all .25s; z-index: 999; transform: translateY(80px); opacity: 0; }
.float-cta.visible { transform: translateY(0); opacity: 1; }
.float-cta:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(249,115,22,.5); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--ink) 0%, #1f2937 100%); padding: 88px 32px 72px; position: relative; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%); pointer-events: none; }
.page-hero .tag { justify-content: center; color: var(--orange); position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.08; color: #fff; max-width: 700px; margin: 0 auto 18px; position: relative; z-index: 1; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,.6); font-size: 18px; max-width: 520px; margin: 0 auto 32px; position: relative; z-index: 1; line-height: 1.8; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.35); position: relative; z-index: 1; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ---- CONTACT FORM ---- */
.contact-form { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 48px 40px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--ink2); letter-spacing: .3px; }
.form-group input, .form-group textarea, .form-group select { background: var(--off); border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 18px; color: var(--ink); font-family: var(--hf); font-size: 15px; outline: none; transition: border-color .25s, box-shadow .25s; -webkit-appearance: none; width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--soft); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,.1); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit { background: var(--orange); color: #fff; border: none; padding: 16px 40px; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: var(--hf); transition: all .25s; box-shadow: 0 4px 16px rgba(249,115,22,.25); width: 100%; margin-top: 8px; }
.btn-submit:hover { background: var(--orange2); transform: translateY(-1px); }

/* ---- PRICING CARDS ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.pricing-card { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 40px 32px; position: relative; transition: all .3s; }
.pricing-card.popular { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,.08); transform: scale(1.02); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 18px; border-radius: 999px; letter-spacing: 1px; white-space: nowrap; }
.pricing-tier { font-size: 12px; font-weight: 800; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.pricing-name { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.pricing-desc { font-size: 14px; color: var(--soft); margin-bottom: 24px; }
.pricing-price { font-size: 48px; font-weight: 900; color: var(--ink); line-height: 1; letter-spacing: -2px; margin-bottom: 4px; }
.pricing-price span { font-size: 18px; font-weight: 600; color: var(--mid); }
.pricing-per { font-size: 13px; color: var(--soft); margin-bottom: 28px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink2); margin-bottom: 12px; }
.pricing-features li::before { content: '✓'; width: 20px; height: 20px; background: var(--orangelight); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* ---- BLOG ---- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.blog-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--orangemid); }
.blog-img { width: 100%; height: 200px; object-fit: cover; background: var(--orangelight); display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-body { padding: 28px 24px; }
.blog-cat { font-size: 11px; font-weight: 800; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--soft); }
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- ABOUT PAGE ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.team-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 28px 20px; text-align: center; transition: all .3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orangemid); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--orangelight); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 900; color: var(--orange); margin: 0 auto 16px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--soft); }

/* ---- SCROLL ANIMATIONS ---- */
@keyframes fadeSlideDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:none} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:none} }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-card { opacity: 0; transform: translateY(30px); }
.reveal-card.visible { opacity: 1; transform: none; }

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 48px auto 0; }
.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--orangemid); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--ink); gap: 16px; }
.faq-q:hover { background: var(--off); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--off); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; color: var(--orange); font-weight: 700; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orangelight); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; color: var(--mid); font-size: 15px; line-height: 1.8; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 56px 24px 48px; gap: 40px; }
  .hero h1 { font-size: 42px; }
  .stats-strip { padding: 28px 24px; }
  .si { padding: 12px 24px; }
  .savings-band { padding: 52px 24px; gap: 40px; text-align: center; }
  .section { padding: 60px 24px; }
  .cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .blog-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 36px; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
}
