/* ==========================================================================
   SINCROSYS SOLUTIONS — MODERN LIGHT DESIGN SYSTEM & STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

::selection {
  background: rgba(37, 99, 235, 0.15);
  color: var(--accent-hover);
}

/* ---------- CSS VARIABLES (LIGHT DESIGN PATTERN) ---------- */
:root {
  /* Canvas & Surface System */
  --bg: #f8fafc;
  --bg-alt: #ffffff;
  --bg-offset: #f1f5f9;
  --surface: #ffffff;
  --surface-hover: #f8fafc;
  --surface-subtle: #f1f5f9;
  --surface-glass: rgba(255, 255, 255, 0.85);

  /* High-Contrast Typography */
  --text: #0f172a;           /* Slate 900 */
  --text-secondary: #475569; /* Slate 600 */
  --text-muted: #64748b;     /* Slate 500 */
  --text-subtle: #94a3b8;    /* Slate 400 */
  --text-inverse: #ffffff;

  /* Brand Accents & Gradients */
  --accent: #2563eb;          /* Electric Blue */
  --accent-hover: #1d4ed8;    /* Deep Blue */
  --accent-light: #3b82f6;    /* Bright Blue */
  --accent-soft: #eff6ff;     /* Blue 50 */
  --accent-subtle: #f0f7ff;   /* Blue Tint */
  --accent-glow: rgba(37, 99, 235, 0.18);
  --gradient-brand: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
  --gradient-subtle: linear-gradient(180deg, rgba(37,99,235,0.06) 0%, rgba(248,250,252,0) 100%);

  /* Neutrals & Borders */
  --border: #e2e8f0;          /* Slate 200 */
  --border-light: #edf2f7;    /* Slate 100 */
  --border-subtle: #f8fafc;
  --border-focus: #2563eb;

  /* Semantic Alerts */
  --success: #10b981;
  --success-bg: #ecfdf5;
  --success-border: #a7f3d0;
  --error: #ef4444;
  --error-bg: #fef2f2;
  --error-border: #fecaca;
  --warning: #f59e0b;
  --warning-bg: #fffbeb;

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Modern Ambient Shadows (Diffused, Multi-layer) */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 20px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 28px -6px rgba(15, 23, 42, 0.08), 0 8px 12px -6px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 35px -5px rgba(37, 99, 235, 0.15);

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1200px;
  --container-narrow: 960px;
  --nav-height: 76px;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  line-height: 1.18;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 4.5vw + 0.5rem, 3.85rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3vw + 0.4rem, 2.75rem); }
h3 { font-size: clamp(1.35rem, 1.8vw + 0.3rem, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.95rem; }

p {
  color: var(--text-secondary);
  max-width: 68ch;
  font-size: 1rem;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }

/* ---------- LAYOUT & CONTAINERS ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-20) 0;
  position: relative;
}

.section--tight {
  padding: var(--space-12) 0;
}

.section--hero {
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-16);
}

/* ---------- AMBIENT BACKGROUNDS & GRID PATTERNS ---------- */
.bg-mesh-pattern {
  position: relative;
}

.bg-mesh-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% -10%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.grid-dot-pattern {
  background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------- GRIDS ---------- */
.grid { display: grid; gap: var(--space-8); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.25), 0 1px 2px rgba(37, 99, 235, 0.15);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

.btn--outline {
  background: #ffffff;
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.btn--outline:hover {
  background: var(--surface-hover);
  border-color: #cbd5e1;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.btn--sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  border-radius: var(--radius-xs);
}

.btn--lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.card--raised {
  box-shadow: var(--shadow-md);
}

.card--glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.12);
  transition: var(--transition);
}

.card:hover .card__icon {
  transform: scale(1.05);
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  color: var(--text);
}

.card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- BADGES & TAGS ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--surface-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.tag--accent {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.15);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.08);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.75; }
}

/* ---------- NAVIGATION (FROSTED GLASS LIGHT) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 2;
  transition: var(--transition);
}

.navbar__logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.navbar__logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.navbar__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text-secondary);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-xs);
  transition: var(--transition-fast);
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--accent);
  background: var(--accent-soft);
}

.navbar__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #ffffff;
  min-width: 250px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.navbar__dropdown-item {
  padding: 10px 14px;
  border-radius: var(--radius-xs);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.navbar__dropdown-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.navbar__cta {
  background: var(--accent);
  color: #ffffff !important;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
  transition: var(--transition);
  border: none;
}

.navbar__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

.navbar__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
  margin-left: auto;
}

.navbar__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar__mobile-toggle--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__mobile-toggle--open span:nth-child(2) { opacity: 0; }
.navbar__mobile-toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO SECTION (LIGHT DESIGN) ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 25%, rgba(37, 99, 235, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 80% 15%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-light);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  margin-bottom: var(--space-6);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.06);
}

.hero__title {
  color: var(--text);
  margin-bottom: var(--space-6);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero__title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: var(--space-8);
  max-width: 560px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hero__stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* Light Sandbox Visual Card */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__visual-card {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(15, 23, 42, 0.03);
}

.hero__visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-light);
}

.hero__visual-dots {
  display: flex;
  gap: 6px;
}

.hero__visual-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.hero__visual-dot--red { background: #ef4444; }
.hero__visual-dot--yellow { background: #f59e0b; }
.hero__visual-dot--green { background: #10b981; }

.hero__visual-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: monospace;
}

.hero__visual-body {
  background: #f8fafc;
  border-radius: var(--radius);
  padding: var(--space-5);
  font-family: 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
  font-size: 0.825rem;
  line-height: 1.85;
  color: #334155;
  border: 1px solid var(--border-light);
}

.hero__visual-tag {
  position: absolute;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  color: var(--text);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__visual-tag--1 { top: -15px; right: -10px; }
.hero__visual-tag--2 { bottom: 20%; left: -25px; }
.hero__visual-tag--3 { bottom: -15px; right: 20px; }

/* ---------- SECTION HEADERS ---------- */
.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__header--left {
  text-align: left;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.section__title {
  margin-bottom: var(--space-4);
  color: var(--text);
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
}

.section__header--left .section__subtitle {
  margin: 0;
}

/* ---------- STATS STRIP (LIGHT) ---------- */
.stats {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stats__number {
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.stats__number span {
  color: var(--accent);
}

.stats__label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- PRODUCTS SECTION ---------- */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }

.product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.3);
}

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

.product-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.product-card__title {
  font-size: 1.6rem;
  margin-bottom: var(--space-3);
  color: var(--text);
}

.product-card__desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  flex: 1;
  font-size: 1rem;
  line-height: 1.65;
}

.product-card__features {
  margin-bottom: var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.product-card__feature::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- SERVICES SECTION ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.35);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: var(--space-5);
  border: 1px solid rgba(37, 99, 235, 0.12);
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--accent);
  color: #ffffff;
}

.service-card__title {
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  color: var(--text);
}

.service-card__desc {
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* ---------- WHY US / VALUES ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.why-item {
  display: flex;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
  background: #ffffff;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.25);
}

.why-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.why-item__title {
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--text);
}

.why-item__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ---------- PROCESS / TIMELINE ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.process-step {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.process-step__num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-4);
  font-family: 'Outfit', sans-serif;
}

.process-step__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
  color: var(--text);
}

.process-step__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- CTA SECTION (MODERN LIGHT) ---------- */
.cta {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 50%, #eef2ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-20) var(--space-6);
}

.cta__title {
  color: var(--text);
  margin-bottom: var(--space-4);
}

.cta__subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER (MODERN LIGHT DESIGN) ---------- */
.footer {
  background: #f8fafc;
  color: var(--text-secondary);
  padding: var(--space-20) 0 0;
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.footer__logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.footer__logo-img {
  height: 44px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
}

.footer__brand-desc {
  color: var(--text-secondary);
  margin-top: var(--space-4);
  max-width: 320px;
  line-height: 1.7;
  font-size: 0.925rem;
}

.footer__heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.925rem;
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--accent);
  padding-left: 2px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer__contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  background: #ffffff;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.footer__social a:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ---------- SUBPAGE HERO (.page-hero) ---------- */
.page-hero {
  padding-top: calc(var(--nav-height) + 54px);
  padding-bottom: var(--space-16);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(124, 58, 237, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero--centered {
  text-align: center;
}

.page-hero--centered .page-hero__subtitle {
  margin: 0 auto var(--space-6);
}

.page-hero--centered .page-hero__actions {
  justify-content: center;
}

.page-hero--centered .page-hero__chips {
  justify-content: center;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--accent);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}

.page-hero__title {
  margin-bottom: var(--space-4);
  color: var(--text);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.page-hero__title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 640px;
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.page-hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.page-hero__chips {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

/* Page Hero Visual Sidecar Card */
.page-hero__visual {
  position: relative;
  z-index: 1;
}

.page-hero__card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.page-hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-light);
}

.page-hero__card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero__metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.page-hero__metric-box {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  text-align: center;
}

.page-hero__metric-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.page-hero__metric-lbl {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  color: var(--text-muted);
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--space-4);
}

.breadcrumbs a {
  color: var(--text-secondary);
  font-weight: 500;
}

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

.breadcrumbs__sep {
  color: var(--text-subtle);
  font-size: 0.75rem;
}

.breadcrumbs__current {
  color: var(--text);
  font-weight: 600;
}

/* ---------- FORMS & ENQUIRY (CLEAN SIMPLE UI) ---------- */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  transition: var(--transition);
  font-size: 0.925rem;
  box-shadow: var(--shadow-xs);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

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

.form-input--error {
  border-color: var(--error) !important;
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error--visible {
  display: block;
}

.form-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid var(--success-border);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  text-align: center;
  display: none;
}

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

.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-quick-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateX(2px);
}

.contact-quick-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--space-5) 0;
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: var(--space-4);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
  padding-top: var(--space-4);
}

.faq-item__icon {
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--accent);
}

.faq-item--open .faq-item__icon {
  transform: rotate(180deg);
}

/* ---------- UTILITY CLASSES ---------- */
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.pointer { cursor: pointer; }
.divider { border: none; border-top: 1px solid var(--border); margin: var(--space-8) 0; }

.visually-hidden, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- A11Y & FOCUS ---------- */
:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
}

a:focus:not(:focus-visible), button:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
