/* ========================================
   AI Works - Neumorphic (Soft UI) Design
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #141414;
  --shadow-dark: #000000;
  --shadow-light: #2A2A2A;
  --accent: #F27A1A;
  --accent-dark: #D4650F;
  --accent-light: #FFAA5C;
  --text: #F0F0F0;
  --text-muted: #A0A0A0;
  --text-dim: #666666;
  --success: #38B2AC;
  --radius: 28px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --neu-out: 8px 8px 20px var(--shadow-dark), -6px -6px 18px var(--shadow-light);
  --neu-out-sm: 5px 5px 14px var(--shadow-dark), -4px -4px 12px var(--shadow-light);
  --neu-out-lg: 12px 12px 30px var(--shadow-dark), -10px -10px 26px var(--shadow-light);
  --neu-in: inset 4px 4px 10px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light);
  --neu-in-sm: inset 2px 2px 6px var(--shadow-dark), inset -2px -2px 6px var(--shadow-light);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  background: var(--bg);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.08) 1.5px, transparent 0),
    radial-gradient(ellipse 80% 50% at 20% 60%, rgba(242,122,26,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(255,186,8,0.03) 0%, transparent 50%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
  background-attachment: fixed;
}

/* Dark mode neumorphic edge hint — subtle border on all raised elements */
.service-card, .value, .who-card, .contact-item, .visual-card,
.enquiry-form, .footer-content, .cta-inner, .step-card,
.info-card, .philosophy-card, .stat-box, .service-icon,
.section-tag, .btn-outline {
  border: 1px solid rgba(255,255,255,0.06);
}

/* Wandering light that sweeps across the dot grid */
body::before {
  content: '';
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(242,122,26,0.08) 0%, rgba(255,186,8,0.04) 30%, transparent 70%);
  animation: wanderLight 20s ease-in-out infinite;
  will-change: transform;
}

@keyframes wanderLight {
  0%   { transform: translate(10vw, 15vh); }
  14%  { transform: translate(60vw, 5vh); }
  28%  { transform: translate(80vw, 45vh); }
  42%  { transform: translate(50vw, 75vh); }
  57%  { transform: translate(15vw, 85vh); }
  71%  { transform: translate(5vw, 40vh); }
  85%  { transform: translate(40vw, 20vh); }
  100% { transform: translate(10vw, 15vh); }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; opacity: 0; }
}

/* Laser canvas */
#laserCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 5px 5px 12px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 3px 3px 8px var(--shadow-dark), -2px -2px 5px var(--shadow-light);
  transform: translateY(-1px);
}

.btn-primary:active {
  box-shadow: var(--neu-in-sm);
  transform: translateY(0);
}

.btn-outline {
  background: var(--bg);
  color: var(--text);
  box-shadow: var(--neu-out-sm);
}

.btn-outline:hover {
  color: var(--accent);
  box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
  transform: translateY(-1px);
}

.btn-outline:active {
  box-shadow: var(--neu-in-sm);
  transform: translateY(0);
}

.btn-nav {
  padding: 11px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-xs);
  box-shadow: 4px 4px 8px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
  font-size: 0.88rem;
}

.btn-nav,
.nav-links a.btn-nav {
  color: #fff;
}

.btn-nav:hover,
.nav-links a.btn-nav:hover {
  color: #fff;
  background: var(--accent-dark);
  box-shadow: 2px 2px 5px var(--shadow-dark), -2px -2px 4px var(--shadow-light);
}

.btn-full {
  width: 100%;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: var(--bg);
}

.navbar.scrolled {
  background: var(--bg);
  box-shadow: 4px 4px 12px var(--shadow-dark), -4px -4px 12px var(--shadow-light);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: -0.02em;
}

.logo-image {
  display: block;
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

/* --- Dropdown --- */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.65em;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--neu-out-lg);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  color: var(--accent);
  background: rgba(242, 122, 26, 0.05);
  padding-left: 28px;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 4px 16px;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-menu li a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .dropdown-menu li a:hover {
    padding-left: 16px;
  }
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#heroCanvas {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero .container {
  position: relative;
}

.hero-content {
  position: relative;
  max-width: 680px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
}

/* --- Section Common --- */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 8px 20px;
  background: var(--bg);
  box-shadow: var(--neu-in-sm);
  border-radius: 24px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Services --- */
.services {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(242,122,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(255,186,8,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 880px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--neu-out-lg);
  transition: all 0.4s ease;
  text-align: center;
}

.service-card:hover {
  box-shadow: 14px 14px 28px var(--shadow-dark), -14px -14px 28px var(--shadow-light);
  transform: translateY(-4px);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: var(--bg);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 28px;
  box-shadow: var(--neu-out-sm);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  box-shadow: var(--neu-in-sm);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* --- About --- */
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.08) 1.5px, transparent 0),
    linear-gradient(135deg, rgba(242,122,26,0.03) 0%, transparent 40%),
    linear-gradient(315deg, rgba(255,170,92,0.03) 0%, transparent 40%),
    var(--bg);
  background-size: 28px 28px, 100% 100%, 100% 100%, 100% 100%;
}

.about::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  right: -250px;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 60px;
  background: var(--bg);
  box-shadow: var(--neu-out);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
  font-size: 0.92rem;
}

.about-values {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.value {
  background: var(--bg);
  border-radius: var(--radius-xs);
  padding: 18px 20px;
  box-shadow: var(--neu-out-sm);
  transition: all 0.3s ease;
}

.value:hover {
  box-shadow: var(--neu-in-sm);
}

.value strong {
  font-size: 0.88rem;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.value span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: 100%;
  max-width: 320px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--neu-out-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  gap: 24px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 100%;
}

.visual-dot {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neu-in-sm);
  transition: all 0.4s ease;
}

.visual-dot.active {
  background: var(--accent);
  box-shadow: 3px 3px 8px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
}

/* --- Enquiry --- */
.enquiry {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.enquiry::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(242,122,26,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.enquiry::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  top: 80px;
  left: -60px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neu-out-sm);
  opacity: 0.25;
  pointer-events: none;
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.enquiry-info .section-tag {
  margin-bottom: 20px;
}

.enquiry-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.enquiry-info > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  background: var(--bg);
  padding: 16px 24px;
  border-radius: var(--radius-xs);
  box-shadow: var(--neu-out-sm);
  transition: all 0.3s ease;
}

.contact-item:hover {
  box-shadow: var(--neu-in-sm);
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Form --- */
.enquiry-form-wrapper {
  position: relative;
}

.enquiry-form {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--neu-out-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg);
  border: none;
  border-radius: var(--radius-xs);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  box-shadow: var(--neu-in-sm);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light), 0 0 0 2px rgba(79, 106, 246, 0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238494A7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.enquiry-form .btn-primary {
  padding: 18px 36px;
  font-size: 1rem;
  margin-top: 4px;
  border-radius: var(--radius-sm);
}

.form-success {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--neu-out-lg);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
}

.form-success.visible {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--bg);
  box-shadow: var(--neu-out-sm);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--success);
  margin-bottom: 24px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.form-success p {
  color: var(--text-muted);
}

/* --- Footer --- */
.footer {
  padding: 72px 0 36px;
  position: relative;
  background:
    radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.08) 1.5px, transparent 0),
    linear-gradient(180deg, var(--bg) 0%, rgba(20,20,20,0.95) 50%),
    linear-gradient(0deg, rgba(242,122,26,0.04) 0%, transparent 40%);
  background-size: 28px 28px, 100% 100%, 100% 100%;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-light), var(--accent), var(--accent-light), transparent);
  opacity: 0.4;
}

.footer-content {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--neu-out);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-image {
  width: 152px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ========================================
   Multi-Page Extensions
   ======================================== */

/* --- Active nav link --- */
.nav-links a.active {
  color: var(--accent);
}

/* --- Page Hero (sub-pages, no canvas) --- */
.page-hero {
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 1.5px 1.5px, rgba(255,255,255,0.08) 1.5px, transparent 0),
    linear-gradient(160deg, rgba(242,122,26,0.05) 0%, transparent 35%),
    linear-gradient(340deg, rgba(255,186,8,0.04) 0%, transparent 30%),
    var(--bg);
  background-size: 28px 28px, 100% 100%, 100% 100%, 100% 100%;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neu-out);
  opacity: 0.25;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 60px;
  background: var(--bg);
  box-shadow: var(--neu-out-sm);
  opacity: 0.2;
  transform: rotate(25deg);
  pointer-events: none;
}

.page-hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  color: var(--text);
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.page-hero .hero-actions {
  margin-top: 0;
}

/* --- Generic content sections --- */
.content-section {
  padding: 100px 0 120px;
}

.content-section-alt {
  padding: 100px 0 120px;
  background: var(--bg);
}

/* --- Pipeline Steps (vertical) --- */
.pipeline-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.pipeline-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}

.pipeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  width: 2px;
  height: calc(100% - 8px);
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.25;
}

.pipeline-step-num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--bg);
  border-radius: 50%;
  box-shadow: var(--neu-out-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.pipeline-step-body {
  background: var(--bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--neu-out-sm);
  padding: 28px 32px;
  margin-bottom: 24px;
  flex: 1;
  transition: all 0.3s ease;
}

.pipeline-step-body:hover {
  box-shadow: var(--neu-out);
  transform: translateX(4px);
}

.pipeline-step-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pipeline-step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Step Cards (How It Works) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--neu-out);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  box-shadow: var(--neu-out-lg);
  transform: translateY(-4px);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- Who Cards --- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.who-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--neu-out);
  transition: all 0.4s ease;
  text-align: center;
}

.who-card:hover {
  box-shadow: var(--neu-out-lg);
  transform: translateY(-4px);
}

.who-card-icon {
  width: 60px;
  height: 60px;
  background: var(--bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 20px;
  box-shadow: var(--neu-out-sm);
  transition: all 0.3s ease;
}

.who-card:hover .who-card-icon {
  box-shadow: var(--neu-in-sm);
}

.who-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.who-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.who-card a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.3s ease;
}

.who-card a:hover {
  color: var(--accent-dark);
}

/* --- Cards Grid (generic 3-col) --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* --- Info Card (used across pages) --- */
.info-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--neu-out);
  transition: all 0.4s ease;
}

.info-card:hover {
  box-shadow: var(--neu-out-lg);
  transform: translateY(-4px);
}

.info-card .service-icon {
  margin: 0 0 20px 0;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0 100px;
}

.cta-inner {
  background:
    linear-gradient(135deg, rgba(242,122,26,0.04) 0%, transparent 50%),
    var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--neu-out-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: var(--neu-out);
  opacity: 0.2;
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: var(--bg);
  box-shadow: var(--neu-out-sm);
  opacity: 0.15;
  transform: rotate(30deg);
  pointer-events: none;
}

.cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.two-col-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* --- Philosophy / Values grid --- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.philosophy-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  box-shadow: var(--neu-out-sm);
  transition: all 0.3s ease;
}

.philosophy-item:hover {
  box-shadow: var(--neu-out);
  transform: translateY(-3px);
}

.philosophy-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.philosophy-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Landing page specific --- */
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,122,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.landing-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.landing-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.landing-bullets {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-bullets li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.landing-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.7;
}

.landing-form-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--neu-out-lg);
}

.landing-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.landing-form-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* --- Highlight stat boxes --- */
.stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.stat-box {
  background: var(--bg);
  border-radius: var(--radius-xs);
  padding: 20px 24px;
  box-shadow: var(--neu-out-sm);
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-box strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .logo-image {
    width: 152px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 24px rgba(163, 177, 198, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
  }

  .visual-card {
    max-width: 260px;
  }

  .enquiry-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    padding: 36px;
  }

  .footer-links {
    gap: 40px;
  }

  .hero {
    align-items: flex-start;
    padding: 100px 0 80px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-header h2,
  .about-content h2,
  .enquiry-info h2 {
    font-size: 1.85rem;
  }

  .services, .about, .enquiry {
    padding: 80px 0 100px;
  }

  .service-card {
    padding: 36px 28px;
  }

  .page-hero {
    padding: 120px 0 72px;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 40px 28px;
  }

  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .landing-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    width: 138px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .enquiry-form {
    padding: 28px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }

  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .stat-row {
    flex-direction: column;
  }
}
