/* =============================================
   THE DIGI LAB — Global Stylesheet
   Font: Manrope (Google Fonts) — all weights
   Palette: #000 bg | #faa41a accent | #fff text
   Component-specific styles live in:
     header.css, footer.css, home.css,
     about.css, services.css, portfolio.css,
     contact.css, and per-service CSS files.
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --black-border: #1e1e1e;
  --accent: #faa41a;
  --accent-dark: #d98c0e;
  --accent-glow: rgba(250, 164, 26, 0.15);
  --white: #ffffff;
  --grey-light: #f5f5f5;
  --grey-mid: #888888;
  --grey-dark: #333333;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 10px;
  --radius-card: 14px;
  --radius-sm: 8px;
  --radius-btn: 8px;
  --transition: 0.3s ease;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Nav Logo (global — used in navbar, landing nav, footer) ---- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo span { color: var(--white); }
.nav-logo span em { color: var(--accent); font-style: normal; }
[data-theme="light"] .nav-logo span { color: #111; }

/* ---- Theme Toggle (global — used in navbar and landing nav) ---- */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(250,164,26,0.08);
}
[data-theme="light"] .theme-toggle {
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  color: #666;
}
[data-theme="light"] .theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(250,164,26,0.08);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: rgba(255,255,255,0.75); max-width: 65ch; }

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

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ---- Label / Eyebrow ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before { content: '// '; opacity: 0.4; }

/* ---- Theme-safe text utilities ---- */
.text-dim   { color: rgba(255,255,255,0.30); }
.text-faded { color: rgba(255,255,255,0.50); }
.text-muted { color: rgba(255,255,255,0.60); }
.text-body-dim { color: rgba(255,255,255,0.65); }
[data-theme="light"] .text-dim   { color: #555; }
[data-theme="light"] .text-faded { color: #444; }
[data-theme="light"] .text-muted { color: #333; }
[data-theme="light"] .text-body-dim { color: #333; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

/* Primary — solid accent with shimmer sweep on hover */
.btn-primary {
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::before { left: 110%; }
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(250,164,26,0.35),
    0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn-primary:active { transform: translateY(0); }

/* Outline — border fades to accent, fill sweeps from left */
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.07);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  pointer-events: none;
}
.btn-outline:hover::before { transform: scaleX(1); }
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* CTA-band overrides (accent background, so dark border) */
.cta-band .btn-outline {
  border-color: rgba(0,0,0,0.55);
  color: var(--black);
}
.cta-band .btn-outline::before { background: rgba(0,0,0,0.07); }
.cta-band .btn-outline:hover   { border-color: var(--black); color: var(--black); }

/* Ghost — text-only link, no background */
.btn-ghost {
  color: var(--accent);
  padding-left: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.btn-ghost::before { display: none; }
.btn-ghost::after  { content: ' →'; transition: var(--transition); }
.btn-ghost:hover::after { margin-left: 6px; }

/* ---- Section Headers ---- */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: rgba(255,255,255,0.6); }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ---- Cards ---- */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(250,164,26,0.08);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid rgba(250,164,26,0.3);
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
  color: var(--accent);
}

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 3rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--black-border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-head);
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), transparent);
  margin: 0;
}
.divider-accent {
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  width: 60px;
  margin: 1rem 0;
}

/* ---- Process Steps ---- */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--black-border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(250,164,26,0.2);
  line-height: 1;
  padding-top: 0.2rem;
}
.step-content h4 { color: var(--white); margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; }

/* ---- Portfolio Carousel Items (homepage) ---- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-carousel-wrap {
  overflow: hidden;
  position: relative;
  padding-top: 8px;
  margin-top: -8px;
}
.portfolio-carousel {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.portfolio-carousel.is-dragging { transition: none; cursor: grabbing; }
.portfolio-carousel.is-dragging * { cursor: grabbing !important; }
.portfolio-carousel .portfolio-item {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  min-width: 0;
}
.portfolio-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-card);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}
.portfolio-item:hover {
  background: #131313;
  border-color: rgba(250,164,26,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.portfolio-item:hover .portfolio-link { color: var(--accent); }
.portfolio-item:hover .portfolio-deco { color: rgba(250,164,26,0.07); }
.portfolio-img {
  width: 100%;
  height: 185px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #161616 0%, #1e1e1e 100%);
}
.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-img img { transform: scale(1.06); }
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}
.service-features li i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }
.service-icon-area {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(250,164,26,0.08) 0%, rgba(250,164,26,0.03) 100%);
  border: 1px solid rgba(250,164,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}
.portfolio-item:hover .service-icon-area {
  background: linear-gradient(135deg, rgba(250,164,26,0.13) 0%, rgba(250,164,26,0.05) 100%);
  border-color: rgba(250,164,26,0.28);
}
.portfolio-deco {
  position: absolute;
  bottom: -0.75rem; right: 1.25rem;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  font-family: var(--font-head);
  pointer-events: none;
  user-select: none;
  transition: color 0.3s;
  letter-spacing: -0.05em;
}
.portfolio-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  border-radius: 6px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(250,164,26,0.3);
  background: rgba(250,164,26,0.05);
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.portfolio-item h3 { color: var(--white); font-size: 1.2rem; }
.portfolio-item p { font-size: 1rem; color: rgba(255,255,255,0.55); }
.portfolio-stat { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.portfolio-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  margin-right: 0.25rem;
  font-family: var(--font-head);
  line-height: 1;
}
.portfolio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.portfolio-meta {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-head);
}
.portfolio-link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Pricing Section ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pricing-card:hover {
  border-color: rgba(250,164,26,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.pricing-popular {
  border-color: rgba(250,164,26,0.4);
  background: rgba(250,164,26,0.025);
}
.pricing-popular::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(250,164,26,0.2));
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.pricing-popular:hover {
  border-color: rgba(250,164,26,0.55);
  box-shadow: 0 20px 60px rgba(250,164,26,0.12);
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  width: fit-content;
}
.pricing-tier {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.pricing-price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  margin-left: 0.2rem;
}
.pricing-divider { height: 1px; background: var(--black-border); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 0;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.pricing-features li i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; margin-top: 0.18rem; }
.pricing-cta { margin-top: 0.5rem; justify-content: center; width: 100%; }
.pricing-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  text-align: center;
  max-width: 70ch;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.015);
  line-height: 1.7;
}

/* ---- Testimonials (via TrustIndex widget) ---- */

/* ---- CTA Band ---- */
.cta-band {
  background: var(--accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
}
.cta-band h2 { color: var(--black); }
.cta-band p { color: rgba(0,0,0,0.7); max-width: 55ch; }
.cta-band .btn-primary { background: var(--black); color: var(--white); }
.cta-band .btn-primary:hover { background: #111; box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.cta-band .btn-outline { border-color: var(--black); color: var(--black); }
.cta-band .btn-outline:hover { background: rgba(0,0,0,0.1); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 9rem 0 5rem;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(250,164,26,0.05) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 80% 50%, black 20%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 60ch;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ---- Feature List ---- */
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: rgba(250,164,26,0.3); }
.feature-check {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-family: var(--font-head);
}
.feature-text h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 0.25rem; }
.feature-text p { font-size: 0.85rem; max-width: none; }

/* ---- Two-col split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-content p { margin-bottom: 1.5rem; }
.split-visual {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-card);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.split-visual::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(250,164,26,0.15) 0%, transparent 70%);
}

/* ---- Zoho Form ---- */
#form h2, form[name="form"] h2, form[name="form"] > p { display: none; }

form[name="form"] {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

#form > label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: -0.45rem;
}
[data-theme="light"] #form > label { color: #333; }
#form label em { color: var(--accent); font-style: normal; margin-left: 2px; }

.zf-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

#form input[type="text"],
#form select,
#form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-btn);
  padding: 0.72rem 1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
#form input[type="text"]:focus,
#form select:focus,
#form textarea:focus {
  border-color: var(--accent);
  background: rgba(250,164,26,0.04);
}
[data-theme="light"] #form input[type="text"],
[data-theme="light"] #form select,
[data-theme="light"] #form textarea {
  background: #f6f6f4;
  border-color: #dcdcda;
  color: #111;
}
[data-theme="light"] #form input[type="text"]:focus,
[data-theme="light"] #form select:focus,
[data-theme="light"] #form textarea:focus { border-color: var(--accent); background: #fff; }

#form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23faa41a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
#form textarea { min-height: 90px; resize: vertical; }

#form input::placeholder,
#form textarea::placeholder { color: rgba(255,255,255,0.2); }
[data-theme="light"] #form input::placeholder,
[data-theme="light"] #form textarea::placeholder { color: rgba(0,0,0,0.25); }

#form button[type="submit"] {
  width: 100%;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.9rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.25rem;
}
#form button[type="submit"]:hover { background: #e8930a; transform: translateY(-1px); }
#form button[type="submit"] em { font-style: normal; }

/* ---- Contact form (generic inputs used across pages) ---- */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
input, select, textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
textarea { resize: vertical; min-height: 140px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23faa41a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
select option { background: var(--black-card); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--black-border); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: none; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- Social links ---- */
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

/* ---- Responsive layout utility classes ---- */
.split-contact { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.split-faq     { display: grid; grid-template-columns: 1fr 2fr;   gap: 4rem; align-items: start; }
.val-grid      { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--black-border); }
.app-feature   { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
                 background: var(--black-card); border: 1px solid var(--black-border); padding: 3rem; }
.diff-item     { padding: 1.5rem; border-left: 2px solid var(--accent); }
.pricing-row   { display: flex; justify-content: space-between; align-items: center;
                 padding: 0.75rem 1rem; background: var(--black); border: 1px solid var(--black-border); font-size: 0.85rem; }
.cta-process-card { background: var(--accent-glow); padding: 2.5rem;
                    border: 1px solid rgba(250,164,26,0.3); display: flex; flex-direction: column; justify-content: center; }
[data-theme="light"] .pricing-row { background: #f8f8f6; border-color: #dcdcda; }

/* ---- Animations ---- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--black-border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--black-border); border-right: none; }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-carousel .portfolio-item { flex: 0 0 calc((100% - 1.25rem) / 2); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .portfolio-carousel .portfolio-item { flex: 0 0 100%; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-deco { font-size: 6rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 3.5rem 0; }
  .split-faq { gap: 2rem; }
  .split-contact, .split-faq { grid-template-columns: 1fr; gap: 2.5rem; }
  .val-grid { grid-template-columns: 1fr; }
  .app-feature { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
  .cta-process-card { padding: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .zf-name-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: 1px solid var(--black-border); }
  .stat-item:first-child { border-top: none; }
  .diff-item { padding: 1rem; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .cta-process-card { padding: 1.5rem; }
  .app-feature { padding: 1.5rem; gap: 1.5rem; }
  .cta-band { padding: 2.5rem 0; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
  .section { padding: 3rem 0; }
}

/* =============================================
   LIGHT THEME — Global
============================================= */
[data-theme="light"] {
  --black: #f0f0ee;
  --black-soft: #e8e8e6;
  --black-card: #ffffff;
  --black-border: #dcdcda;
  --accent: #faa41a;
  --accent-dark: #d98c0e;
  --accent-glow: rgba(250,164,26,0.12);
  --white: #111111;
  --grey-mid: #666666;
}

[data-theme="light"] body { background: #f0f0ee; color: #111; }

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4 { color: #111; }
[data-theme="light"] p { color: #222; }

[data-theme="light"] .btn-outline { border-color: rgba(0,0,0,0.3); color: #222; }
[data-theme="light"] .btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(250,164,26,0.05); }
[data-theme="light"] .btn-ghost { color: var(--accent); }

[data-theme="light"] .stats-bar { background: #fff; border-color: #dcdcda; }
[data-theme="light"] .stat-item { border-right-color: #dcdcda; }
[data-theme="light"] .stat-label { color: #333; }

[data-theme="light"] .card { background: #fff; border-color: #dcdcda; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
[data-theme="light"] .card h3 { color: #111; }
[data-theme="light"] .card-icon { background: rgba(250,164,26,0.08); border-color: rgba(250,164,26,0.2); }

[data-theme="light"] .portfolio-item { background: #fff; border-color: #dcdcda; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
[data-theme="light"] .portfolio-item:hover { background: #fafaf8; border-color: rgba(250,164,26,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
[data-theme="light"] .portfolio-item h3 { color: #111; }
[data-theme="light"] .portfolio-item p { color: #333; }
[data-theme="light"] .portfolio-footer { border-top-color: rgba(0,0,0,0.07); }
[data-theme="light"] .portfolio-meta { color: #444; }
[data-theme="light"] .portfolio-link { color: #444; }
[data-theme="light"] .portfolio-item:hover .portfolio-link { color: var(--accent); }
[data-theme="light"] .portfolio-deco { color: rgba(0,0,0,0.04); }
[data-theme="light"] .portfolio-item:hover .portfolio-deco { color: rgba(250,164,26,0.08); }
[data-theme="light"] .portfolio-img { background: linear-gradient(135deg, #efefed 0%, #e5e5e3 100%); }
[data-theme="light"] .portfolio-stat { color: #333; }
[data-theme="light"] .service-icon-area { background: linear-gradient(135deg, rgba(250,164,26,0.1) 0%, rgba(250,164,26,0.04) 100%); border-color: rgba(250,164,26,0.2); }
[data-theme="light"] .portfolio-item:hover .service-icon-area { background: linear-gradient(135deg, rgba(250,164,26,0.15) 0%, rgba(250,164,26,0.07) 100%); border-color: rgba(250,164,26,0.32); }
[data-theme="light"] .service-features li { color: #333; }

[data-theme="light"] .process-step { border-bottom-color: #dcdcda; }
[data-theme="light"] .step-num { color: rgba(250,164,26,0.28); }

[data-theme="light"] .testimonial-card { background: #fff; border-color: #dcdcda; border-left-color: var(--accent); }
[data-theme="light"] .testimonial-quote { color: #111; }
[data-theme="light"] .author-name { color: #111; }
[data-theme="light"] .author-role { color: #444; }

[data-theme="light"] .page-hero { background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(250,164,26,0.06) 0%, transparent 70%); border-bottom-color: #dcdcda; }
[data-theme="light"] .page-hero::after { background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px); }
[data-theme="light"] .breadcrumb { color: #555; }
[data-theme="light"] .breadcrumb a { color: #555; }
[data-theme="light"] .breadcrumb span { color: var(--accent); }
[data-theme="light"] .lead { color: #222; }

[data-theme="light"] .section-header p { color: #222; }

[data-theme="light"] .feature-item { background: #fff; border-color: #dcdcda; }
[data-theme="light"] .feature-text h4 { color: #111; }
[data-theme="light"] .feature-text p { color: #333; }

[data-theme="light"] .split-visual { background: #fff; border-color: #dcdcda; }

[data-theme="light"] label { color: #333; }
[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea { background: #fff; border-color: #dcdcda; color: #111; }
[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder { color: rgba(0,0,0,0.28); }
[data-theme="light"] input:focus,
[data-theme="light"] select:focus,
[data-theme="light"] textarea:focus { border-color: var(--accent); }

[data-theme="light"] .social-link { background: #fff; border-color: #dcdcda; color: rgba(0,0,0,0.4); }

[data-theme="light"] .faq-item { border-bottom-color: #dcdcda; }
[data-theme="light"] .faq-question { color: #111; }
[data-theme="light"] .faq-answer p { color: #222; }

[data-theme="light"] .pricing-card { background: #fff; border-color: #dcdcda; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
[data-theme="light"] .pricing-card:hover { border-color: rgba(250,164,26,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
[data-theme="light"] .pricing-popular { border-color: rgba(250,164,26,0.4); background: rgba(250,164,26,0.03); }
[data-theme="light"] .pricing-popular:hover { border-color: rgba(250,164,26,0.55); box-shadow: 0 16px 48px rgba(250,164,26,0.1); }
[data-theme="light"] .pricing-tier { color: #111; }
[data-theme="light"] .pricing-price span { color: #444; }
[data-theme="light"] .pricing-divider { background: #dcdcda; }
[data-theme="light"] .pricing-features li { color: #222; }
[data-theme="light"] .pricing-note { color: rgba(0,0,0,0.45); background: rgba(0,0,0,0.02); border-color: #dcdcda; }

[data-theme="light"] .filter-btn { border-color: rgba(0,0,0,0.15) !important; color: rgba(0,0,0,0.4) !important; }

[data-theme="light"] .divider { background: #dcdcda; }
