/* =========================================
   BRENDA CREATION SERVICES — Shared Styles
   ========================================= */

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

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

:root {
  --primary:        #3C5347;
  --primary-dark:   #2B3D34;
  --primary-light:  #4E6B5C;
  --secondary:      #697F72;
  --accent-blue:    #C8D7E0;
  --accent-warm:    #E8D5B0;
  --bg:             #FAFAF8;
  --surface:        #F5F0EB;
  --text:           #1A2118;
  --text-muted:     #5C6F62;
  --border:         #E2DDD7;
  --white:          #FFFFFF;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;

  --shadow-sm:  0 2px 8px  rgba(42,61,52,.08);
  --shadow-md:  0 4px 24px rgba(42,61,52,.12);
  --shadow-lg:  0 16px 56px rgba(42,61,52,.16);

  --font-h: 'Bricolage Grotesque', sans-serif;
  --font-b: 'Inter',   sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  line-height: 1.2;
  font-weight: 700;
}

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

a { text-decoration: none; }

/* ── LAYOUT ──────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.section      { padding: 108px 0; }
.section-sm   { padding: 72px 0; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(60,83,71,.28);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 8px 28px rgba(60,83,71,.38);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ── TAG / LABEL ─────────────────────────── */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tag-green  { background: rgba(60,83,71,.1); color: var(--primary); }
.tag-blue   { background: var(--accent-blue); color: var(--primary-dark); }
.tag-warm   { background: var(--accent-warm); color: var(--primary-dark); }
.tag-white  { background: rgba(255,255,255,.18); color: var(--white); }

/* ── NAVIGATION ──────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo img { height: 38px; width: auto; }

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

.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0 28px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul   { list-style: none; }
.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .m-cta { margin-top: 24px; }

/* ── HOME HERO ───────────────────────────── */
.hero {
  position: relative;
  padding: 180px 0 120px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content .tag { margin-bottom: 24px; }
.hero-content h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-content h1 em {
  font-style: normal;
  color: var(--accent-blue);
}
.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
}
.hero-image .img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(43,61,52,.55) 0%, rgba(43,61,52,0) 45%, rgba(43,61,52,.35) 100%);
}
.hero-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-badge .badge-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge .badge-icon svg { width: 24px; height: 24px; color: var(--white); }
.hero-badge .badge-text strong {
  display: block;
  color: var(--text);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 18px;
}
.hero-badge .badge-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── STATS BAR ───────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 6px;
  letter-spacing: -.2px;
}
.stat-item span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ── SECTION HEADER ─────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SERVICE CARDS (overview) ────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(60,83,71,.2);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(60,83,71,.1), rgba(60,83,71,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--primary); }
.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card .learn-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-card .learn-link:hover { gap: 10px; }
.service-card .learn-link svg { width: 16px; height: 16px; }

/* ── PRODUCT CARDS ───────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(60,83,71,.2);
}
.product-card-top { margin-bottom: 18px; }
.product-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}
.product-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-meta {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.product-card .learn-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.product-card .learn-link:hover { gap: 10px; }
.product-card .learn-link svg { width: 16px; height: 16px; }

/* ── ABOUT SPLIT ─────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image .main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image .accent-box {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
}
.about-image .accent-box strong {
  display: block;
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 4px;
}
.about-image .accent-box span { font-size: 14px; opacity: .85; }

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-checks {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.about-checks li svg {
  width: 20px; height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── WHY US ──────────────────────────────── */
.why-us { background: var(--surface); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
}
.why-number {
  font-family: var(--font-h);
  font-size: 52px;
  font-weight: 800;
  color: rgba(60,83,71,.1);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 20px; margin-bottom: 12px; }
.why-card p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── PROCESS STEPS ───────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(60,83,71,.1);
}
.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── TESTIMONIAL ─────────────────────────── */
.testimonial-section { background: var(--primary-dark); color: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.stars svg { width: 18px; height: 18px; fill: #F5C842; }
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  opacity: .85;
  margin-bottom: 28px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
}
.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.reviewer-info span { font-size: 13px; opacity: .6; }

/* ── CTA BANNER ──────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.cta-banner p {
  font-size: 18px;
  opacity: .8;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── VALUES CARDS ────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 24px; height: 24px; color: var(--white); }
.value-body h3 { font-size: 18px; margin-bottom: 8px; }
.value-body p  { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── SERVICES DETAIL PAGE ────────────────── */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-text .tag { margin-bottom: 16px; }
.service-detail-text h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
.service-detail-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}
.service-features li svg {
  width: 18px; height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── CONTACT PAGE ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: 30px; margin-bottom: 16px; letter-spacing: -.3px; }
.contact-info > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(60,83,71,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-text a,
.contact-item-text span {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
}
.contact-item-text a:hover { color: var(--primary); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 24px; margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 15px; color: var(--text-muted); margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(60,83,71,.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6F62' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-submit { width: 100%; padding: 16px; font-size: 16px; }

/* ── PAGE HERO ───────────────────────────── */
.page-hero {
  padding: 156px 0 80px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; }
.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  opacity: .8;
  max-width: 560px;
  margin: 0 auto;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  opacity: .65;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--white); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 88px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p  { font-size: 15px; line-height: 1.75; opacity: .65; max-width: 280px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 15px;
  color: var(--white);
  opacity: 1;
  transition: opacity .2s;
}
.footer-col ul li a:hover { opacity: .75; color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  opacity: .7;
  line-height: 1.5;
}
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; opacity: 1; }
.footer-contact-item a { color: inherit; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 14px; display: flex; align-items: center; flex-wrap: wrap; gap: 4px 14px; }
.footer-bottom .footer-copy { opacity: .45; }
.footer-bottom .footer-legal { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom .footer-legal a { color: var(--white); opacity: .55; font-size: 14px; }
.footer-bottom .footer-legal a:hover { opacity: .9; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.social-link:hover { background: rgba(255,255,255,.18); }
.social-link svg { width: 17px; height: 17px; fill: var(--white); }

/* ── INDUSTRIES ──────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.industry-card .ind-icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  background: rgba(60,83,71,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.industry-card .ind-icon svg { width: 24px; height: 24px; color: var(--primary); }
.industry-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.industry-card p  { font-size: 13px; color: var(--text-muted); }

/* ── DETAILED SERVICE GRID ───────────────── */
.detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.detailed-grid .service-card p { margin-bottom: 18px; }
.detailed-grid .service-features { margin: 0 0 4px; gap: 10px; }

/* ── FAQ ACCORDION ───────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 28px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 0 22px;
}

/* ── DOCS / RESOURCE CARDS ───────────────── */
.docs-grid, .resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.docs-card, .resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.docs-card:hover, .resource-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.docs-card .service-icon, .resource-card .service-icon { margin-bottom: 20px; }
.docs-card h3, .resource-card h3 { font-size: 18px; margin-bottom: 10px; }
.docs-card p, .resource-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }

/* ── SUPPORT TIER / POLICY CARDS ─────────── */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.policy-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.policy-card strong.policy-time {
  display: block;
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}
.policy-card h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); margin-bottom: 10px; }
.policy-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* ── ROADMAP ─────────────────────────────── */
.roadmap-track { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.roadmap-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.roadmap-item:last-child { border-bottom: none; }
.roadmap-status {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--primary);
  padding-top: 4px;
}
.roadmap-body h3 { font-size: 18px; margin-bottom: 8px; }
.roadmap-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── SYSTEM REQUIREMENTS TABLE ───────────── */
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.spec-table th, .spec-table td { text-align: left; padding: 16px 24px; font-size: 14.5px; }
.spec-table th { background: var(--surface); color: var(--text-muted); font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .5px; }
.spec-table td { color: var(--text); border-top: 1px solid var(--border); }
.spec-table tr:first-child td { border-top: none; }

/* ── PLACEHOLDER PANEL (architecture / screenshots) ── */
.placeholder-panel {
  background: var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  color: var(--text-muted);
}
.placeholder-panel svg { width: 40px; height: 40px; margin: 0 auto 16px; color: var(--text-muted); opacity: .5; }
.placeholder-panel strong { display: block; font-family: var(--font-h); color: var(--text); margin-bottom: 6px; font-size: 15px; }
.placeholder-panel span { font-size: 13.5px; }

/* ── MAP EMBED ───────────────────────────── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── FORM STATUS MESSAGE ─────────────────── */
.form-status {
  display: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  background: rgba(60,83,71,.08);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
}
.form-status.show { display: block; }

/* ── LEGAL / PROSE CONTENT ───────────────── */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content .updated-date { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 24px; margin: 44px 0 16px; letter-spacing: -.2px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15.5px; color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { font-size: 15.5px; color: var(--text-muted); line-height: 1.8; }
.legal-content a { color: var(--primary); font-weight: 600; }

/* ── 404 PAGE ────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  background: linear-gradient(140deg, var(--primary-dark) 0%, var(--primary) 55%, var(--secondary) 100%);
  color: var(--white);
}
.error-code {
  font-family: var(--font-h);
  font-size: clamp(96px, 18vw, 180px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  opacity: .92;
}
.error-page h1 { font-size: clamp(24px, 3vw, 32px); margin: 16px 0; }
.error-page p { font-size: 16px; opacity: .75; max-width: 460px; margin: 0 auto 32px; }
.error-page .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 56px; }
  .hero-image         { max-width: 480px; margin: 0 auto; }
  .hero-content p    { max-width: 100%; }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps     { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .industries-grid   { grid-template-columns: repeat(2, 1fr); }
  .product-grid      { grid-template-columns: repeat(2, 1fr); }
  .docs-grid, .resource-grid, .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-item      { grid-template-columns: 120px 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links, .nav-links + .btn { display: none; }
  .hamburger { display: flex; }

  .services-grid     { grid-template-columns: 1fr; }
  .product-grid      { grid-template-columns: 1fr; }
  .detailed-grid     { grid-template-columns: 1fr; }
  .docs-grid, .resource-grid, .policy-grid { grid-template-columns: 1fr; }
  .roadmap-item      { grid-template-columns: 1fr; gap: 8px; }
  .spec-table        { font-size: 13px; }
  .spec-table th, .spec-table td { padding: 12px 16px; }
  .about-split       { grid-template-columns: 1fr; gap: 40px; }
  .about-image .accent-box { display: none; }
  .why-grid          { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .testimonial-grid  { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 48px; }
  .form-row          { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .service-detail-card         { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-card.reverse { direction: ltr; }

  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom p { justify-content: center; }

  .hero { padding: 140px 0 80px; }
  .hero-content h1 { letter-spacing: -.5px; }

  .hero-image { max-width: 360px; margin-top: 8px; }
  .hero-badge { left: 12px; bottom: -16px; padding: 14px 18px; gap: 12px; }
  .hero-badge .badge-icon { width: 40px; height: 40px; }
  .hero-badge .badge-icon svg { width: 20px; height: 20px; }
  .hero-badge .badge-text strong { font-size: 16px; }
  .hero-badge .badge-text span { font-size: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-buttons { flex-direction: column; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item  { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
}
