@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
  --primary: #F97316;
  --primary-dark: #EA6C0A;
  --primary-tint: #FFF7ED;
  --bg: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --border: #E5E7EB;
  --border-light: #F3F4F6;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --max: 1200px;
  --nav-h: 72px;
  --sp: 96px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
section { padding: var(--sp) 0; }
.bg-light { background: #F9FAFB; }

/* ── NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); z-index: 200;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#main-nav.scrolled { border-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-wordmark { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  display: block; padding: 0.45rem 0.9rem; font-size: 14px; font-weight: 500;
  color: var(--muted); border-radius: var(--radius-pill);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--border-light); }
.nav-cta-wrap { flex-shrink: 0; }
.btn-nav { background: var(--primary); color: #fff; padding: 0.55rem 1.25rem; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; transition: background 0.15s; }
.btn-nav:hover { background: var(--primary-dark); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem; z-index: 199; flex-direction: column; gap: 0.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 0.65rem 0.75rem; font-size: 15px; font-weight: 500; color: var(--muted); border-radius: var(--radius); transition: color 0.15s, background 0.15s; }
.mobile-menu a:hover { color: var(--primary); background: var(--primary-tint); }
.mobile-menu .m-cta { background: var(--primary); color: #fff; text-align: center; padding: 0.85rem; border-radius: var(--radius-pill); font-weight: 600; margin-top: 0.5rem; }
.mobile-menu .m-cta:hover { background: var(--primary-dark); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.75rem 1.5rem; border-radius: var(--radius-pill); font-family: inherit; font-size: 15px; font-weight: 600; transition: all 0.15s; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.3); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { background: var(--primary-tint); transform: translateY(-1px); }

/* ── TYPE ── */
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.85rem; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; color: var(--text); }
h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
p { color: var(--muted); line-height: 1.7; }
.text-orange { color: var(--primary); }
.section-sub { font-size: 1.05rem; max-width: 540px; }

/* ── DIAMOND SVG ── */
.diamond-icon { display: inline-flex; }

/* ── PILL ── */
.pill { display: inline-flex; align-items: center; padding: 0.4rem 0.9rem; background: var(--primary-tint); color: var(--primary); border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; }
.pill-price { background: var(--primary); color: #fff; font-size: 14px; padding: 0.55rem 1.2rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--text); padding: 7rem 0 5rem; margin-top: var(--nav-h); }
.page-hero .eyebrow { color: var(--primary); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); }
.page-hero p { color: rgba(255,255,255,0.5); max-width: 540px; margin-top: 1rem; font-size: 1.05rem; }

/* ── HERO (index) ── */
.hero { min-height: 100vh; padding-top: 148px; padding-bottom: var(--sp); display: flex; align-items: center; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--primary); border-radius: 1px; }

/* Hero H1 word animation */
.hero-h1 { margin-bottom: 1.5rem; }
.hero-h1 .word-line { display: block; }
.word-span { display: inline-block; opacity: 0; transform: translateY(14px); animation: wordIn 0.55s ease forwards; }
@keyframes wordIn { to { opacity: 1; transform: translateY(0); } }

.hero-sub { font-size: 1.1rem; color: var(--muted); line-height: 1.75; margin-bottom: 2.5rem; max-width: 460px; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* Bento grid */
.hero-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.bento-tile { border-radius: var(--radius-lg); padding: 1.75rem; position: relative; overflow: hidden; }
.bento-border { border: 1px solid var(--border); background: #fff; }
.bento-wide { grid-column: span 2; }
.bento-orange { background: var(--primary); color: #fff; }
.bento-tint { background: var(--primary-tint); display: flex; align-items: center; justify-content: center; min-height: 130px; }
.bento-deco { position: absolute; font-size: 7rem; font-weight: 800; color: rgba(249,115,22,0.07); line-height: 1; top: -0.5rem; left: 1rem; pointer-events: none; user-select: none; }
.bento-rel { position: relative; z-index: 1; }
.bento-rel h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.bento-rel p { font-size: 0.875rem; }
.bento-counter-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }
.bento-counter-val { font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.35rem; }
.bento-counter-sub { font-size: 13px; color: rgba(255,255,255,0.6); }
.bento-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; justify-content: center; }
.bento-pills .pill { font-size: 12.5px; }

/* ── HOME SERVICES ── */
.services-bento { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 3rem; }
.svc-featured { grid-column: span 2; grid-row: span 2; background: var(--primary-tint); border-radius: var(--radius-xl); padding: 3rem; display: flex; flex-direction: column; }
.svc-featured h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.svc-featured p { margin-bottom: 2rem; flex: 1; }
.svc-card-sm { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; }
.svc-card-sm h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.svc-card-sm p { font-size: 0.875rem; flex: 1; margin-bottom: 1.25rem; }
.svc-stats-bar { grid-column: span 3; background: var(--primary); border-radius: var(--radius-lg); padding: 2rem 3rem; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.svc-stat { text-align: center; padding: 0.5rem 1rem; position: relative; }
.svc-stat + .svc-stat::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 2rem; background: rgba(255,255,255,0.2); }
.svc-stat-val { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.svc-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.orange-link { color: var(--primary); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s; margin-top: auto; }
.orange-link:hover { gap: 10px; }

/* ── HOME PROCESS ── */
.process-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.pp-step { position: relative; padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pp-deco { position: absolute; font-size: 6rem; font-weight: 800; color: rgba(249,115,22,0.05); line-height: 1; top: 0; right: 0.5rem; user-select: none; }
.pp-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.65rem; }
.pp-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.pp-step p { font-size: 0.875rem; }

/* ── HOME ABOUT SNIPPET ── */
.about-snippet { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.pull-quote { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 1.5rem; }
.pull-quote em { color: var(--primary); font-style: normal; }
.cred-item { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.cred-item:first-child { border-top: 1px solid var(--border); }
.cred-diamond { flex-shrink: 0; margin-top: 3px; }
.cred-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cred-item p { font-size: 13px; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--primary); position: relative; overflow: hidden; text-align: center; padding: 6rem 0; }
.cta-shape { position: absolute; width: 700px; height: 700px; background: rgba(255,255,255,0.1); transform: rotate(45deg); top: -200px; right: -150px; border-radius: 60px; pointer-events: none; }
.cta-shape-2 { top: auto; bottom: -300px; right: auto; left: -200px; }
.cta-banner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.cta-banner .sub { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; font-size: 1.1rem; }
.cta-banner .container { position: relative; z-index: 1; }

/* ── SERVICES PAGE ── */
.svc-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.svc-section.reverse { direction: rtl; }
.svc-section.reverse > * { direction: ltr; }
.feature-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); }
.feature-item svg { flex-shrink: 0; margin-top: 3px; }

/* Wireframe mockup */
.wireframe-browser { border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #F9FAFB; }
.wf-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 0.65rem 1rem; display: flex; align-items: center; gap: 0.75rem; }
.wf-dots { display: flex; gap: 6px; }
.wf-dots span { width: 10px; height: 10px; border-radius: 50%; }
.wf-dots span:nth-child(1) { background: #FF5F57; }
.wf-dots span:nth-child(2) { background: #FFBD2E; }
.wf-dots span:nth-child(3) { background: #28C840; }
.wf-url { flex: 1; height: 22px; background: var(--border-light); border-radius: var(--radius-pill); }
.wf-body { padding: 1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.wf-nav-row { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 0.6rem 0.85rem; display: flex; align-items: center; justify-content: space-between; }
.wf-logo-ph { width: 70px; height: 10px; background: var(--border); border-radius: 3px; }
.wf-links-ph { display: flex; gap: 6px; }
.wf-links-ph span { width: 36px; height: 8px; background: var(--border-light); border-radius: 3px; }
.wf-hero-row { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.25rem 0.85rem; }
.wf-h { height: 12px; background: var(--border); border-radius: 3px; margin-bottom: 8px; }
.wf-h.wf-60 { width: 60%; }
.wf-p { height: 7px; background: var(--border-light); border-radius: 3px; margin-bottom: 5px; }
.wf-p.wf-80 { width: 80%; }
.wf-p.wf-70 { width: 70%; }
.wf-btn { width: 90px; height: 26px; background: var(--primary); border-radius: var(--radius-pill); margin-top: 10px; opacity: 0.8; }
.wf-cards-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.wf-card-ph { background: #fff; border: 1px solid var(--border); border-radius: 6px; height: 55px; }

/* Flow diagram */
.flow-diagram { display: flex; flex-direction: column; gap: 0; }
.flow-step-item { display: flex; align-items: center; gap: 1rem; background: var(--primary-tint); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.flow-icon-box { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.flow-step-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.flow-step-item span { font-size: 12.5px; color: var(--muted); }
.flow-arrow { text-align: center; color: var(--primary); font-size: 1.25rem; padding: 0.5rem 0; margin-left: 1.5rem; }

/* Consultancy grid */
.consult-card { background: var(--primary-tint); border-radius: var(--radius-lg); padding: 2.5rem 3rem; }
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.consult-item { background: #fff; border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 0.85rem; align-items: flex-start; }
.consult-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.consult-item p { font-size: 13px; }
.consult-footer { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ── PROCESS PAGE TIMELINE ── */
.timeline-section { max-width: 960px; margin: 0 auto; position: relative; padding: 2rem 0 4rem; }
.timeline-line { position: absolute; left: 50%; transform: translateX(-50%); top: 0; bottom: 0; width: 2px; background: var(--primary); height: 0; transition: height 1.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.ts { display: grid; grid-template-columns: 1fr 48px 1fr; gap: 2rem; align-items: flex-start; margin-bottom: 4rem; }
.ts-content { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 2.25rem; position: relative; overflow: hidden; }
.ts-spacer { /* empty */ }
.ts-node { display: flex; justify-content: center; padding-top: 1.75rem; }
.ts-diamond { width: 24px; height: 24px; background: var(--primary); transform: rotate(45deg); border-radius: 3px; }
.ts-deco { position: absolute; font-size: 5.5rem; font-weight: 800; color: rgba(249,115,22,0.05); top: -0.5rem; right: 0.75rem; line-height: 1; user-select: none; }
.ts-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--primary); text-transform: uppercase; margin-bottom: 0.6rem; }
.ts-content h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }
.ts-content p { font-size: 0.9rem; }

/* Layout: odd = right content, even = left content */
.ts:nth-child(odd) .ts-content { grid-column: 3; }
.ts:nth-child(odd) .ts-spacer { grid-column: 1; grid-row: 1; }
.ts:nth-child(odd) .ts-node { grid-column: 2; grid-row: 1; }
.ts:nth-child(even) .ts-content { grid-column: 1; grid-row: 1; }
.ts:nth-child(even) .ts-spacer { grid-column: 3; grid-row: 1; }
.ts:nth-child(even) .ts-node { grid-column: 2; grid-row: 1; }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; cursor: pointer; gap: 1rem; }
.faq-q span { font-size: 1rem; font-weight: 600; color: var(--text); }
.faq-icon { width: 30px; height: 30px; background: var(--border-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; color: var(--muted); font-weight: 400; line-height: 1; transition: background 0.15s, color 0.15s; }
.faq-item.open .faq-icon { background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-a p { padding-bottom: 1.25rem; font-size: 0.9375rem; }
.faq-item.open .faq-a { max-height: 300px; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 5rem; align-items: start; }
.about-body p { font-size: 1rem; margin-bottom: 1.25rem; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.info-card-header { background: var(--primary-tint); padding: 1.5rem 1.75rem; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.info-card-name { font-size: 15px; font-weight: 800; color: var(--text); }
.info-card-sub { font-size: 12px; color: var(--muted); font-weight: 500; }
.info-rows { padding: 0 1.75rem; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--border-light); gap: 1rem; }
.info-row:last-child { border-bottom: none; }
.info-row-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.info-row-val { font-size: 13.5px; font-weight: 500; color: var(--text); text-align: right; }
.info-card-footer { padding: 1.25rem 1.75rem; border-top: 1px solid var(--border-light); background: #FAFAFA; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.value-card strong { display: block; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: start; }
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 14px;
  color: var(--text); background: #fff; transition: border-color 0.15s;
  outline: none; -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B0B8C8; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; cursor: pointer; }
.form-note { font-size: 12px; color: var(--muted); }
.form-submit { width: 100%; padding: 0.9rem; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-pill); font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--primary-dark); }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; background: var(--primary-tint); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(249,115,22,0.15); }
.contact-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-text span { font-size: 14px; color: var(--muted); }
.quick-link { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.65rem; transition: background 0.15s, border-color 0.15s; }
.quick-link:hover { background: var(--primary-tint); border-color: rgba(249,115,22,0.3); }
.ql-info strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.ql-info span { font-size: 12.5px; color: var(--muted); }
.ql-arrow { color: var(--primary); font-size: 1.1rem; transition: transform 0.15s; }
.quick-link:hover .ql-arrow { transform: translateX(4px); }
.status-dot { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #15803D; }
.status-dot::before { content: ''; width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse 2s infinite; display: inline-block; flex-shrink: 0; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }

/* ── FOOTER ── */
footer { background: var(--text); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-wm { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.footer-tag { font-size: 13.5px; color: rgba(255,255,255,0.38); line-height: 1.65; margin-bottom: 1.5rem; }
.footer-reg { font-size: 12px; color: rgba(255,255,255,0.22); line-height: 1.7; }
.footer-col-title { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.24); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { gap: 2.5rem; }
  .services-bento { grid-template-columns: 1fr 1fr; }
  .svc-featured { grid-column: span 2; grid-row: auto; }
  .svc-stats-bar { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --sp: 64px; --nav-h: 64px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .container { padding: 0 1.25rem; }
  .hero { padding-top: 112px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bento { display: none; }
  .services-bento { grid-template-columns: 1fr; }
  .svc-featured { grid-column: auto; }
  .svc-stats-bar { grid-column: auto; grid-template-columns: 1fr; gap: 1rem; }
  .svc-stat + .svc-stat::before { display: none; }
  .about-snippet { grid-template-columns: 1fr; gap: 3rem; }
  .process-preview { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .svc-section { grid-template-columns: 1fr; }
  .svc-section.reverse { direction: ltr; }
  .ts { grid-template-columns: 32px 1fr; gap: 1.25rem; }
  .ts:nth-child(odd) .ts-content,
  .ts:nth-child(even) .ts-content { grid-column: 2; grid-row: 1; }
  .ts:nth-child(odd) .ts-node,
  .ts:nth-child(even) .ts-node { grid-column: 1; grid-row: 1; }
  .ts:nth-child(odd) .ts-spacer,
  .ts:nth-child(even) .ts-spacer { display: none; }
  .timeline-line { left: 16px; }
  .consult-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
