/* ============================================================
   PPCI THEME — MAIN STYLESHEET
   Color palette derived from logo: orange · blue · green on dark
   ============================================================ */

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

:root {
  /* Brand — extracted from logo */
  --orange:       #E8671A;
  --orange-light: #F5924A;
  --orange-glow:  rgba(232,103,26,0.18);
  --blue:         #2B7CB8;
  --blue-light:   #5BA3D9;
  --blue-glow:    rgba(43,124,184,0.18);
  --green:        #4DAA4D;
  --green-light:  #72C472;
  --green-glow:   rgba(77,170,77,0.18);

  /* Surfaces */
  --bg-deep:   #070C16;
  --bg-dark:   #0D1525;
  --bg-card:   #111C2E;
  --bg-card2:  #162035;
  --bg-light:  #F4F6FA;
  --bg-white:  #FFFFFF;

  /* Text */
  --text-white:  #F0F4FF;
  --text-muted:  rgba(200,215,240,0.55);
  --text-dim:    rgba(200,215,240,0.3);
  --text-dark:   #1A2540;
  --text-body:   #3D4F6E;

  /* Borders */
  --border-dark:  rgba(255,255,255,0.07);
  --border-glow:  rgba(232,103,26,0.25);

  /* Misc */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,0.35);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.45);
  --trans:     0.28s cubic-bezier(0.4,0,0.2,1);
  --header-h:  76px;
}

/* ── RESET / BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1,h2,h3,h4,h5 {
  font-family: 'Rajdhani', 'Impact', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
}

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: var(--header-h); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(7,12,22,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow var(--trans);
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  border-bottom-color: rgba(232,103,26,0.2);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 24px; gap: 24px;
}

/* Logo */
.site-logo-link {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.site-logo-img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232,103,26,0.4);
  box-shadow: 0 0 16px rgba(232,103,26,0.25);
}
.site-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Rajdhani', sans-serif; font-size: 17px;
  font-weight: 700; color: var(--text-white); letter-spacing: 0.5px;
}
.logo-name em { font-style: normal; color: var(--orange-light); }
.logo-tag { font-size: 10px; color: var(--text-dim); letter-spacing: 1.5px; text-transform: uppercase; }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-link, .nav-parent {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500;
  color: rgba(200,215,240,0.75);
  transition: all var(--trans); cursor: pointer;
  letter-spacing: 0.3px;
}
.nav-link:hover, .nav-parent:hover, .nav-link.active { color: var(--text-white); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--orange-light); }
.nav-parent svg { transition: transform var(--trans); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 8px;
  min-width: 280px; opacity: 0; pointer-events: none;
  transition: all var(--trans);
  box-shadow: var(--shadow-lg);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .nav-parent svg { transform: rotate(180deg); }
.dropdown li a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  transition: background var(--trans); color: var(--text-muted);
}
.dropdown li a:hover { background: rgba(255,255,255,0.05); color: var(--text-white); }
.dd-icon { font-size: 20px; flex-shrink: 0; width: 32px; text-align: center; }
.dd-text { display: flex; flex-direction: column; line-height: 1.3; }
.dd-text strong { font-size: 13px; color: var(--text-white); font-weight: 600; }
.dd-text small { font-size: 11px; color: var(--text-dim); font-weight: 400; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-wa-header {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #25D366, #1aad52);
  color: #fff; padding: 9px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2px;
  transition: all var(--trans); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.btn-wa-header:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.38); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text-white);
  border-radius: 2px; transition: var(--trans);
}
.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 nav */
.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg-dark); border-top: 1px solid var(--border-dark);
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav-inner { padding: 16px 20px 24px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-section { border-bottom: 1px solid var(--border-dark); padding-bottom: 12px; margin-bottom: 8px; }
.mobile-nav-section:last-of-type { border-bottom: none; }
.mobile-section-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; padding-left: 4px; }
.mobile-link { display: block; padding: 8px 4px; font-size: 14px; color: var(--text-muted); border-radius: var(--radius-sm); transition: color var(--trans); }
.mobile-link:hover { color: var(--text-white); }
.btn-wa-mobile {
  display: block; text-align: center; margin-top: 12px;
  background: #25D366; color: #fff; padding: 12px;
  border-radius: var(--radius); font-weight: 600; font-size: 14px;
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section-wrap { padding: 96px 24px; }
.section-wrap--light { background: var(--bg-light); }
.section-wrap--dark  { background: var(--bg-dark); }
.section-wrap--card  { background: var(--bg-card); }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }
.section-title { font-size: clamp(32px, 5vw, 52px); color: var(--text-white); margin-bottom: 16px; }
.section-title .accent-o { color: var(--orange-light); }
.section-title .accent-b { color: var(--blue-light); }
.section-title .accent-g { color: var(--green-light); }
.section-sub { font-size: 15.5px; color: var(--text-muted); max-width: 580px; line-height: 1.8; margin-bottom: 56px; }
.section-sub--dark { color: var(--text-body); }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius); font-size: 14px;
  font-weight: 600; letter-spacing: 0.3px; transition: all var(--trans);
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #c8520d);
  color: #fff; box-shadow: 0 4px 20px rgba(232,103,26,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,103,26,0.45); }
.btn-outline {
  background: transparent; color: var(--text-white);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.btn-blue {
  background: linear-gradient(135deg, var(--blue), #1d5c8a);
  color: #fff; box-shadow: 0 4px 20px rgba(43,124,184,0.3);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,124,184,0.45); }
.btn-green {
  background: linear-gradient(135deg, var(--green), #338033);
  color: #fff; box-shadow: 0 4px 20px rgba(77,170,77,0.3);
}
.btn-green:hover { transform: translateY(-2px); }
.btn-wa {
  background: linear-gradient(135deg, #25D366, #1aad52);
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg-deep);
  padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-1 {
  position: absolute; top: -10%; right: 5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,103,26,0.14) 0%, transparent 65%);
}
.hero-glow-2 {
  position: absolute; bottom: 0%; left: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,124,184,0.12) 0%, transparent 65%);
}
.hero-glow-3 {
  position: absolute; top: 40%; right: 30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77,170,77,0.08) 0%, transparent 65%);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,103,26,0.1); border: 1px solid rgba(232,103,26,0.3);
  color: var(--orange-light); font-size: 11.5px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 100px;
  margin-bottom: 28px; font-weight: 600;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.4); } }
.hero h1 {
  font-size: clamp(40px, 5.5vw, 70px);
  color: var(--text-white); margin-bottom: 22px;
  line-height: 1.08;
}
.hero h1 .line-orange { color: var(--orange-light); display: block; }
.hero h1 .line-blue   { color: var(--blue-light);   display: block; }
.hero-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 500px; line-height: 1.8; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-divider { height: 1px; background: var(--border-dark); margin-bottom: 32px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: 'Rajdhani', sans-serif; font-size: 36px;
  font-weight: 700; line-height: 1; color: var(--text-white);
}
.hero-stat-num .s-o { color: var(--orange-light); }
.hero-stat-num .s-b { color: var(--blue-light); }
.hero-stat-num .s-g { color: var(--green-light); }
.hero-stat-label { font-size: 12px; color: var(--text-dim); letter-spacing: 0.5px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-logo-wrap {
  position: relative; width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.hero-logo-wrap img {
  width: 220px; height: 220px; border-radius: 50%;
  object-fit: cover; position: relative; z-index: 3;
  border: 3px solid rgba(232,103,26,0.35);
  box-shadow: 0 0 60px rgba(232,103,26,0.3), 0 0 120px rgba(43,124,184,0.15);
  animation: logo-float 4s ease-in-out infinite;
}
@keyframes logo-float { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-12px) } }
.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
}
.ring-1 { width: 260px; height: 260px; border-color: rgba(232,103,26,0.2); animation: ring-spin 20s linear infinite; }
.ring-2 { width: 310px; height: 310px; border-color: rgba(43,124,184,0.15); animation: ring-spin 30s linear infinite reverse; }
.ring-3 { width: 360px; height: 360px; border-color: rgba(77,170,77,0.1); animation: ring-spin 40s linear infinite; }
@keyframes ring-spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.ring-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  top: 0; left: 50%; transform: translateX(-50%) translateY(-4px);
}
.ring-1 .ring-dot { background: var(--orange); box-shadow: 0 0 10px var(--orange); }
.ring-2 .ring-dot { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.ring-3 .ring-dot { background: var(--green); box-shadow: 0 0 10px var(--green); }

/* Vertical service pills around hero */
.hero-pills {
  position: absolute; right: -30px; top: 50%;
  transform: translateY(-50%); display: flex; flex-direction: column; gap: 8px;
}
.hero-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border-dark);
  padding: 8px 14px; border-radius: 100px; font-size: 12px;
  color: var(--text-muted); white-space: nowrap;
  transition: all var(--trans); cursor: default;
}
.hero-pill:hover { border-color: rgba(232,103,26,0.3); color: var(--text-white); background: var(--bg-card2); }
.hero-pill-icon { font-size: 14px; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg-card); padding: 36px 28px;
  transition: all var(--trans); position: relative;
  overflow: hidden; cursor: pointer;
  border-bottom: 3px solid transparent;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform var(--trans);
}
.service-card:hover { background: var(--bg-card2); transform: translateY(-2px); }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--bg-deep); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 20px;
  border: 1px solid var(--border-dark); transition: all var(--trans);
}
.service-card:hover .sc-icon { border-color: rgba(232,103,26,0.35); background: rgba(232,103,26,0.06); }
.sc-title {
  font-size: 20px; color: var(--text-white); margin-bottom: 10px;
  font-weight: 700; letter-spacing: 0.3px;
}
.sc-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; }
.sc-tags span {
  font-size: 11px; padding: 4px 11px; border-radius: 100px;
  background: rgba(255,255,255,0.05); color: var(--text-dim);
  border: 1px solid var(--border-dark); font-weight: 500;
  transition: all var(--trans);
}
.service-card:hover .sc-tags span { background: var(--orange-glow); color: var(--orange-light); border-color: rgba(232,103,26,0.2); }
.sc-cta {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--orange); font-weight: 600;
  transition: gap var(--trans);
}
.service-card:hover .sc-cta { gap: 10px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
  padding: 64px 24px;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  text-align: center; gap: 2px;
}
.stat-item { padding: 32px 20px; position: relative; }
.stat-item::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border-dark);
}
.stat-item:last-child::after { display: none; }
.stat-icon { font-size: 28px; margin-bottom: 12px; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 52px; font-weight: 700; line-height: 1;
  margin-bottom: 6px; color: var(--text-white);
}
.stat-num .s-o { color: var(--orange-light); }
.stat-num .s-b { color: var(--blue-light); }
.stat-num .s-g { color: var(--green-light); }
.stat-label { font-size: 13px; color: var(--text-dim); letter-spacing: 0.5px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.why-point {
  display: flex; gap: 18px; padding: 20px;
  border: 1px solid var(--border-dark); border-radius: var(--radius);
  transition: all var(--trans); background: var(--bg-card);
}
.why-point:hover { border-color: rgba(232,103,26,0.3); background: var(--bg-card2); transform: translateX(4px); }
.wp-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--orange), #c8520d);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 14px rgba(232,103,26,0.3);
}
.wp-title { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.wp-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Heritage / About visual card */
.heritage-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  overflow: hidden;
}
.heritage-card-header {
  background: linear-gradient(135deg, var(--bg-deep), var(--bg-dark));
  padding: 32px 32px 0;
  border-bottom: 1px solid var(--border-dark);
}
.hc-label { font-family: 'Rajdhani',sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.hc-title { font-size: 28px; color: var(--text-white); margin-bottom: 12px; }
.hc-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; padding-bottom: 28px; }
.heritage-milestones { padding: 24px 32px; display: flex; flex-direction: column; gap: 0; }
.milestone {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}
.milestone:last-child { border-bottom: none; }
.ms-line {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 4px; flex-shrink: 0;
}
.ms-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 8px var(--orange); }
.ms-tail { flex: 1; width: 1px; background: var(--border-dark); margin-top: 4px; }
.milestone:last-child .ms-tail { display: none; }
.ms-label { font-size: 11px; color: var(--orange); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }
.ms-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.ms-text strong { color: var(--text-white); font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all var(--trans); position: relative;
}
.testi-card::before {
  content: '"'; position: absolute; top: 16px; right: 20px;
  font-family: Georgia, serif; font-size: 64px; line-height: 1;
  color: rgba(232,103,26,0.12); pointer-events: none;
}
.testi-card:hover { border-color: rgba(232,103,26,0.2); transform: translateY(-3px); box-shadow: var(--shadow); }
.testi-stars { color: #FFB830; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 700; color: #fff;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--text-white); }
.testi-role { font-size: 11.5px; color: var(--text-dim); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; position: relative; }
.process-step {
  background: var(--bg-card); padding: 32px 24px;
  border: 1px solid var(--border-dark); border-radius: var(--radius);
  text-align: center; transition: all var(--trans); position: relative;
}
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%); font-size: 20px; color: var(--text-dim); z-index: 2;
}
.process-step:hover { background: var(--bg-card2); border-color: rgba(43,124,184,0.25); }
.ps-num {
  font-family: 'Rajdhani', sans-serif; font-size: 48px; font-weight: 700;
  color: rgba(43,124,184,0.2); line-height: 1; margin-bottom: 8px;
}
.ps-icon { font-size: 28px; margin-bottom: 14px; }
.ps-title { font-size: 16px; color: var(--text-white); font-weight: 700; margin-bottom: 8px; }
.ps-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SERVICE INNER PAGES — HERO
   ============================================================ */
.page-hero {
  padding: 72px 24px 64px;
  position: relative; overflow: hidden;
  background: var(--bg-deep);
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; padding: 7px 16px; border-radius: 100px;
  margin-bottom: 20px; border: 1px solid;
}
.badge-o { color: var(--orange-light); background: var(--orange-glow); border-color: rgba(232,103,26,0.3); }
.badge-b { color: var(--blue-light);   background: var(--blue-glow);   border-color: rgba(43,124,184,0.3); }
.badge-g { color: var(--green-light);  background: var(--green-glow);  border-color: rgba(77,170,77,0.3); }
.page-hero h1 { font-size: clamp(34px,5vw,58px); color: var(--text-white); margin-bottom: 18px; }
.page-hero-sub { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Service icon display */
.service-icon-display {
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 1; max-width: 360px; margin: 0 auto;
  border-radius: var(--radius-lg); position: relative;
  background: var(--bg-card); border: 1px solid var(--border-dark);
  overflow: hidden;
}
.service-icon-display .big-icon { font-size: 120px; position: relative; z-index: 2; }
.service-icon-display::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at center, var(--orange-glow) 0%, transparent 70%);
}

/* Sub-services list */
.sub-services { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 40px; }
.sub-service {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--trans);
}
.sub-service:hover { border-color: rgba(232,103,26,0.25); background: var(--bg-card2); }
.ss-icon { font-size: 22px; margin-bottom: 10px; }
.ss-title { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.ss-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Benefit list */
.benefits-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.benefit-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-dark);
  transition: all var(--trans);
}
.benefit-item:hover { border-color: rgba(77,170,77,0.25); }
.bi-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-glow); border: 1px solid rgba(77,170,77,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--green-light); margin-top: 1px;
}
.bi-title { font-size: 14px; font-weight: 600; color: var(--text-white); margin-bottom: 2px; }
.bi-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all var(--trans);
}
.team-card:hover { border-color: rgba(232,103,26,0.2); transform: translateY(-2px); }
.tc-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani',sans-serif; font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(232,103,26,0.3);
}
.tc-name { font-size: 20px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.tc-role { font-size: 12px; color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.tc-bio { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

.csr-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.csr-card {
  background: var(--bg-card); border: 1px solid var(--green-glow);
  border-radius: var(--radius); padding: 24px;
  text-align: center; transition: all var(--trans);
}
.csr-card:hover { transform: translateY(-3px); border-color: rgba(77,170,77,0.4); }
.csr-icon { font-size: 36px; margin-bottom: 12px; }
.csr-title { font-size: 15px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.csr-desc { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.value-card {
  background: var(--bg-card); padding: 28px 20px; text-align: center;
  border: 1px solid var(--border-dark); border-radius: var(--radius);
  transition: all var(--trans);
}
.value-card:hover { background: var(--bg-card2); border-color: rgba(43,124,184,0.25); }
.vc-icon { font-size: 32px; margin-bottom: 14px; }
.vc-title { font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.vc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border-dark);
  transition: all var(--trans);
}
.contact-item:hover { border-color: rgba(232,103,26,0.25); }
.ci-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--orange-glow); border: 1px solid rgba(232,103,26,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-label { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; }
.ci-value { font-size: 14.5px; color: var(--text-white); }
.ci-value a { color: var(--orange-light); }
.ci-value a:hover { color: var(--orange); }

.contact-mission {
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  border: 1px solid rgba(232,103,26,0.2); border-radius: var(--radius);
  padding: 24px 20px; margin-top: 4px;
}
.cm-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; font-weight: 700; }
.cm-quote { font-family: 'Rajdhani', sans-serif; font-size: 18px; color: var(--text-white); line-height: 1.5; font-style: italic; }
.cm-quote strong { color: var(--green-light); font-style: normal; }

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 40px;
}
.form-title { font-size: 22px; color: var(--text-white); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; background: var(--bg-deep);
  border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--text-white);
  font-family: 'Nunito', sans-serif; font-size: 14px; outline: none;
  transition: border-color var(--trans);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: rgba(232,103,26,0.45); box-shadow: 0 0 0 3px rgba(232,103,26,0.08); }
.form-row select option { background: var(--bg-dark); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row.full { grid-column: 1/-1; }
.form-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--orange), #c8520d);
  color: #fff; border: none; border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all var(--trans);
  box-shadow: 0 4px 20px rgba(232,103,26,0.3);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,103,26,0.45); }
.form-note { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 12px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-dark);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-size: 14.5px; font-weight: 600;
  color: var(--text-white); text-align: left;
  font-family: 'Nunito', sans-serif;
  transition: background var(--trans);
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-q.open { background: rgba(232,103,26,0.08); color: var(--orange-light); }
.faq-icon { flex-shrink: 0; font-size: 18px; color: var(--orange); transition: transform var(--trans); }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }
.faq-a.open { display: block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
  padding: 72px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,103,26,0.07) 0%, transparent 70%);
}
.cta-band-title { font-size: clamp(28px,4vw,44px); color: var(--text-white); margin-bottom: 16px; position: relative; }
.cta-band-sub { font-size: 15.5px; color: var(--text-muted); max-width: 480px; margin: 0 auto 36px; line-height: 1.8; }
.cta-band-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #04080F;
  border-top: 1px solid var(--border-dark);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border-dark);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(232,103,26,0.3); }
.footer-logo-name { font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-white); }
.footer-logo-name em { color: var(--orange-light); font-style: normal; }
.footer-desc { font-size: 13px; color: var(--text-dim); line-height: 1.75; max-width: 280px; margin-bottom: 20px; }
.footer-tag { font-size: 12px; color: var(--green); font-style: italic; }
.footer-col-title { font-family: 'Rajdhani',sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; font-weight: 700; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-dim); transition: color var(--trans); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--text-white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: var(--text-dim); }
.footer-mission { font-size: 12px; color: rgba(77,170,77,0.5); font-style: italic; }
.footer-tricolor { display: flex; gap: 4px; align-items: center; }
.tc-o { width: 20px; height: 4px; background: var(--orange); border-radius: 2px; }
.tc-w { width: 20px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; }
.tc-g { width: 20px; height: 4px; background: var(--green); border-radius: 2px; }

/* ============================================================
   FLOATING WA BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1aad52);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--trans);
  animation: wa-pulse-float 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
@keyframes wa-pulse-float {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 16px 24px; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
}
.breadcrumb a { color: var(--text-dim); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb-sep { color: var(--text-dim); font-size: 10px; }
.breadcrumb-current { color: var(--orange-light); }

/* ============================================================
   GENERIC PAGE LAYOUT
   ============================================================ */
.entry-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.entry-content h2 { font-size: 32px; color: var(--text-white); margin: 40px 0 16px; }
.entry-content h3 { font-size: 22px; color: var(--text-white); margin: 28px 0 12px; }
.entry-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.entry-content ul { margin: 0 0 18px 20px; }
.entry-content ul li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }

/* 404 */
.page-404 { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px; }
.p404-num { font-family: 'Rajdhani',sans-serif; font-size: 140px; font-weight: 700; line-height: 1; color: var(--orange); opacity: 0.4; }
.p404-msg { font-size: 28px; color: var(--text-white); margin-bottom: 16px; }
.p404-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-inner, .why-grid, .page-hero-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-pills { display: none; }
  .hero-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --header-h: 64px; }
  .section-wrap { padding: 64px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .sub-services { grid-template-columns: 1fr; }
  .csr-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .hero-logo-wrap { width: 200px; height: 200px; }
  .hero-logo-wrap img { width: 160px; height: 160px; }
  .ring-1 { width: 190px; height: 190px; }
  .ring-2 { width: 230px; height: 230px; }
  .ring-3 { width: 270px; height: 270px; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   SOCIAL MEDIA LINKS
   ============================================================ */
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark);
  color: var(--text-muted); transition: all var(--trans);
  text-decoration: none;
}
.social-link:hover { transform: translateY(-2px); color: #fff; }
.social-link.social-whatsapp:hover  { background: #25D366; border-color: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.35); }
.social-link.social-instagram:hover { background: linear-gradient(135deg,#E1306C,#F56040,#FFDC80); border-color: #E1306C; box-shadow: 0 4px 14px rgba(225,48,108,0.35); }
.social-link.social-facebook:hover  { background: #1877F2; border-color: #1877F2; box-shadow: 0 4px 14px rgba(24,119,242,0.35); }
.social-link.social-linkedin:hover  { background: #0A66C2; border-color: #0A66C2; box-shadow: 0 4px 14px rgba(10,102,194,0.35); }
.social-link.social-youtube:hover   { background: #FF0000; border-color: #FF0000; box-shadow: 0 4px 14px rgba(255,0,0,0.3); }
.social-link.social-twitter:hover   { background: #000; border-color: #555; box-shadow: 0 4px 14px rgba(0,0,0,0.4); }

/* Social bar in header (desktop) */
.header-social { display: flex; align-items: center; gap: 6px; }
.header-social .social-link { width: 30px; height: 30px; font-size: 14px; }

/* Contact page social section */
.contact-social-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px;
}
.contact-social-row .social-link {
  width: 42px; height: 42px;
}

/* ============================================================
   FIGMA-STYLE SERVICE CARDS (matching screenshot layout)
   ============================================================ */

/* Section header above cards */
.service-page-header { padding: 56px 24px 0; max-width: 1280px; margin: 0 auto; }
.sph-eyebrow { font-family:'Rajdhani',sans-serif; font-size:12px; letter-spacing:2.5px; text-transform:uppercase; color:var(--orange); font-weight:700; margin-bottom:10px; }
.sph-title { font-size:clamp(28px,4vw,44px); color:var(--text-white); margin-bottom:14px; }
.sph-desc  { font-size:15px; color:var(--text-muted); line-height:1.8; max-width:680px; margin-bottom:40px; }

/* Three-column sub-cards — matches Figma screenshot exactly */
.figma-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px 40px;
}
.figma-cards-grid.two-row {
  grid-template-columns: repeat(3, 1fr);
}
.figma-sub-card {
  background: var(--bg-white);
  border: 1px solid #E8ECF2;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all var(--trans);
  color: var(--text-dark);
}
.figma-sub-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: #C8D0DC;
}
.fsc-title {
  font-family:'Rajdhani',sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.fsc-desc {
  font-size: 13.5px; color: #6B7A8D;
  line-height: 1.65; margin-bottom: 18px;
  border-bottom: 1px solid #EEF1F5;
  padding-bottom: 16px;
}
.fsc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fsc-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: #3D4F6E; line-height: 1.5;
}
.fsc-check {
  flex-shrink: 0; width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(77,170,77,0.12);
  border: 1.5px solid rgba(77,170,77,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--green); font-weight: 700;
  margin-top: 1px;
}

/* "Why Choose Us" gradient band — matches Figma exactly */
.figma-why-band {
  max-width: 1280px; margin: 0 auto 0;
  padding: 0 24px 64px;
}
.figma-why-band-inner {
  background: linear-gradient(135deg, #1E3A8A 0%, #4C1D95 50%, #7C3AED 100%);
  border-radius: 16px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fwb-title {
  font-family:'Rajdhani',sans-serif;
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 20px;
}
.fwb-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fwb-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.9);
}
.fwb-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: #fff; font-weight: 700;
}
.fwb-right {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
.fwb-label {
  font-size: 13px; color: rgba(255,255,255,0.65);
  text-align: right; margin-bottom: 2px;
}
.fwb-btn-primary {
  display: block; width: 100%; max-width: 300px;
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff; padding: 13px 24px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all var(--trans);
}
.fwb-btn-primary:hover { background: rgba(255,255,255,0.22); }
.fwb-btn-outline {
  display: block; width: 100%; max-width: 300px;
  text-align: center;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8); padding: 13px 24px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all var(--trans);
}
.fwb-btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* Service page wrapper uses light bg to match Figma */
.service-page-wrap {
  background: #F4F6FA;
  min-height: 60vh;
}
.service-page-wrap .sph-title,
.service-page-wrap .sph-desc { color: var(--text-dark); }
.service-page-wrap .sph-desc { color: #6B7A8D; }

/* 5-card layout for Business & Tech (2 in bottom row) */
.figma-cards-grid.five-cards {
  grid-template-columns: repeat(3,1fr);
}
.figma-cards-grid.five-cards .figma-sub-card:nth-child(4) {
  grid-column: 1 / 2;
}
.figma-cards-grid.five-cards .figma-sub-card:nth-child(5) {
  grid-column: 2 / 3;
}

/* Responsive */
@media (max-width: 900px) {
  .figma-cards-grid,
  .figma-cards-grid.five-cards { grid-template-columns: 1fr 1fr; }
  .figma-why-band-inner { grid-template-columns: 1fr; gap: 28px; }
  .fwb-right { align-items: stretch; }
  .fwb-btn-primary, .fwb-btn-outline { max-width: 100%; }
  .figma-cards-grid.five-cards .figma-sub-card:nth-child(4),
  .figma-cards-grid.five-cards .figma-sub-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 580px) {
  .figma-cards-grid { grid-template-columns: 1fr; }
  .figma-why-band-inner { padding: 28px 20px; }
}

/* Header phone link */
.header-phone-link {
  display: none;
  align-items: center; gap: 6px;
  color: rgba(200,215,240,0.65); font-size: 12.5px;
  text-decoration: none; transition: color var(--trans);
  white-space: nowrap;
}
.header-phone-link:hover { color: var(--text-white); }
@media (min-width: 1100px) { .header-phone-link { display: flex; } }

/* ── Team grid — centred single card for last founder ── */
.team-grid--center-single {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}



/* ============================================================
   MINI CONTACT FORM SECTION — service landing pages
   Full dark-background section with 2-column layout
   ============================================================ */

/* Section wrapper — dark background so form is always visible */
.section-wrap--mini-form {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 80px 24px;
}

/* 2-col layout: left=pitch, right=form card */
.mf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Left column ── */
.mf-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.15;
}
.mf-tagline {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.mf-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mf-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.mf-bullet-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(77,170,77,0.15);
  border: 1.5px solid rgba(77,170,77,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-light);
}

/* ── Right column: form card ── */
.mf-card {
  background: var(--bg-card);
  border: 1px solid rgba(232,103,26,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.mf-card-header { margin-bottom: 24px; }
.mf-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.mf-card-sub {
  font-size: 13px;
  color: var(--text-dim);
}

/* Form rows */
.mf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.mf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.mf-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 3px;
}
.mf-req { color: var(--orange); }

/* Inputs */
.mf-field input,
.mf-field textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text-white);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  -webkit-appearance: none;
  appearance: none;
}
.mf-field input::placeholder,
.mf-field textarea::placeholder {
  color: rgba(200,215,240,0.25);
}
.mf-field input:focus,
.mf-field textarea:focus {
  border-color: rgba(232,103,26,0.55);
  box-shadow: 0 0 0 3px rgba(232,103,26,0.1);
}
.mf-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* Submit button */
.mf-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--orange), #c8520d);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--trans);
  box-shadow: 0 4px 18px rgba(232,103,26,0.35);
  margin-bottom: 10px;
}
.mf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,103,26,0.5);
}
.mf-note {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

/* Success state */
.mf-success { text-align: center; padding: 16px 0; }
.mf-success-icon { font-size: 48px; margin-bottom: 14px; }
.mf-success-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px; font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.mf-success-msg {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .mf-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mf-left { order: 2; }
  .mf-right { order: 1; }
}
@media (max-width: 540px) {
  .mf-row-2 { grid-template-columns: 1fr; }
  .mf-card  { padding: 24px 16px; }
  .section-wrap--mini-form { padding: 56px 16px; }
}

/* ============================================================
   QUICK CONNECT GRID — contact page, all 6 verticals
   ============================================================ */
.qc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.qc-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--trans);
  border: 1.5px solid transparent;
  line-height: 1.3;
}
.qc-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.qc-icon { font-size: 18px; flex-shrink: 0; }

/* Colour variants */
.qc-orange {
  background: linear-gradient(135deg, var(--orange), #c8520d);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,103,26,0.3);
}
.qc-blue {
  background: linear-gradient(135deg, var(--blue), #1d5c8a);
  color: #fff;
  box-shadow: 0 4px 14px rgba(43,124,184,0.3);
}
.qc-green {
  background: linear-gradient(135deg, var(--green), #338033);
  color: #fff;
  box-shadow: 0 4px 14px rgba(77,170,77,0.3);
}
.qc-dark {
  background: var(--bg-card2);
  color: var(--text-white);
  border-color: rgba(255,255,255,0.15);
}
.qc-dark:hover { border-color: rgba(255,255,255,0.35); background: var(--bg-card); }
.qc-purple {
  background: linear-gradient(135deg, #6D28D9, #4C1D95);
  color: #fff;
  box-shadow: 0 4px 14px rgba(109,40,217,0.3);
}

@media (max-width: 480px) {
  .qc-grid { grid-template-columns: 1fr; }
}
