@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg:        #FFFFFF;
  --bg2:       #F8FAFC;
  --bg3:       #F1F5F9;
  --orange:    #F97316;
  --orange2:   #EA580C;
  --dark:      #0F172A;
  --mid:       #334155;
  --muted:     #64748B;
  --light:     #94A3B8;
  --border:    #E2E8F0;
  --border2:   #CBD5E1;
  --shadow:    0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
::selection { background: rgba(249,115,22,0.15); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px; display: flex; align-items: center; padding: 0 2rem;
  transition: all .3s; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px); border-bottom: 1px solid transparent;
}
nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); background: rgba(255,255,255,0.98); }
.nav-inner { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; }
.nav-links { display: flex; gap: 2px; list-style: none; }
.nav-links a { padding: 7px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--mid); transition: all .2s; }
.nav-links a:hover { color: var(--dark); background: var(--bg3); }
.nav-links a.active { color: var(--orange); background: rgba(249,115,22,0.08); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 13px; color: var(--muted); font-weight: 500; }
.nav-phone:hover { color: var(--dark); }
.btn-primary { padding: 9px 20px; background: var(--orange); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: all .2s; box-shadow: 0 2px 8px rgba(249,115,22,0.3); display: inline-block; }
.btn-primary:hover { background: var(--orange2); box-shadow: 0 4px 16px rgba(249,115,22,0.4); transform: translateY(-1px); }
.btn-outline { padding: 9px 20px; background: transparent; color: var(--mid); border: 1.5px solid var(--border2); border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; display: inline-block; }
.btn-outline:hover { color: var(--orange); border-color: var(--orange); background: rgba(249,115,22,0.04); }
.hamburger { display: none; background: none; border: none; color: var(--muted); cursor: pointer; padding: 6px; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 99; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); padding: 12px 24px 16px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--mid); transition: all .2s; }
.mobile-menu a:hover { color: var(--dark); background: var(--bg3); }
.mobile-cta-link { display: block; margin-top: 10px; padding: 12px; background: var(--orange); color: #fff !important; border-radius: 8px; text-align: center; font-weight: 600; font-size: 14px; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-alt { background: var(--bg2); }
.dot-grid { background-image: radial-gradient(#E2E8F0 1.5px, transparent 1.5px); background-size: 28px 28px; }
.gradient-text { background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); transition: all .25s; }
.card:hover { border-color: rgba(249,115,22,0.3); box-shadow: var(--shadow-lg); }
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 16px; border-radius: 99px; border: 1px solid rgba(249,115,22,0.3); background: rgba(249,115,22,0.06); color: var(--orange); font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.badge-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.badge-dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.label { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--dark); }
h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; line-height: 1.2; color: var(--dark); }
h3 { font-size: 1.05rem; font-weight: 600; color: var(--dark); }
.sub { color: var(--muted); font-size: 1.05rem; line-height: 1.75; max-width: 560px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 110px 24px 72px; position: relative; overflow: hidden; background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 60%); }
.hero-content { text-align: center; max-width: 800px; position: relative; z-index: 1; }
.hero h1 { margin: 24px 0 20px; }
.hero .sub { font-size: 1.15rem; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-btns a { display: inline-block; }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-top: 72px; background: #fff; box-shadow: var(--shadow); }
.stat { padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-val { font-size: 2rem; font-weight: 800; display: block; margin-bottom: 5px; }
.stat-label { color: var(--light); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card { padding: 28px; transition: all .25s; }
.svc-card:hover { transform: translateY(-4px); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; color: var(--orange); margin-bottom: 18px; }
.svc-icon svg { width: 24px; height: 24px; }
.svc-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; margin-top: 8px; }
.svc-detail { padding: 32px; margin-bottom: 16px; transition: all .25s; }
.svc-detail:hover { border-color: rgba(249,115,22,0.25); box-shadow: var(--shadow-lg); }
.svc-detail-inner { display: flex; gap: 36px; }
.svc-detail-left { flex-shrink: 0; width: 210px; }
.svc-detail-left h2 { font-size: 1.15rem; margin: 14px 0 6px; }
.svc-detail-left .tagline { color: var(--orange); font-size: .82rem; font-weight: 600; }
.svc-detail-right p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; font-size: .95rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; list-style: none; }
.feature-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .85rem; color: var(--mid); }
.feature-dot { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.25); display: flex; align-items: center; justify-content: center; }
.feature-dot span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: block; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card { padding: 22px; }
.why-dot { width: 36px; height: 36px; border-radius: 10px; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-dot span { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; display: block; }
.why-card h4 { font-size: .95rem; font-weight: 600; margin-bottom: 7px; }
.why-card p { color: var(--muted); font-size: .85rem; line-height: 1.65; }
.why-text p { color: var(--muted); line-height: 1.8; margin-bottom: 28px; margin-top: 16px; }
.text-link { color: var(--orange); font-size: .9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: all .2s; }
.text-link:hover { color: var(--orange2); gap: 10px; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, #FFF7ED 0%, #FFFBF7 100%); border-top: 1px solid rgba(249,115,22,0.1); border-bottom: 1px solid rgba(249,115,22,0.1); }
.cta-band-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.cta-band p a { color: var(--orange); font-weight: 600; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-large { padding: 14px 32px; font-size: 1rem; font-weight: 700; border-radius: 10px; display: inline-block; transition: all .2s; }

/* ── PAGE HEADER ── */
.page-header { padding: 128px 24px 64px; text-align: center; background: linear-gradient(180deg, #FFF7ED 0%, #FFFFFF 70%); position: relative; overflow: hidden; }
.page-header h1 { margin: 12px 0 18px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-stats-card { padding: 32px; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat { text-align: center; padding: 18px; background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; }
.about-stat .val { font-size: 1.9rem; font-weight: 800; display: block; margin-bottom: 5px; }
.about-stat .lbl { color: var(--muted); font-size: .78rem; line-height: 1.4; }
.status-bar { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding: 12px 16px; background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 10px; }
.green-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; }
.status-text { color: #16A34A; font-size: .82rem; font-weight: 600; }
.status-phone { color: var(--muted); font-size: .82rem; margin-left: auto; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.value-card { padding: 26px; text-align: center; }
.value-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.value-icon span { width: 12px; height: 12px; background: var(--orange); border-radius: 50%; display: block; }
.value-card h4 { font-size: .95rem; margin-bottom: 9px; }
.value-card p { color: var(--muted); font-size: .84rem; line-height: 1.65; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.process-card { padding: 26px; }
.step-num { font-size: 2.5rem; font-weight: 800; color: rgba(249,115,22,0.2); font-family: monospace; margin-bottom: 10px; display: block; }
.process-card h4 { font-size: .95rem; margin-bottom: 9px; }
.process-card p { color: var(--muted); font-size: .84rem; line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px; }
.contact-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; color: var(--orange); flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; }
.contact-lbl { color: var(--light); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-val { color: var(--dark); font-weight: 600; font-size: .95rem; transition: color .2s; }
a.contact-val:hover { color: var(--orange); }
.contact-desc { color: var(--muted); font-size: .8rem; margin-top: 2px; }
.hours-card { padding: 24px; }
.hours-card h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; font-size: .87rem; padding: 7px 0; border-bottom: 1px solid var(--bg3); }
.hours-row:last-of-type { border-bottom: none; }
.hours-row span:first-child { color: var(--muted); }
.hours-row span:last-child { color: var(--dark); font-weight: 500; }
.form-card { padding: 36px; }
.form-card h3 { margin-bottom: 26px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
label { display: block; color: var(--mid); font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
input, select, textarea { width: 100%; padding: 11px 14px; background: var(--bg); color: var(--dark); border: 1.5px solid var(--border); border-radius: 9px; font-size: .875rem; font-family: inherit; transition: all .2s; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.1); }
select { appearance: none; color: var(--mid); }
textarea { resize: none; }
.form-note { text-align: center; color: var(--light); font-size: .78rem; margin-top: 12px; }
.form-note a { color: var(--orange); }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: all .25s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(249,115,22,0.25) !important; }
.kw-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 99px; background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.2); color: var(--orange); font-size: 11px; font-weight: 600; width: fit-content; }
.kw-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; display: block; }
.blog-card h3 { font-size: 1rem; line-height: 1.5; color: var(--dark); transition: color .2s; }
.blog-card:hover h3 { color: var(--orange); }
.blog-card .excerpt { color: var(--muted); font-size: .875rem; line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-date { color: var(--light); font-size: .78rem; }
.read-link { color: var(--orange); font-size: .78rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--orange); }
.empty-icon svg { width: 28px; height: 28px; }
.loading { text-align: center; padding: 60px; color: var(--muted); }
.spinner { width: 32px; height: 32px; border: 2.5px solid var(--border); border-top-color: var(--orange); border-radius: 50%; animation: spin .8s linear infinite; margin: 0 auto 14px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SINGLE POST ── */
.post-header { padding: 120px 24px 48px; background: linear-gradient(180deg, #FFF7ED 0%, #fff 70%); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--light); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--muted); }
.post-kw { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 99px; background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.2); color: var(--orange); font-size: .78rem; font-weight: 600; margin-bottom: 18px; }
.post-title { max-width: 760px; margin-bottom: 20px; }
.post-meta { display: flex; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.post-meta span { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .82rem; }
.post-meta svg { width: 14px; height: 14px; }
.post-body { max-width: 760px; margin: 0 auto; padding: 44px 24px; }
.prose { color: var(--mid); line-height: 1.85; font-size: 1.05rem; }
.prose h1,.prose h2,.prose h3,.prose h4 { color: var(--dark); font-weight: 700; margin: 2rem 0 .75rem; }
.prose h2 { font-size: 1.4rem; border-bottom: 1px solid var(--border); padding-bottom: .5rem; }
.prose h3 { font-size: 1.15rem; }
.prose p { margin-bottom: 1.25rem; }
.prose ul,.prose ol { margin: 1rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: .4rem; }
.prose strong { color: var(--dark); }
.prose code { background: rgba(249,115,22,0.07); border: 1px solid rgba(249,115,22,0.2); border-radius: 5px; padding: .1em .4em; font-size: .875em; color: var(--orange2); }
.prose pre { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; overflow-x: auto; margin: 1.5rem 0; }
.prose pre code { background: none; border: none; padding: 0; }
.prose blockquote { border-left: 3px solid var(--orange); padding-left: 1rem; color: var(--muted); font-style: italic; margin: 1.5rem 0; }
.tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.tags-label { color: var(--light); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 4px 12px; font-size: .78rem; border-radius: 99px; border: 1px solid var(--border2); color: var(--muted); background: var(--bg2); }
.post-cta { max-width: 760px; margin: 0 auto; padding: 0 24px 60px; }
.post-cta-card { padding: 36px; text-align: center; }
.post-cta-card h3 { margin-bottom: 10px; }
.post-cta-card p { color: var(--muted); font-size: .9rem; margin-bottom: 26px; max-width: 420px; margin-left: auto; margin-right: auto; }
.back-link { text-align: center; padding-bottom: 40px; }
.back-link a { color: var(--muted); font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.back-link a:hover { color: var(--dark); }

/* ── FOOTER ── */
footer { background: var(--dark); color: #94A3B8; }
.footer-cta { padding: 44px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-cta h3 { font-size: 1.1rem; margin-bottom: 5px; color: #fff; }
.footer-cta p { color: #64748B; font-size: .875rem; }
.footer-cta-btns { display: flex; gap: 10px; flex-shrink: 0; }
.footer-cta .btn-outline { color: #94A3B8; border-color: rgba(255,255,255,0.15); }
.footer-cta .btn-outline:hover { color: #fff; border-color: var(--orange); background: rgba(249,115,22,0.1); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 52px 24px; display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: #475569; font-size: .875rem; line-height: 1.7; margin-top: 16px; }
.footer-brand img { filter: brightness(0) invert(1); height: 40px; }
.footer-phone { color: var(--orange); font-size: .875rem; font-weight: 600; margin-top: 14px; display: block; }
.footer-phone:hover { color: var(--orange2); }
.footer-col h5 { color: #94A3B8; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #475569; font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: #94A3B8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-bottom p { color: #334155; font-size: .78rem; }
.fb-link { display: inline-flex; align-items: center; gap: 6px; color: #334155; font-size: .82rem; transition: color .2s; margin-top: 10px; }
.fb-link:hover { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .services-grid, .why-grid, .values-grid, .process-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .svc-detail-inner { flex-direction: column; }
  .svc-detail-left { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid, .why-cards, .values-grid, .process-grid, .blog-grid, .feature-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-btns, .btn-row, .footer-cta-btns { flex-direction: column; align-items: center; }
  h1 { font-size: 2rem; }
}
