/* ============================================================
   Aphiwe Business Systems - Main Stylesheet
   Geomanist font - Orange #f75c1c - Navy rgb(26,64,107)
   ============================================================ */

@import url('https://fonts.cdnfonts.com/css/geomanist');

*, *::before, *::after {
  font-family: 'Geomanist', Arial, sans-serif !important;
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --orange:       #f75c1c;
  --orange-light: #ff7a3d;
  --orange-glow:  rgba(247,92,28,0.12);
  --navy:         rgb(26,64,107);
  --navy-deep:    rgb(15,38,68);
  --navy-mid:     rgb(35,80,130);
  --white:        #ffffff;
  --off-white:    #f5f7fb;
  --text:         #1a1f2e;
  --text-muted:   #6b7a8e;
  --border:       rgba(26,64,107,0.1);
  --radius:       14px;
  --shadow:       0 4px 20px rgba(15,38,68,0.07);
  --shadow-lg:    0 14px 44px rgba(15,38,68,0.13);
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.7; }

/* ── PAGE TRANSITION ── */
.page-content { opacity: 0; animation: pageIn .4s ease forwards; }
@keyframes pageIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }

/* ── UTILITY ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.tag::before { content: ''; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }

h2.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -.5px;
  color: var(--navy-deep); margin-bottom: 12px;
}
p.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 480px; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-left  { opacity:0; transform:translateX(-24px); transition:opacity .65s ease, transform .65s ease; }
.reveal-right { opacity:0; transform:translateX(24px);  transition:opacity .65s ease, transform .65s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white; text-decoration: none;
  padding: 13px 24px; border-radius: 8px;
  font-size: .95rem; font-weight: 700;
  box-shadow: 0 5px 22px rgba(247,92,28,.32);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 9px 30px rgba(247,92,28,.42); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.7);
  text-decoration: none; padding: 12px 22px; border-radius: 8px;
  font-size: .95rem; font-weight: 600;
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: white; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--navy); color: var(--navy);
  text-decoration: none; padding: 11px 22px; border-radius: 8px;
  font-size: .95rem; font-weight: 700;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--navy); color: white; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 3px 28px rgba(15,38,68,.09); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: 8px 13px;
  font-size: .92rem; font-weight: 600; color: var(--text-muted);
  text-decoration: none; border-radius: 7px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--navy-deep); background: var(--off-white); }
.nav-links a.active { color: var(--navy-deep); }

/* ── SERVICES DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex !important; align-items: center; gap: 5px; }
.nav-dropdown-toggle svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform var(--transition); flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px);
  background: white; border: 1px solid var(--border); border-radius: 13px;
  padding: 6px; min-width: 225px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu > a {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 11px; border-radius: 8px;
  font-size: .92rem; color: var(--text); font-weight: 600;
  background: none; position: relative;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown-menu > a:hover { background: var(--off-white); color: var(--orange); }
.nav-dropdown-menu > a svg { width: 15px; height: 15px; stroke: var(--orange); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* Sub-arrow indicator on Cybersecurity */
.nav-sub-arrow {
  margin-left: auto; font-size: 1rem; color: var(--text-muted);
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}
.nav-dropdown-menu > a:hover .nav-sub-arrow { color: var(--orange); transform: translateX(2px); }

/* Sub-menu (SECaaS under Cybersecurity) */
.nav-sub-menu {
  overflow: hidden; max-height: 0;
  transition: max-height .25s ease, opacity .2s ease;
  opacity: 0;
}
.nav-dropdown-menu > a:hover + .nav-sub-menu,
.nav-sub-menu:hover {
  max-height: 80px; opacity: 1;
}
.nav-sub-menu a {
  display: flex !important; align-items: center; gap: 9px;
  padding: 8px 11px 8px 28px !important; border-radius: 7px !important;
  font-size: .88rem !important; color: var(--text-muted) !important; font-weight: 600 !important;
  background: none !important;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-sub-menu a:hover { background: var(--off-white) !important; color: var(--orange) !important; }
.nav-sub-menu a svg { width: 13px; height: 13px; stroke: var(--orange); fill: none; stroke-width: 1.8; flex-shrink: 0; }

.nav-cta {
  background: var(--orange) !important; color: white !important;
  padding: 8px 18px !important; border-radius: 7px; font-weight: 700 !important;
  box-shadow: 0 3px 14px rgba(247,92,28,.28);
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px) !important; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy-deep); border-radius: 2px; transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 190; flex-direction: column; padding: 20px 24px; overflow-y: auto;
  transform: translateX(100%); transition: transform .32s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a {
  font-size: 1rem; font-weight: 600; color: var(--navy-deep);
  text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--orange); }
.mob-sub-link {
  padding-left: 18px !important;
  font-size: .9rem !important;
  color: var(--text-muted) !important;
  position: relative;
}
.mob-sub-link::before {
  content: '';
  position: absolute; left: 6px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange);
}
.mob-cta { margin-top: 18px; background: var(--orange); color: white !important; padding: 14px !important; text-align: center; border-radius: 9px; border: none !important; font-weight: 700; }
.mob-section-label { font-size: .78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-muted); padding: 14px 0 4px; border-bottom: none !important; }

/* ── HERO ── */
.hero {
  min-height: 78vh; background: var(--navy-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 68px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 50px 50px;
}
.hero-orb1 { position: absolute; top: -180px; right: -80px; width: 580px; height: 580px; border-radius: 50%; background: radial-gradient(circle,rgba(247,92,28,.15) 0%,transparent 70%); pointer-events: none; }
.hero-orb2 { position: absolute; bottom: -260px; left: -160px; width: 660px; height: 660px; border-radius: 50%; background: radial-gradient(circle,rgba(26,64,107,.5) 0%,transparent 70%); pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding-top: 50px; padding-bottom: 50px; position: relative; z-index: 2; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(247,92,28,.13); border: 1px solid rgba(247,92,28,.26); border-radius: 100px; padding: 5px 14px 5px 8px; margin-bottom: 22px; animation: up .6s ease both; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
.hero-badge span { font-size: .82rem; font-weight: 700; color: var(--orange); letter-spacing: .6px; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.8rem, 5vw, 4.4rem); font-weight: 900; line-height: 1.08; letter-spacing: -1.5px; color: white; margin-bottom: 18px; animation: up .7s .1s ease both; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-desc { font-size: 1.1rem; line-height: 1.7; color: rgba(255,255,255,.54); max-width: 460px; margin-bottom: 36px; animation: up .7s .2s ease both; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; animation: up .7s .3s ease both; }

/* ── DASHBOARD WIDGET ── */
.hero-visual { animation: fromright .9s .3s ease both; }
.dash { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px; backdrop-filter: blur(12px); }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-head-title { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.8); }
.dash-status { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: #4ade80; font-weight: 600; }
.dash-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.dash-m { background: rgba(255,255,255,.05); border-radius: 9px; padding: 11px 9px; border: 1px solid rgba(255,255,255,.06); }
.dash-m-val { font-size: 1.4rem; font-weight: 900; color: white; }
.dash-m-lbl { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.dash-m-up { font-size: .75rem; color: #4ade80; margin-top: 2px; }
.dash-bar { margin-bottom: 12px; }
.dash-bar-top { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.dash-bar-track { height: 4px; background: rgba(255,255,255,.1); border-radius: 10px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg,var(--orange),var(--orange-light)); animation: grow 1.6s .8s ease both; transform-origin: left; }
.dash-rows { display: flex; flex-direction: column; gap: 6px; }
.dash-row { display: flex; align-items: center; gap: 9px; padding: 8px 10px; background: rgba(255,255,255,.04); border-radius: 7px; border-left: 3px solid; }
.dash-row.ok   { border-color: #4ade80; }
.dash-row.warn { border-color: var(--orange); }
.dash-row-text { font-size: .8rem; color: rgba(255,255,255,.62); }
.dash-row-time { font-size: .75rem; color: rgba(255,255,255,.28); margin-left: auto; white-space: nowrap; }

/* ── VALUE PILLARS ── */
.pillars { padding: 76px 0; background: var(--off-white); }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.pillar-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  padding: 32px 26px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s cubic-bezier(0.4,0,0.2,1);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; flex-shrink: 0; transition: background var(--transition), transform var(--transition); }
.pillar-card:hover .pillar-icon { background: var(--orange); transform: scale(1.07); }
.pillar-icon svg { width: 24px; height: 24px; stroke: white; }
.pillar-body h3 { font-size: 1.1rem; font-weight: 900; color: var(--navy-deep); margin-bottom: 8px; line-height: 1.25; }
.pillar-body p  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 38px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); transition: background var(--transition); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(247,92,28,.07); }
.stat-num { font-size: 2.7rem; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -1px; }
.stat-lbl { font-size: .9rem; color: rgba(255,255,255,.46); margin-top: 5px; font-weight: 500; }

/* ── SERVICE CARDS ── */
.services { padding: 100px 0; background: var(--off-white); }
.services-head { margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.service-card {
  background: var(--navy); border-radius: var(--radius);
  padding: 30px 26px; color: white;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; display: block;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,var(--orange) 0%,#c94310 100%);
  opacity: 0; transition: opacity .32s; z-index: 0;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(247,92,28,.26); }
.service-card:hover::after { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,.1); display: grid; place-items: center; margin-bottom: 18px; transition: background var(--transition); }
.service-card:hover .service-icon { background: rgba(255,255,255,.2); }
.service-icon svg { width: 20px; height: 20px; stroke: rgba(255,255,255,.9); stroke-width: 1.8; fill: none; }
.service-card h3 { font-size: 1.15rem; font-weight: 900; color: white; margin-bottom: 9px; }
.service-card p  { font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.55); transition: color var(--transition); }
.service-card:hover p { color: rgba(255,255,255,.86); }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: .88rem; font-weight: 700; color: var(--orange); text-decoration: none; transition: gap var(--transition), color var(--transition); }
.service-card:hover .service-link { color: white; gap: 10px; }

/* ── CLIENTS ── */
.clients { padding: 56px 0; background: white; border-top: 1px solid var(--border); }
.clients-lbl { font-size: .78rem; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: #b0bec8; text-align: center; margin-bottom: 26px; }
.clients-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.client-logo { font-size: 1.1rem; font-weight: 900; color: #d0dae4; letter-spacing: -.3px; transition: color var(--transition); cursor: default; }
.client-logo:hover { color: var(--navy); }

/* ── WHY US ── */
.why { padding: 100px 0; background: white; }
.why .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-visual { position: relative; }
.why-img-box { background: var(--navy-deep); border-radius: 16px; overflow: hidden; height: 440px; position: relative; }
.why-img-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.033) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.033) 1px,transparent 1px); background-size: 36px 36px; }
.why-img-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.why-float { position: absolute; bottom: -16px; right: -16px; background: white; border-radius: 13px; padding: 16px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px; }
.why-float-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--orange-glow); display: grid; place-items: center; }
.why-float-icon svg { width: 19px; height: 19px; stroke: var(--orange); stroke-width: 2; fill: none; }
.why-float-num { font-size: 1.9rem; font-weight: 900; color: var(--navy-deep); line-height: 1; }
.why-float-txt { font-size: .82rem; color: var(--text-muted); margin-top: 2px; }
.why-points { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--border); border-radius: 11px; transition: all var(--transition); }
.why-point:hover { border-color: var(--orange); background: rgba(247,92,28,.03); transform: translateX(3px); }
.why-point-num { min-width: 32px; height: 32px; border-radius: 6px; background: var(--orange-glow); display: grid; place-items: center; font-size: .88rem; font-weight: 900; color: var(--orange); }
.why-point h4 { font-size: 1.05rem; font-weight: 900; color: var(--navy-deep); margin-bottom: 3px; }
.why-point p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ── PROCESS ── */
.process { padding: 100px 0; background: var(--navy-deep); text-align: center; }
.process .section-title { color: white; }
.process .section-sub { color: rgba(255,255,255,.4); margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 52px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg,transparent,rgba(247,92,28,.32),rgba(247,92,28,.32),transparent); }
.process-step { padding: 0 16px; }
.process-step-num { width: 64px; height: 64px; border-radius: 50%; background: rgba(35,80,130,.65); border: 2px solid rgba(247,92,28,.22); display: grid; place-items: center; margin: 0 auto 20px; font-size: 1.2rem; font-weight: 900; color: var(--orange); position: relative; z-index: 2; transition: all var(--transition); }
.process-step:hover .process-step-num { background: var(--orange); border-color: var(--orange); color: white; box-shadow: 0 0 0 7px rgba(247,92,28,.12); }
.process-step h4 { font-size: 1.05rem; font-weight: 900; color: white; margin-bottom: 7px; }
.process-step p  { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 0; background: var(--off-white); }
.testimonials-head { text-align: center; margin-bottom: 50px; }
.testimonials-head .section-sub { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); transition: all var(--transition); }
.testimonial:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.testimonial-q { font-size: 2.6rem; color: var(--orange); font-weight: 900; line-height: 1; margin-bottom: 11px; }
.testimonial p  { font-size: .95rem; line-height: 1.7; color: #4a5a6e; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); display: grid; place-items: center; font-size: .88rem; font-weight: 700; color: white; flex-shrink: 0; }
.t-name { font-size: .95rem; font-weight: 700; color: var(--navy-deep); }
.t-role { font-size: .84rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta { padding: 96px 0; text-align: center; background: linear-gradient(135deg,var(--navy-deep) 0%,var(--navy) 100%); position: relative; overflow: hidden; }
.cta-orb { position: absolute; top: -110px; left: 50%; transform: translateX(-50%); width: 480px; height: 340px; border-radius: 50%; background: radial-gradient(circle,rgba(247,92,28,.13) 0%,transparent 70%); pointer-events: none; }
.cta-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px); background-size: 46px 46px; }
.cta h2 { font-size: clamp(2rem,3.4vw,2.6rem); font-weight: 800; color: white; letter-spacing: -.5px; margin-bottom: 10px; position: relative; z-index: 1; }
.cta p { color: rgba(255,255,255,.46); font-size: 1rem; max-width: 380px; margin: 0 auto 34px; position: relative; z-index: 1; }
.cta .btn-primary { position: relative; z-index: 1; font-size: 1.05rem; padding: 14px 30px; }

/* ── INNER PAGE HERO ── */
.page-hero { background: var(--navy-deep); padding: 136px 0 76px; position: relative; overflow: hidden; text-align: center; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px); background-size: 46px 46px; }
.page-hero-orb  { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 480px; height: 380px; border-radius: 50%; background: radial-gradient(circle,rgba(247,92,28,.13) 0%,transparent 70%); pointer-events: none; }
.page-hero h1 { font-size: clamp(2.6rem, 4.5vw, 3.8rem); font-weight: 900; color: white; letter-spacing: -.8px; margin-bottom: 14px; position: relative; z-index: 2; animation: up .6s ease both; }
.page-hero p   { font-size: 1.08rem; color: rgba(255,255,255,.52); max-width: 480px; margin: 0 auto; position: relative; z-index: 2; animation: up .7s .1s ease both; }
.breadcrumb { display: flex; align-items: center; gap: 7px; justify-content: center; margin-bottom: 18px; position: relative; z-index: 2; animation: up .6s ease both; }
.breadcrumb a { font-size: .82rem; color: rgba(255,255,255,.42); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { font-size: .82rem; color: rgba(255,255,255,.22); }
.breadcrumb .current { font-size: .82rem; color: var(--orange); font-weight: 600; }

/* ── FOOTER ── */
footer { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,.06); padding: 66px 0 34px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 46px; margin-bottom: 46px; }
.footer-brand-desc { font-size: .86rem; color: rgba(255,255,255,.38); line-height: 1.7; margin-top: 13px; max-width: 230px; }
.footer-col h5 { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a  { font-size: .88rem; color: rgba(255,255,255,.36); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 9px; font-size: .82rem; color: rgba(255,255,255,.26); }

/* ── CONTACT ── */
.contact-section { padding: 76px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.65rem; font-weight: 900; color: var(--navy-deep); margin-bottom: 11px; }
.contact-info p  { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 18px; }
.contact-detail-icon { width: 38px; height: 38px; border-radius: 9px; background: var(--orange-glow); display: grid; place-items: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 17px; height: 17px; stroke: var(--orange); fill: none; stroke-width: 2; }
.contact-detail-label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail-val { font-size: 1rem; font-weight: 600; color: var(--navy-deep); }

.form-card { background: white; border-radius: 16px; padding: 38px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy-deep); letter-spacing: .3px; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .94rem; color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(247,92,28,.09); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%236b7a8e' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 38px; cursor: pointer; }
.form-submit { width: 100%; padding: 15px; background: var(--orange); color: white; border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all var(--transition); box-shadow: 0 5px 20px rgba(247,92,28,.28); }
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 9px 28px rgba(247,92,28,.38); }
.form-note { font-size: .82rem; color: var(--text-muted); text-align: center; margin-top: 11px; }

/* ── ABOUT ── */
.about-intro { padding: 76px 0; }
.about-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-placeholder { height: 400px; background: var(--navy-deep); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border-radius: 16px; }
.about-placeholder-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px); background-size: 34px 34px; }
.about-values { padding: 76px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.value-card { background: white; border-radius: var(--radius); padding: 30px; border: 1px solid var(--border); transition: all var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-icon { width: 48px; height: 48px; border-radius: 11px; background: rgba(26,64,107,.07); display: grid; place-items: center; margin-bottom: 16px; }
.value-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.8; }
.value-card h4 { font-size: 1.05rem; font-weight: 900; color: var(--navy-deep); margin-bottom: 7px; }
.value-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; margin-top: 44px; }
.product-card { background: white; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); transition: all var(--transition); display: flex; gap: 22px; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.product-icon { width: 52px; height: 52px; border-radius: 13px; background: var(--navy); display: grid; place-items: center; flex-shrink: 0; }
.product-icon svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 1.8; }
.product-card h3 { font-size: 1.15rem; font-weight: 900; color: var(--navy-deep); margin-bottom: 7px; }
.product-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.product-tag { display: inline-block; margin-top: 11px; font-size: .78rem; font-weight: 700; background: var(--orange-glow); color: var(--orange); padding: 3px 9px; border-radius: 20px; letter-spacing: .4px; }

/* ── SERVICE INNER PAGES ── */
.service-detail { padding: 76px 0; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.service-body h3 { font-size: 1.45rem; font-weight: 900; color: var(--navy-deep); margin: 34px 0 11px; }
.service-body h3:first-child { margin-top: 0; }
.service-body p  { font-size: .96rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.service-body ul { margin: 0 0 18px 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-body ul li { display: flex; align-items: flex-start; gap: 9px; font-size: .95rem; color: var(--text-muted); }
.service-body ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 7px; }
.service-sidebar { display: flex; flex-direction: column; gap: 18px; }
.sidebar-card { background: var(--off-white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.sidebar-card h4 { font-size: 1rem; font-weight: 900; color: var(--navy-deep); margin-bottom: 13px; }
.sidebar-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-card ul li { font-size: .9rem; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.sidebar-card ul li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.sidebar-cta { background: var(--navy); border-radius: var(--radius); padding: 26px; color: white; }
.sidebar-cta h4 { font-size: 1.05rem; font-weight: 900; margin-bottom: 9px; }
.sidebar-cta p  { font-size: .9rem; color: rgba(255,255,255,.52); line-height: 1.65; margin-bottom: 16px; }
.sidebar-cta .btn-primary { width: 100%; justify-content: center; }

/* ── ANIMATIONS ── */
@keyframes up        { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
@keyframes fromright { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:none; } }
@keyframes pulse     { 0%,100% { opacity:1; } 50% { opacity:.35; } }
@keyframes grow      { from { transform:scaleX(0); } to { transform:scaleX(1); } }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .pillars-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .products-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width:860px) {
  .hero .container, .why .container, .about-intro .container { grid-template-columns: 1fr; }
  .hero-visual, .why-visual { display: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); border-top: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,.07); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:640px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .pillars-grid, .services-grid, .testimonials-grid,
  .process-steps, .values-grid { grid-template-columns: 1fr; }
  .footer-top    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .clients-row   { gap: 24px; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .stats-inner   { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .product-card  { flex-direction: column; }
}
@media (max-width:400px) {
  .stats-inner  { grid-template-columns: 1fr; }
  .stat-item    { border-right: none !important; border-top: 1px solid rgba(255,255,255,.07); }
  .stat-item:first-child { border-top: none; }
}
