/* ============================================================
   RiseArka — Pure CSS Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #EDEFE1;
  --surface:   #ffffff;
  --surface2:  #f3f5e8;
  --orange:    #FC7F0B;
  --amber:     #74991F;
  --text:      #275127;
  --muted:     #5a7a3a;
  --border:    rgba(39,81,39,0.15);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* Base (Nature Green) explicit overrides */
body { background: var(--bg); }
p { color: var(--muted); }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── Layout Helpers ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 4.8vw, 4.2rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--muted); line-height: 1.75; }

.text-orange { color: var(--orange); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.font-head   { font-family: var(--font-head); }

/* ── Section Label ──────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  border: 1px solid rgba(255,107,0,0.25); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 20px; background: rgba(255,107,0,0.06);
}
.section-label { position: relative; }
.section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 1.5s infinite; flex-shrink:0; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.section-title { margin-bottom: 16px; }
.section-title span { color: var(--orange); }
.section-subtitle { font-size: 1.1rem; color: var(--muted); max-width: 600px; line-height: 1.75; }
.section-head-center { text-align: center; display: flex; flex-direction: column; align-items: center; margin-bottom: 60px; }
.section-head { margin-bottom: 60px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
  border-radius: 10px; font-family: var(--font-head); font-weight: 700;
  font-size: 0.9rem; transition: all var(--transition); white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 0 24px rgba(255,107,0,0.35);
}
.btn-primary:hover { background: #e55d00; box-shadow: 0 0 36px rgba(255,107,0,0.55); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid rgba(255,107,0,0.5); color: var(--orange); }
.btn-outline:hover { border-color: var(--orange); background: rgba(255,107,0,0.08); }
.btn-ghost { color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition);
}
.card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }

.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,107,0,0.12); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--orange);
}
.card-icon svg { width: 24px; height: 24px; }

/* ── Grid helpers ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Flex helpers ───────────────────────────────────────────── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-5 { gap: 20px; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,12,20,0.92); backdrop-filter: blur(20px);
  border-bottom-color: var(--border); padding: 12px 0;
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--text); }
.logo-icon { width: 36px; height: 36px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 900; color: #fff; font-family: var(--font-head); }
.logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.logo-sub { font-size: 0.65rem; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  position: relative; padding: 8px 14px; font-size: 0.875rem; font-weight: 500;
  color: var(--muted); border-radius: 8px; transition: all var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px; min-width: 220px; opacity: 0; visibility: hidden;
  transform: translateX(-50%) translateY(-8px); transition: all var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item { display: block; padding: 10px 14px; font-size: 0.875rem; color: var(--muted); border-radius: 8px; transition: all var(--transition); }
.dropdown-item:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile Nav */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw);
  height: 100dvh; background: var(--surface); z-index: 999;
  padding: 80px 28px 40px; transition: right 0.35s ease;
  display: flex; flex-direction: column; gap: 8px; border-left: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-overlay { position: fixed; inset: 0; z-index: 998; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-link { padding: 14px 16px; color: var(--muted); font-size: 1rem; font-weight: 500; border-radius: 10px; transition: all var(--transition); border: 1px solid transparent; }
.mobile-link:hover, .mobile-link.active { color: var(--text); background: rgba(255,255,255,0.05); border-color: var(--border); }
.mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: 
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(255,107,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(255,184,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 60%, rgba(255,107,0,0.06) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: gradient-drift 12s ease infinite;
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: hero-grid-fade 2s ease-out both;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; padding: 80px 0 60px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  background: rgba(255,107,0,0.08); border: 1px solid rgba(255,107,0,0.2);
  border-radius: 999px; padding: 8px 18px; font-size: 0.8rem;
  font-weight: 600; color: var(--orange); letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 1.5s infinite; }
/* ── Hero headline ───────────────────────────────────────────── */
.hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin-bottom: 24px;
}
.hero h1 .highlight {
  font-weight: 800;
  font-style: normal;
  letter-spacing: inherit;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; line-height: 1.8; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 70px; padding-top: 40px; border-top: 1px solid var(--border); }
.hero-stat-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--text); }
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 0.82rem; color: var(--muted); }

/* ── Trust Strip ────────────────────────────────────────────── */
.trust-strip { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.trust-track { display: flex; gap: 12px; width: max-content; animation: marquee 25s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
.trust-chip { display: flex; align-items: center; gap: 8px; padding: 8px 18px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.8rem; font-weight: 600; color: var(--muted); white-space: nowrap; background: rgba(255,255,255,0.02); }
.trust-chip svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Services Section ───────────────────────────────────────── */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 24px; border-radius: 999px; font-size: 0.875rem; font-weight: 600;
  color: var(--muted); border: 1px solid var(--border); transition: all var(--transition);
  font-family: var(--font-head);
}
.tab-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.tab-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 0 20px rgba(255,107,0,0.35); }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition);
}
.service-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.service-card h3 { font-size: 1.1rem; color: var(--text); margin: 16px 0 10px; }
.service-card p { font-size: 0.875rem; line-height: 1.7; }
.service-tag { display: inline-block; margin-top: 14px; padding: 4px 12px; background: rgba(255,107,0,0.1); border-radius: 999px; font-size: 0.72rem; font-weight: 600; color: var(--orange); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-section { background: var(--surface); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-box { background: var(--surface); padding: 40px 32px; text-align: center; position: relative; }
.stat-box::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255,107,0,0.06) 0%, transparent 70%); pointer-events: none; }
.stat-box:hover .stat-num { color: var(--orange); }
.stat-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: var(--text); transition: color var(--transition); }
.stat-num sup { font-size: 1.5rem; }
.stat-label { font-size: 0.875rem; color: var(--muted); margin-top: 6px; }

/* ── Why RiseArka ───────────────────────────────────────────── */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition); }
.bento-card:hover { border-color: rgba(255,107,0,0.3); }
.bento-card h3 { font-size: 1.1rem; color: var(--text); margin: 16px 0 10px; }
.bento-card p { font-size: 0.875rem; }

/* ── Process ────────────────────────────────────────────────── */
.process-timeline { position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 30px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); z-index: 0; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 1; }
.process-step { text-align: center; }
.process-dot { width: 60px; height: 60px; border-radius: 50%; background: var(--surface); border: 2px solid rgba(255,107,0,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--orange); transition: all var(--transition); }
.process-step:hover .process-dot { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 0 24px rgba(255,107,0,0.4); }
.process-step h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; }

/* ── Industries ─────────────────────────────────────────────── */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; background: var(--surface); cursor: pointer; transition: all var(--transition); display: flex; flex-direction: column; gap: 12px; }
.industry-card:hover { border-color: rgba(255,107,0,0.4); transform: translateY(-4px); background: var(--surface2); }
.industry-card h3 { font-size: 1.05rem; color: var(--text); }
.industry-card p { font-size: 0.85rem; line-height: 1.65; }
.industry-icon { font-size: 2rem; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section { background: var(--surface); }
.testimonial-carousel { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 0 4px; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 20px; left: 32px; font-size: 5rem; line-height: 1; color: var(--orange); opacity: 0.2; font-family: Georgia, serif; }
.testimonial-stars { display: flex; gap: 4px; color: var(--amber); margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-text { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--amber)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--muted); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px; }
.carousel-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all var(--transition); }
.carousel-btn:hover { border-color: var(--orange); color: var(--orange); }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all var(--transition); cursor: pointer; border: none; }
.carousel-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: 80px 60px; text-align: center;
  background: linear-gradient(135deg, #1a0d00 0%, #2a1500 50%, #1a0d00 100%);
  border: 1px solid rgba(255,107,0,0.2);
}
.cta-banner::before { content: ''; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; border-radius: 50%; background: radial-gradient(ellipse, rgba(255,107,0,0.2) 0%, transparent 70%); pointer-events: none; }
.cta-banner h2 { color: var(--text); margin-bottom: 16px; }
.cta-banner p { color: rgba(240,238,233,0.7); max-width: 480px; margin: 0 auto 36px; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Insights ───────────────────────────────────────────────── */
.insight-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.insight-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-4px); }
.insight-img { height: 180px; background: linear-gradient(135deg, var(--surface2) 0%, rgba(255,107,0,0.15) 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.insight-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(8,12,20,0.4)); }
.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-cat { font-size: 0.72rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.insight-body h3 { font-size: 1rem; color: var(--text); line-height: 1.45; margin-bottom: 10px; }
.insight-body p { font-size: 0.85rem; flex: 1; }
.insight-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; font-size: 0.78rem; color: var(--muted); }
.insight-read { color: var(--orange); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.insight-read:hover { color: #e55d00; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { margin-top: 16px; font-size: 0.875rem; max-width: 300px; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all var(--transition); }
.social-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,0.08); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h5 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-newsletter { margin-top: 16px; }
.footer-newsletter p { font-size: 0.825rem; margin-bottom: 14px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 0.825rem; font-family: inherit; transition: border-color var(--transition); }
.newsletter-input:focus { outline: none; border-color: var(--orange); }
.newsletter-input::placeholder { color: var(--muted); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--text); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  min-height: 380px; display: flex; align-items: flex-end; padding-bottom: 60px;
  padding-top: 130px; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 70% 60% at 30% 80%, rgba(255,107,0,0.1) 0%, transparent 60%);
}
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, transparent 50%, rgba(255,107,0,0.04)); pointer-events: none; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; line-height: 1.75; }
.page-hero-grid { height: 100%; position: absolute; inset: 0; opacity: 0.025; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 50px 50px; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--border); }

/* ── About Page ─────────────────────────────────────────────── */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
.about-visual-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(255,107,0,0.15) 0%, transparent 65%); }
.about-logo-large { font-family: var(--font-head); font-size: 5rem; font-weight: 900; background: linear-gradient(135deg, var(--orange), var(--amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; z-index: 1; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all var(--transition); }
.value-card:hover { border-color: rgba(255,107,0,0.3); }
.value-icon { font-size: 2.5rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; border-left: 3px solid var(--orange); }
.vm-card h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 12px; }
.vm-card p { font-size: 0.9rem; line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--amber)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; color: #fff; margin: 0 auto 16px; }
.team-name { font-family: var(--font-head); font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--orange); font-weight: 500; margin-bottom: 8px; }

/* ── Solutions Page ─────────────────────────────────────────── */
.solution-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; border-bottom: 1px solid var(--border); }
.solution-row:last-child { border-bottom: none; }
.solution-row.reverse { direction: rtl; }
.solution-row.reverse > * { direction: ltr; }
.solution-content h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 16px; }
.solution-content p { line-height: 1.8; margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--muted); line-height: 1.5; }
.feature-item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.solution-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; position: relative; overflow: hidden; }
.solution-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(255,107,0,0.1) 0%, transparent 60%); }
.solution-emoji { font-size: 4rem; position: relative; z-index: 1; }
.solution-visual h4 { font-family: var(--font-head); color: var(--text); font-size: 1.2rem; position: relative; z-index: 1; }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: all var(--transition); }
.contact-info-card:hover { border-color: rgba(255,107,0,0.3); }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,107,0,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--orange); }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.contact-info-sub { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.form-label span { color: var(--orange); }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px; color: var(--text); font-size: 0.875rem;
  font-family: inherit; transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--orange); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A9BB5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-select option { background: var(--surface); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { font-size: 0.75rem; color: #f87171; margin-top: 4px; display: none; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 { color: var(--text); margin-bottom: 10px; }
.form-success p { font-size: 0.9rem; }

/* ── Careers Page ───────────────────────────────────────────── */
.job-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition); display: flex; flex-direction: column; gap: 16px; }
.job-card:hover { border-color: rgba(255,107,0,0.3); }
.job-top { display: flex; justify-content: space-between; align-items: flex-start; }
.job-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.badge-full { background: rgba(34,197,94,0.12); color: #4ade80; }
.badge-part { background: rgba(59,130,246,0.12); color: #60a5fa; }
.badge-remote { background: rgba(168,85,247,0.12); color: #c084fc; }
.badge-urgent { background: rgba(255,107,0,0.12); color: var(--orange); }
.job-title { font-family: var(--font-head); font-size: 1.1rem; color: var(--text); font-weight: 700; }
.job-dept { font-size: 0.82rem; color: var(--orange); font-weight: 600; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.job-tag { padding: 4px 12px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.75rem; color: var(--muted); }
.job-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 16px; }
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.perk-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.perk-icon { font-size: 2rem; margin-bottom: 12px; }
.perk-card h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 6px; }
.perk-card p { font-size: 0.82rem; }

/* ── Insights Page ──────────────────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn { padding: 8px 20px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; color: var(--muted); border: 1px solid var(--border); transition: all var(--transition); }
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.filter-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.insight-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; margin-bottom: 40px; }
.insight-featured-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.insight-featured-card:hover { border-color: rgba(255,107,0,0.3); }
.insight-featured-img { height: 260px; font-size: 5rem; display: flex; align-items: center; justify-content: center; background: var(--surface2); position: relative; }
.insight-featured-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(8,12,20,0.6)); }

/* ── Animations ─────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }

/* ── Hero background animations ─────────────────────────────── */
@keyframes orb-float-1 {
  0%,100% { transform: translate(0,0) scale(1); opacity:0.55; }
  33%      { transform: translate(40px,-60px) scale(1.12); opacity:0.7; }
  66%      { transform: translate(-30px,30px) scale(0.9); opacity:0.45; }
}
@keyframes orb-float-2 {
  0%,100% { transform: translate(0,0) scale(1); opacity:0.4; }
  50%      { transform: translate(-60px,-40px) scale(1.15); opacity:0.6; }
}
@keyframes orb-float-3 {
  0%,100% { transform: translate(0,0) scale(1); opacity:0.3; }
  40%      { transform: translate(50px,50px) scale(1.2); opacity:0.5; }
  80%      { transform: translate(-20px,-30px) scale(0.85); opacity:0.25; }
}
@keyframes gradient-drift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes sun-pulse {
  0%,100% { transform: translateX(-50%) scale(1); opacity:0.18; }
  50%      { transform: translateX(-50%) scale(1.2); opacity:0.28; }
}
@keyframes hero-grid-fade {
  0%   { opacity:0; }
  100% { opacity:0.045; }
}
@keyframes float-up {
  0%   { transform: translateY(0) rotate(0deg); opacity:0; }
  10%  { opacity:1; }
  90%  { opacity:0.6; }
  100% { transform: translateY(-120vh) rotate(720deg); opacity:0; }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px rgba(255,107,0,0.35), 0 0 40px rgba(255,107,0,0.1); }
  50%      { box-shadow: 0 0 35px rgba(255,107,0,0.6), 0 0 70px rgba(255,107,0,0.2); }
}
@keyframes border-glow {
  0%,100% { border-color: rgba(255,107,0,0.2); }
  50%      { border-color: rgba(255,107,0,0.5); }
}
@keyframes text-shimmer {
  0%   { background-position: -400px center; }
  100% { background-position: 400px center; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes bounce-dot {
  0%,80%,100% { transform: scale(0.8); opacity:0.5; }
  40%          { transform: scale(1.2); opacity:1; }
}
@keyframes count-up-flash {
  0%  { color: var(--orange); }
  100%{ color: var(--text); }
}
@keyframes slide-in-right {
  from { opacity:0; transform: translateX(40px); }
  to   { opacity:1; transform: none; }
}
@keyframes fade-in-scale {
  from { opacity:0; transform: scale(0.92); }
  to   { opacity:1; transform: scale(1); }
}
@keyframes ping {
  0%   { transform: scale(1); opacity:0.8; }
  80%  { transform: scale(2.2); opacity:0; }
  100% { transform: scale(2.2); opacity:0; }
}
@keyframes hero-word-in {
  from { opacity:0; transform: translateY(20px) skewY(2deg); }
  to   { opacity:1; transform: none; }
}

/* ── Hero orbs ───────────────────────────────────────────────── */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; will-change: transform;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.22) 0%, transparent 70%);
  bottom: -100px; left: 50%; transform: translateX(-50%);
  animation: orb-float-1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,184,0,0.14) 0%, transparent 70%);
  top: 10%; right: 5%;
  animation: orb-float-2 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
  top: 30%; left: 5%;
  animation: orb-float-3 18s ease-in-out infinite;
}
.hero-sun {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,107,0,0.25) 0%, rgba(255,184,0,0.08) 40%, transparent 70%);
  animation: sun-pulse 4s ease-in-out infinite;
}
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,107,0,0.08);
  pointer-events: none;
}
.hero-ring-1 { width: 400px; height: 400px; bottom: -200px; left: 50%; transform: translateX(-50%); animation: border-glow 4s infinite; }
.hero-ring-2 { width: 650px; height: 650px; bottom: -320px; left: 50%; transform: translateX(-50%); border-color: rgba(255,107,0,0.04); animation: border-glow 4s 1s infinite; }
.hero-ring-3 { width: 900px; height: 900px; bottom: -450px; left: 50%; transform: translateX(-50%); border-color: rgba(255,107,0,0.025); animation: border-glow 4s 2s infinite; }

/* Floating particles */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.particle {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,107,0,0.6); animation: float-up linear infinite;
}
.particle:nth-child(1)  { left:10%; animation-duration:12s; animation-delay:0s;   width:2px;height:2px; }
.particle:nth-child(2)  { left:20%; animation-duration:15s; animation-delay:2s;   background:rgba(255,184,0,0.5); }
.particle:nth-child(3)  { left:35%; animation-duration:11s; animation-delay:4s;   width:4px;height:4px; }
.particle:nth-child(4)  { left:50%; animation-duration:14s; animation-delay:1s;   width:2px;height:2px; }
.particle:nth-child(5)  { left:65%; animation-duration:13s; animation-delay:3s;   background:rgba(255,184,0,0.4); }
.particle:nth-child(6)  { left:80%; animation-duration:16s; animation-delay:5s;   width:2px;height:2px; }
.particle:nth-child(7)  { left:90%; animation-duration:10s; animation-delay:0.5s; width:4px;height:4px; }
.particle:nth-child(8)  { left:5%;  animation-duration:17s; animation-delay:6s;   background:rgba(255,184,0,0.3); }
.particle:nth-child(9)  { left:45%; animation-duration:12s; animation-delay:7s;   width:2px;height:2px; }
.particle:nth-child(10) { left:75%; animation-duration:14s; animation-delay:2.5s; }

/* ── Button glow ────────────────────────────────────────────── */
.btn-primary { animation: glow-pulse 3s ease-in-out infinite; }
.btn-primary:hover { animation: none; }

/* ── Stat number glow ───────────────────────────────────────── */
.stat-box:hover .stat-num { text-shadow: 0 0 20px rgba(255,107,0,0.5); }

/* ── Card shimmer on hover ──────────────────────────────────── */
.card:hover::after,
.service-card:hover::after,
.bento-card:hover::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,107,0,0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out;
}
.card        { position: relative; overflow: hidden; }
.service-card{ position: relative; overflow: hidden; }
.bento-card  { position: relative; overflow: hidden; }

/* ── Process dot ring ping ──────────────────────────────────── */
.process-dot { position: relative; }
.process-step:hover .process-dot::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(255,107,0,0.5);
  animation: ping 1s ease-out;
}

/* ── Floating badge on hero ─────────────────────────────────── */
.hero-badge { animation: fade-in-scale 0.6s 0.1s cubic-bezier(0.22,1,0.36,1) both; }

/* ── Section underline accent ───────────────────────────────── */
.section-title::after {
  display: block; content: ''; width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px; margin-top: 14px;
}
.section-head-center .section-title::after { margin-left: auto; margin-right: auto; }

/* ── Hero heading word-by-word animation (JS-driven, CSS just sets base) ── */
.hero h1 .word {
  display: inline-block;
  /* opacity/transform/transition set by JS */
}

/* ── Animated gradient underline on nav links ───────────────── */
.nav-link::after {
  content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 1px; transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }

/* ── Stats section shimmer bar ──────────────────────────────── */
.stats-section::before {
  content: ''; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--amber), transparent);
  background-size: 200% 100%;
  animation: gradient-drift 3s linear infinite;
}

/* ── Orange glow line separator ────────────────────────────── */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 50%, transparent 100%);
  opacity: 0.4;
  margin: 0;
}

/* ── CTA banner rotating border ─────────────────────────────── */
.cta-banner { position: relative; }
.cta-banner::after {
  content: ''; position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(var(--angle, 0deg), #FF6B00, #FFB800, transparent, transparent);
  z-index: -1; opacity: 0.4;
  animation: none;
}

/* ── Industry card icon bounce ──────────────────────────────── */
.industry-card:hover .industry-icon {
  display: inline-block;
  animation: fade-in-scale 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Insight card image gradient animation ───────────────────── */
.insight-img {
  background: linear-gradient(135deg, var(--surface2), rgba(255,107,0,0.15), var(--surface2));
  background-size: 200% 200%;
  animation: gradient-drift 6s ease infinite;
}

/* ── Testimonial card quote fade ────────────────────────────── */
.testimonial-card::before {
  animation: text-shimmer 4s linear infinite;
  background: linear-gradient(90deg, rgba(255,107,0,0.1), rgba(255,107,0,0.3), rgba(255,107,0,0.1));
  -webkit-background-clip: text; background-clip: text;
}

/* ── Ping dot on section labels ─────────────────────────────── */
/* ping effect via JS on hover — no conflicting pseudo-element */

/* ── About visual floating effect ───────────────────────────── */
.about-visual { animation: orb-float-2 8s ease-in-out infinite; }
.about-logo-large {
  animation: text-shimmer 3s linear infinite;
  background: linear-gradient(90deg, var(--orange) 0%, var(--amber) 40%, #fff 50%, var(--amber) 60%, var(--orange) 100%);
  background-size: 400px auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Footer newsletter input focus glow ─────────────────────── */
.newsletter-input:focus { box-shadow: 0 0 0 3px rgba(255,107,0,0.15); }
.form-input:focus, .form-select:focus, .form-textarea:focus { box-shadow: 0 0 0 3px rgba(255,107,0,0.12); }

/* ── Logo image theme adjustments ────────────────────────────── */
.logo-img {
  animation: none; /* no pulse on img */
  filter: drop-shadow(0 0 8px rgba(255,107,0,0.3));
  transition: filter var(--transition);
}
.logo:hover .logo-img { filter: drop-shadow(0 0 12px rgba(255,107,0,0.5)); }
[data-theme="nature"] .logo-img { filter: drop-shadow(0 2px 6px rgba(39,81,39,0.2)); }
[data-theme="ocean"] .logo-img { filter: drop-shadow(0 0 8px rgba(0,200,224,0.35)); }
[data-theme="crimson"] .logo-img { filter: drop-shadow(0 0 8px rgba(232,54,93,0.35)); }

/* ── Logo icon pulse ─────────────────────────────────────────── */
.logo-icon {
  animation: glow-pulse 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255,107,0,0.4);
}

/* ── Mobile menu link hover line ────────────────────────────── */
.mobile-link { position: relative; overflow: hidden; }
.mobile-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--orange);
  transition: width 0.3s ease;
}
.mobile-link:hover::after { width: 100%; }

/* ── Hero content entrance stagger ─────────────────────────── */
.hero-content > *:nth-child(1) { animation-delay: 0s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.45s; }

/* ── Stat box accent line ───────────────────────────────────── */
.stat-box { border-bottom: 2px solid transparent; transition: background var(--transition), border-color var(--transition); }
.stat-box:hover { border-bottom-color: var(--orange); }

/* ── Trust chip hover lift ──────────────────────────────────── */
.trust-chip { transition: all 0.25s ease; }
.trust-chip:hover { border-color: rgba(255,107,0,0.35); color: var(--text); transform: translateY(-2px); }

/* ── Insight image emoji pop ────────────────────────────────── */
.insight-card:hover .insight-img { transform: scale(0.97); }
.insight-img { transition: transform 0.35s ease; }

/* ── Service card left accent bar ───────────────────────────── */
.service-card::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 2px; background: var(--orange);
  border-radius: 2px; opacity: 0; transition: opacity 0.3s ease;
}
.service-card:hover::before { opacity: 1; }

/* ── Hero stat separator lines ──────────────────────────────── */
.hero-stats > div { position: relative; padding-right: 40px; }
.hero-stats > div:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: var(--border);
}

/* ── Page hero glow ─────────────────────────────────────────── */
.page-hero::before {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.5;
}

/* ── Scroll progress bar ─────────────────────────────────────── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(255,107,0,0.6);
}

/* ── Divider ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Tag chips ──────────────────────────────────────────────── */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.chip-orange { border-color: rgba(255,107,0,0.3); color: var(--orange); background: rgba(255,107,0,0.06); }

/* ── Toast ──────────────────────────────────────────────────── */
.toast { position: fixed; bottom: 28px; right: 28px; z-index: 9999; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; display: flex; align-items: center; gap: 12px; min-width: 280px; max-width: 380px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); transform: translateY(80px); opacity: 0; transition: all 0.35s ease; }
.toast.show { transform: none; opacity: 1; }
.toast-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.toast-icon.ok { background: rgba(34,197,94,0.15); color: #22c55e; }
.toast-icon.err { background: rgba(239,68,68,0.15); color: #ef4444; }
.toast-icon svg { width: 18px; height: 18px; }
.toast-msg { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.toast-sub { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .process-timeline::before { display: none; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .solution-row { grid-template-columns: 1fr; gap: 40px; }
  .solution-row.reverse { direction: ltr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .insight-featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .values-grid, .industry-grid, .perks-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
}

/* ══════════════════════════════════════════════════════════════
   THEMES
   Applied via [data-theme] on <html>. Default = dark-midnight.
   ══════════════════════════════════════════════════════════════ */

/* ── Theme 2: Nature Green — now just an alias (base :root IS nature) ── */
/* Kept as [data-theme="nature"] so switching back from other themes works */
[data-theme="nature"] {
  --bg:        #EDEFE1;
  --surface:   #ffffff;
  --surface2:  #f3f5e8;
  --orange:    #FC7F0B;
  --amber:     #74991F;
  --text:      #275127;
  --muted:     #5a7a3a;
  --border:    rgba(39,81,39,0.15);
}

/* ── Theme 1: Dark Midnight ────────────────────────────────── */
[data-theme="midnight"] {
  --bg:        #080C14;
  --surface:   #0D1525;
  --surface2:  #111C2E;
  --orange:    #FF6B00;
  --amber:     #FFB800;
  --text:      #F0EEE9;
  --muted:     #8A9BB5;
  --border:    rgba(255,255,255,0.08);
}
[data-theme="midnight"] body { background: #080C14; color: #F0EEE9; }
[data-theme="midnight"] p { color: #8A9BB5; }
[data-theme="midnight"] .navbar.scrolled { background: rgba(8,12,20,0.92); }
[data-theme="midnight"] .card,
[data-theme="midnight"] .service-card,
[data-theme="midnight"] .bento-card,
[data-theme="midnight"] .industry-card,
[data-theme="midnight"] .insight-card,
[data-theme="midnight"] .job-card,
[data-theme="midnight"] .perk-card,
[data-theme="midnight"] .value-card { background: #0D1525; border-color: rgba(255,255,255,0.08); }
[data-theme="midnight"] .stats-section { background: #0D1525; }
[data-theme="midnight"] .stat-box { background: #0D1525; }
[data-theme="midnight"] .stat-num { color: #F0EEE9; }
[data-theme="midnight"] .trust-strip { background: #0D1525; }
[data-theme="midnight"] .footer { background: #0D1525; }
[data-theme="midnight"] .testimonials-section { background: #0D1525; }
[data-theme="midnight"] .testimonial-card { background: #080C14; }
[data-theme="midnight"] .about-visual { background: #111C2E; }
[data-theme="midnight"] .contact-form-wrap,
[data-theme="midnight"] .contact-info-card { background: #0D1525; }
[data-theme="midnight"] .form-input,
[data-theme="midnight"] .form-select,
[data-theme="midnight"] .form-textarea,
[data-theme="midnight"] .newsletter-input { background: #080C14; color: #F0EEE9; border-color: rgba(255,255,255,0.08); }
[data-theme="midnight"] .dropdown-menu { background: #0D1525; }
[data-theme="midnight"] .mobile-menu { background: #0D1525; }
[data-theme="midnight"] .hero-grid { background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); }
[data-theme="midnight"] section[style*="background:var(--surface)"] { background: #0D1525 !important; }
[data-theme="midnight"] .logo-img { filter: drop-shadow(0 0 8px rgba(255,107,0,0.3)); }
[data-theme="midnight"] .logo-img:hover { filter: drop-shadow(0 0 12px rgba(255,107,0,0.5)); }

/* ── Theme 3: Ocean Night ───────────────────────────────────── */
[data-theme="ocean"] {
  --bg:        #060D18;
  --surface:   #0A1628;
  --surface2:  #0E1E35;
  --orange:    #00C8E0;
  --amber:     #00E5B4;
  --text:      #E0F4FF;
  --muted:     #6A99B8;
  --border:    rgba(0,200,224,0.12);
}
[data-theme="ocean"] body { background: var(--bg); }
[data-theme="ocean"] .hero-bg {
  background:
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(0,200,224,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(0,229,180,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 60%, rgba(0,200,224,0.06) 0%, transparent 50%);
}
[data-theme="ocean"] .hero-orb-1 { background: radial-gradient(circle, rgba(0,200,224,0.22) 0%, transparent 70%); }
[data-theme="ocean"] .hero-orb-2 { background: radial-gradient(circle, rgba(0,229,180,0.14) 0%, transparent 70%); }
[data-theme="ocean"] .hero-orb-3 { background: radial-gradient(circle, rgba(0,200,224,0.10) 0%, transparent 70%); }
[data-theme="ocean"] .navbar.scrolled { background: rgba(6,13,24,0.92); }
[data-theme="ocean"] .hero h1 .highlight {
  background: linear-gradient(90deg, #00C8E0, #00E5B4);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="ocean"] .btn-primary { background: #00C8E0; box-shadow: 0 0 24px rgba(0,200,224,0.35); }
[data-theme="ocean"] .btn-primary:hover { background: #00a8bc; box-shadow: 0 0 36px rgba(0,200,224,0.55); }
[data-theme="ocean"] #scrollProgress { background: linear-gradient(90deg, #00C8E0, #00E5B4); }
[data-theme="ocean"] .section-label { color: #00C8E0; border-color: rgba(0,200,224,0.25); background: rgba(0,200,224,0.06); }
[data-theme="ocean"] .section-label::before { background: #00C8E0; }
[data-theme="ocean"] .section-title span { color: #00C8E0; }
[data-theme="ocean"] .cta-banner { background: linear-gradient(135deg, #002233 0%, #003348 50%, #002233 100%); border-color: rgba(0,200,224,0.2); }
[data-theme="ocean"] .hero-sun { background: radial-gradient(ellipse at 50% 100%, rgba(0,200,224,0.25) 0%, rgba(0,229,180,0.08) 40%, transparent 70%); }
[data-theme="ocean"] .glow-line { background: linear-gradient(90deg, transparent 0%, #00C8E0 50%, transparent 100%); }
[data-theme="ocean"] .stats-section::before { background: linear-gradient(90deg, transparent, #00C8E0, #00E5B4, transparent); }
[data-theme="ocean"] .logo-icon { background: #00C8E0; }
[data-theme="ocean"] .tab-btn.active { background: #00C8E0; border-color: #00C8E0; box-shadow: 0 0 20px rgba(0,200,224,0.35); }
[data-theme="ocean"] .card:hover, [data-theme="ocean"] .industry-card:hover,
[data-theme="ocean"] .service-card:hover, [data-theme="ocean"] .insight-card:hover { border-color: rgba(0,200,224,0.35); }

/* ── Theme 4: Crimson Dusk ──────────────────────────────────── */
[data-theme="crimson"] {
  --bg:        #0F0810;
  --surface:   #1A0E1C;
  --surface2:  #221228;
  --orange:    #E8365D;
  --amber:     #FF8C42;
  --text:      #F5E6F0;
  --muted:     #A07090;
  --border:    rgba(232,54,93,0.12);
}
[data-theme="crimson"] body { background: var(--bg); }
[data-theme="crimson"] .hero-bg {
  background:
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(232,54,93,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(255,140,66,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 60%, rgba(232,54,93,0.06) 0%, transparent 50%);
}
[data-theme="crimson"] .hero-orb-1 { background: radial-gradient(circle, rgba(232,54,93,0.22) 0%, transparent 70%); }
[data-theme="crimson"] .hero-orb-2 { background: radial-gradient(circle, rgba(255,140,66,0.14) 0%, transparent 70%); }
[data-theme="crimson"] .hero-orb-3 { background: radial-gradient(circle, rgba(232,54,93,0.10) 0%, transparent 70%); }
[data-theme="crimson"] .navbar.scrolled { background: rgba(15,8,16,0.92); }
[data-theme="crimson"] .hero h1 .highlight {
  background: linear-gradient(90deg, #E8365D, #FF8C42);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="crimson"] .btn-primary { background: #E8365D; box-shadow: 0 0 24px rgba(232,54,93,0.35); }
[data-theme="crimson"] .btn-primary:hover { background: #c42a4e; box-shadow: 0 0 36px rgba(232,54,93,0.55); }
[data-theme="crimson"] #scrollProgress { background: linear-gradient(90deg, #E8365D, #FF8C42); }
[data-theme="crimson"] .section-label { color: #E8365D; border-color: rgba(232,54,93,0.25); background: rgba(232,54,93,0.06); }
[data-theme="crimson"] .section-label::before { background: #E8365D; }
[data-theme="crimson"] .section-title span { color: #E8365D; }
[data-theme="crimson"] .cta-banner { background: linear-gradient(135deg, #1f0a14 0%, #2e0f1e 50%, #1f0a14 100%); border-color: rgba(232,54,93,0.2); }
[data-theme="crimson"] .hero-sun { background: radial-gradient(ellipse at 50% 100%, rgba(232,54,93,0.25) 0%, rgba(255,140,66,0.08) 40%, transparent 70%); }
[data-theme="crimson"] .glow-line { background: linear-gradient(90deg, transparent 0%, #E8365D 50%, transparent 100%); }
[data-theme="crimson"] .stats-section::before { background: linear-gradient(90deg, transparent, #E8365D, #FF8C42, transparent); }
[data-theme="crimson"] .logo-icon { background: #E8365D; }
[data-theme="crimson"] .tab-btn.active { background: #E8365D; border-color: #E8365D; box-shadow: 0 0 20px rgba(232,54,93,0.35); }
[data-theme="crimson"] .card:hover, [data-theme="crimson"] .industry-card:hover,
[data-theme="crimson"] .service-card:hover, [data-theme="crimson"] .insight-card:hover { border-color: rgba(232,54,93,0.35); }

/* Base (no data-theme = nature) explicit component overrides */
.navbar.scrolled { background: rgba(237,239,225,0.92); }
.card, .service-card, .bento-card, .industry-card,
.insight-card, .job-card, .perk-card, .value-card { background: #ffffff; border-color: rgba(39,81,39,0.15); }
.card:hover, .service-card:hover, .bento-card:hover,
.industry-card:hover, .insight-card:hover { border-color: rgba(252,127,11,0.4); box-shadow: 0 16px 48px rgba(39,81,39,0.12); }
.stats-section { background: #f4e4b3; }
.stat-box { background: #f4e4b3; }
.stat-num { color: var(--text); }
.trust-strip { background: #f3f5e8; }
.footer { background: #275127; }
.footer-col h5, .footer-links a, .footer-brand p { color: rgba(237,239,225,0.7); }
.footer-links a:hover { color: #EDEFE1; }
.footer-bottom { border-top-color: rgba(237,239,225,0.15); color: rgba(237,239,225,0.7); }
.testimonials-section { background: #f3f5e8; }
.testimonial-card { background: #ffffff; }
.about-visual { background: #f3f5e8; }
.contact-form-wrap, .contact-info-card { background: #ffffff; }
.form-input, .form-select, .form-textarea, .newsletter-input { background: #f3f5e8; color: var(--text); border-color: rgba(39,81,39,0.2); }
.dropdown-menu { background: #ffffff; }
.mobile-menu { background: #ffffff; }
.cta-banner { background: linear-gradient(135deg, #275127 0%, #3d7a3d 50%, #275127 100%); }
.hero-bg {
  background:
    radial-gradient(ellipse 100% 70% at 50% 110%, rgba(252,127,11,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(116,153,31,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 60%, rgba(252,127,11,0.06) 0%, transparent 50%);
}
.hero-orb-1 { background: radial-gradient(circle, rgba(252,127,11,0.18) 0%, transparent 70%); }
.hero-orb-2 { background: radial-gradient(circle, rgba(116,153,31,0.14) 0%, transparent 70%); }
.hero-orb-3 { background: radial-gradient(circle, rgba(39,81,39,0.10) 0%, transparent 70%); }
.hero-sun { background: radial-gradient(ellipse at 50% 100%, rgba(252,127,11,0.25) 0%, rgba(116,153,31,0.08) 40%, transparent 70%); }
.hero-grid { background-image: linear-gradient(rgba(39,81,39,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(39,81,39,0.08) 1px, transparent 1px); }
.glow-line { background: linear-gradient(90deg, transparent 0%, #FC7F0B 50%, transparent 100%); }
.stats-section::before { background: linear-gradient(90deg, transparent, #FC7F0B, #74991F, transparent); }
.logo-icon { background: #FC7F0B; }
.tab-btn.active { background: #FC7F0B; border-color: #FC7F0B; box-shadow: 0 0 20px rgba(252,127,11,0.35); }
#scrollProgress { background: linear-gradient(90deg, #FC7F0B, #74991F); }
.btn-primary { background: #FC7F0B; box-shadow: 0 0 24px rgba(252,127,11,0.35); animation: none; }
.btn-primary:hover { background: #e06a00; box-shadow: 0 0 36px rgba(252,127,11,0.55); }
.section-label { color: #FC7F0B; border-color: rgba(252,127,11,0.25); background: rgba(252,127,11,0.06); }
.section-label::before { background: #FC7F0B; }
.section-title span { color: #FC7F0B; }
.hero-badge { color: #FC7F0B; border-color: rgba(252,127,11,0.2); background: rgba(252,127,11,0.08); }
.hero-badge span { background: #FC7F0B; }
.hero h1 .highlight { background: linear-gradient(90deg, #FC7F0B, #74991F); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo-img { filter: drop-shadow(0 2px 6px rgba(39,81,39,0.2)); }

/* ── Theme switcher widget ──────────────────────────────────── */
.theme-switcher {
  position: relative;
}
.theme-toggle-btn {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition); color: var(--muted);
  font-size: 1rem;
}
.theme-toggle-btn:hover { border-color: var(--orange); color: var(--orange); }
.theme-panel {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
  min-width: 190px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: all var(--transition);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4); z-index: 2000;
}
.theme-panel.open { opacity: 1; visibility: visible; transform: none; }
.theme-panel-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 10px; padding: 0 4px;
}
.theme-option {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px; cursor: pointer;
  transition: background var(--transition); border: 1px solid transparent;
  font-size: 0.82rem; font-weight: 500; color: var(--muted); width: 100%;
  text-align: left; background: none;
}
.theme-option:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.theme-option.active { border-color: var(--orange); color: var(--text); background: rgba(255,255,255,0.04); }
.theme-option.active .theme-check { opacity: 1; }
.theme-swatch {
  width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0;
  display: flex; gap: 2px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
}
.theme-swatch-half { flex: 1; }
.theme-check { margin-left: auto; color: var(--orange); opacity: 0; font-size: 0.75rem; }

