/* ============================================
   OneZeTech — Light Theme Stylesheet
   Clean White | Soft Shadows | Modern Images
   ============================================ */

/* --- Variables --- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-accent: #f0f0fe;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --accent-1: #4f46e5;
  --accent-2: #7c3aed;
  --accent-gradient: linear-gradient(135deg, #4f46e5, #7c3aed);
  --accent-gradient-r: linear-gradient(135deg, #7c3aed, #4f46e5);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(15, 23, 42, 0.08);
  --border-accent: rgba(79, 70, 229, 0.25);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 20px 64px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --navbar-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-1);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: block;
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--bg-secondary); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 16px auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79, 70, 229, 0.45);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
  transform: translateY(-2px);
  background: var(--bg-accent);
}

.btn-ghost {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  background: var(--bg-accent);
  color: var(--accent-1);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: var(--shadow); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo — larger and brightened on dark background */
.footer .nav-logo-img {
  height: 52px;
  filter: brightness(1.1);
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-secondary);
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--text-primary);
  background: var(--bg-secondary);
}
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* --- Hero Section (Home) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f5f3ff 50%, #fdf4ff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.12), transparent 70%);
  top: -150px; right: -100px;
  animation-duration: 11s;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1), transparent 70%);
  bottom: -50px; left: -50px;
  animation-duration: 13s;
  animation-direction: reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08), transparent 70%);
  top: 40%; left: 40%;
  animation-duration: 15s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -25px) scale(1.04); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

/* subtle dot grid */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(79,70,229,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

/* 2-column hero layout */
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.07);
  border: 1px solid rgba(79, 70, 229, 0.2);
  color: var(--accent-1);
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 22px; height: 22px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
}

.hero h1 { margin-bottom: 24px; }
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Hero Visual (Image + Floating Cards) --- */
.hero-visual {
  position: relative;
  z-index: 1;
  padding: 24px 44px 44px 16px;
}

.mockup-wrap {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(15,23,42,0.14), 0 0 0 1px rgba(15,23,42,0.06);
}

.mockup-header {
  background: #f1f5f9;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
}

.traffic-lights { display: flex; gap: 5px; }
.traffic-lights span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.tl-red { background: #ef4444; }
.tl-yellow { background: #f59e0b; }
.tl-green { background: #22c55e; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.77rem;
  color: var(--text-muted);
  background: white;
  border-radius: 6px;
  padding: 3px 12px;
  border: 1px solid rgba(15,23,42,0.09);
  font-family: 'SF Mono', Consolas, monospace;
}

.mockup-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.float-badge {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(15,23,42,0.12), 0 0 0 1px rgba(15,23,42,0.04);
  animation: floatBob 4s ease-in-out infinite;
}

.float-badge.fb-1 { top: 0; right: 0; animation-delay: 0s; }
.float-badge.fb-2 { bottom: 0; left: 0; animation-delay: 2s; }

.fb-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.fb-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.fb-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 1px;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  position: relative;
  padding: calc(var(--navbar-height) + 64px) 0 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, #f5f3ff 100%);
}

.page-hero .orb-1 { top: -80px; right: 0; }
.page-hero .orb-2 { bottom: -40px; left: 0; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Cards --- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.glass-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card { position: relative; overflow: hidden; padding: 0; }

.service-card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img { transform: scale(1.06); }

.service-card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, white);
}

.service-card-body { padding: 24px 28px 28px; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.25);
}

.service-icon svg { width: 22px; height: 22px; stroke: #fff; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.7; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-1);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 15px; height: 15px; }

/* --- Products Section --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.product-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-gradient);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.product-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2);
  background: rgba(124, 58, 237, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.product-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.product-card p { color: var(--text-secondary); margin-bottom: 24px; }

.product-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

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

.product-feature svg { width: 15px; height: 15px; color: var(--accent-1); flex-shrink: 0; }

/* --- Stats Section --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.stat-card { text-align: center; padding: 40px 24px; }

.stat-value {
  font-size: 3rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Values Section --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card { text-align: center; padding: 40px 28px; }

.value-icon {
  width: 64px; height: 64px;
  background: var(--bg-accent);
  border: 1px solid rgba(79, 70, 229, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.value-card:hover .value-icon {
  background: var(--accent-gradient);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}

.value-icon svg { width: 28px; height: 28px; color: var(--accent-1); }
.value-card:hover .value-icon svg { color: #fff; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Process Section --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.process-step { text-align: center; padding: 32px 24px; }

.step-number {
  width: 72px; height: 72px;
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.15rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  background-color: white;
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { color: var(--text-secondary); font-size: 0.88rem; }

/* --- Section Image Block --- */
.section-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.section-img:hover img { transform: scale(1.03); }

/* Service page split layout */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- CTA Section --- */
.cta-section { padding: 80px 0; }

.cta-inner {
  background: linear-gradient(135deg, #f5f3ff, #fdf4ff);
  border: 1px solid rgba(79,70,229,0.18);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.1), transparent 70%);
  pointer-events: none;
}

.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 12px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail { display: flex; gap: 16px; align-items: flex-start; }

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--bg-accent);
  border: 1px solid rgba(79,70,229,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; color: var(--accent-1); }
.contact-detail-text strong { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 2px; }
.contact-detail-text span { color: var(--text-secondary); font-size: 0.9rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition);
  width: 100%;
}

.form-group select option { background: white; }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-1);
  background: white;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
  color: var(--accent-1);
}
.form-success svg { width: 52px; height: 52px; margin: 0 auto 16px; }
.form-success h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-primary); }
.form-success p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- About Page --- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  padding: 0 32px 32px 0;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 72px rgba(15,23,42,0.14);
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 10px 40px rgba(15,23,42,0.12);
  text-align: center;
  border: 1px solid var(--border);
}

.about-img-badge .badge-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-img-badge .badge-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.about-text .section-label { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-secondary); margin-bottom: 16px; }

.about-text .highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.highlight-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

/* --- Footer (kept dark for contrast) --- */
.footer {
  background: #0f172a;
  border-top: none;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer .nav-logo { font-size: 1.4rem; margin-bottom: 16px; display: block; color: white; }
.footer .nav-logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p { color: #64748b; font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-abn { margin-top: 16px; font-size: 0.78rem; color: #475569; }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #64748b; font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: #e2e8f0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: #475569;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a { color: #818cf8; }
.footer-bottom a:hover { text-decoration: underline; }

/* --- Misc --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  justify-content: center;
}
.breadcrumb a { color: var(--accent-1); }
.breadcrumb span { opacity: 0.5; }

.divider {
  width: 60px; height: 3px;
  background: var(--accent-gradient);
  border-radius: 3px;
  margin: 16px auto 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .cta-inner { padding: 44px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .hero-visual { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
}

/* AOS custom timing */
[data-aos] { transition-duration: 0.65s !important; }
