/* =============================================
   IBEAMSIJOS — styles.css (bundled)
   Generated by build-css.js — do not edit directly.
   Edit the individual files in css/ and re-run:
     node build-css.js
   ============================================= */

/* ── base.css ── */
/* =============================================
   BASE — Reset, Variables, Typography
   ============================================= */

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

:root {
  /* Colors */
  --clr-primary: #1a3a5c;
  --clr-primary-dark: #0f2640;
  --clr-primary-light: #2a5a8c;
  --clr-accent: #c8944a;
  --clr-accent-light: #e8b96a;
  --clr-white: #ffffff;
  --clr-off-white: #f7f8fa;
  --clr-light-grey: #eef1f5;
  --clr-mid-grey: #8a9bb0;
  --clr-dark-grey: #4a5568;
  --clr-text: #2d3748;
  --clr-text-light: #64748b;
  --clr-border: #e2e8f0;
  --clr-success: #38a169;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 12px rgba(26, 58, 92, 0.06);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  line-height: 1.7;
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--clr-primary-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  color: var(--clr-text-light);
  max-width: 680px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  margin-bottom: var(--space-xs);
  display: inline-block;
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-light);
  max-width: 600px;
}

/* ── layout.css ── */
/* =============================================
   LAYOUT — Container, Grid, Sections, Buttons
   ============================================= */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- SECTIONS --- */
.section {
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-2xl) 0; }
}

.section--grey {
  background: var(--clr-off-white);
}

.section--dark {
  background: var(--clr-primary-dark);
  color: var(--clr-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--clr-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .section-header { margin-bottom: var(--space-xl); }
}

.section-header .accent-line {
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- GRID --- */
.grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .grid { gap: var(--space-lg); }
}

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

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

.btn--primary:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

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

.btn--accent {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}

.btn--accent:hover {
  background: var(--clr-accent-light);
  border-color: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}

.btn--white:hover {
  background: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

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

@media (max-width: 767px) {
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── navbar.css ── */
/* =============================================
   NAVBAR + MOBILE MENU
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: var(--shadow-sm);
}

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

/* --- LOGO --- */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-mark {
  flex-shrink: 0;
  color: var(--clr-primary-dark);
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--clr-primary-dark);
  line-height: 1;
}

.logo-text span {
  color: var(--clr-accent);
  font-weight: 600;
}

/* Footer logo override */
.footer__brand .navbar__logo {
  color: var(--clr-white);
}

.footer__brand .logo-mark {
  color: var(--clr-white);
}

.footer__brand .logo-text {
  color: var(--clr-white);
}

.footer__brand .logo-text span {
  color: var(--clr-accent-light);
}

/* --- NAV LINKS --- */
.navbar__links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-dark-grey);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: var(--transition);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a:hover {
  color: var(--clr-primary);
}

.navbar__links a.active {
  color: var(--clr-primary);
  font-weight: 600;
}

.navbar__cta {
  display: none;
}

/* --- BURGER --- */
.navbar__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  color: var(--clr-text);
}

.navbar__burger span {
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md);
  z-index: 999;
}

.mobile-menu.open { display: block; }

.mobile-menu a:not(.btn) {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--clr-primary-dark);
  text-align: center;
  border-bottom: 1px solid var(--clr-light-grey);
}

.mobile-menu a:not(.btn):last-of-type { border: none; }

.mobile-menu a:not(.btn).active { color: var(--clr-primary); font-weight: 600; }

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  .navbar__links { display: flex; }
  .navbar__cta { display: inline-flex; }
  .navbar__burger { display: none; }
}

/* ── hero.css ── */
/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  background: linear-gradient(
    165deg,
    var(--clr-off-white) 0%,
    var(--clr-white) 40%,
    var(--clr-white) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 148, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__content h1 {
  margin-bottom: var(--space-md);
}

.hero__title--mobile { display: none; }

@media (max-width: 767px) {
  .hero__title--desktop { display: none; }
  .hero__title--mobile { display: inline; }
}

.hero__content h1 .highlight {
  color: var(--clr-accent);
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 160px;
}

.hero__visual {
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--clr-light-grey);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__badge-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.2rem;
}

.hero__badge-text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--clr-primary-dark);
}

.hero__badge-text span {
  font-size: 0.8rem;
  color: var(--clr-mid-grey);
}

@media (min-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── components.css ── */
/* =============================================
   COMPONENTS — Trust bar, Cards, Steps, Content block, Table, CTA, Testimonials
   ============================================= */

/* --- TRUST BAR --- */
.trust-bar {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-white);
  overflow: hidden;
}

.trust-bar__track {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  width: max-content;
  animation: trust-marquee 28s linear infinite;
}

.trust-bar__track:hover {
  animation-play-state: paused;
}

@keyframes trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .trust-bar {
    overflow: visible;
  }
  .trust-bar__track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-xl);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
  }
  .trust-bar__track [aria-hidden="true"] {
    display: none;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--clr-mid-grey);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  background: var(--clr-light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}

/* --- CARDS --- */
.card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 148, 74, 0.3);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  font-size: 1.4rem;
}

.card__icon--accent {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
}

.card h3 {
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.92rem;
}

/* --- FEATURE CARD (icon left) --- */
.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-off-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-card h3 {
  margin-bottom: 0.25rem;
}

.feature-card p {
  font-size: 0.9rem;
}

/* --- PROCESS STEPS --- */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--space-lg);
  background: var(--clr-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  transition: var(--transition);
  counter-increment: step;
}

.step:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}

.step__number {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.step h3 {
  margin-bottom: var(--space-xs);
}

.step p {
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .process-steps { grid-template-columns: repeat(6, 1fr); }
  .process-steps .step:nth-child(1) { grid-column: span 2; }
  .process-steps .step:nth-child(2) { grid-column: span 2; }
  .process-steps .step:nth-child(3) { grid-column: span 2; }
  .process-steps .step:nth-child(4) { grid-column: 2 / span 2; }
  .process-steps .step:nth-child(5) { grid-column: 4 / span 2; }
}

/* --- CONTENT BLOCK (text + image alternating) --- */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.content-block--reverse .content-block__text {
  order: 1;
}

.content-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--clr-light-grey);
  box-shadow: var(--shadow-md);
  position: relative;
}

.content-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-full {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-image-full img {
  width: 100%;
  height: auto;
  display: block;
}

.content-block__text h2 {
  margin-bottom: var(--space-sm);
}

.content-block__text p {
  margin-bottom: var(--space-md);
}

.content-block__text ul {
  margin-bottom: var(--space-md);
}

.content-block__text ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--clr-text-light);
}

.content-block__text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
}

@media (min-width: 960px) {
  .content-block { grid-template-columns: 1fr 1fr; }

  .content-block--reverse .content-block__text { order: -1; }
}

/* --- COMPARISON TABLE --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

.comparison-table thead {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.comparison-table th {
  padding: 1rem 1.25rem;
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.9rem;
  color: var(--clr-text-light);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

.comparison-table tbody tr { background: var(--clr-white); }
.comparison-table tbody tr:nth-child(even) { background: var(--clr-off-white); }

.comparison-table .check {
  color: var(--clr-success);
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table .cross {
  color: #e53e3e;
  font-weight: 700;
  font-size: 1.1rem;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 148, 74, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto var(--space-lg);
  max-width: 500px;
}

.cta-banner .btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* --- TESTIMONIALS --- */
.testimonial {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--clr-border);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--clr-accent);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.testimonial__stars {
  color: var(--clr-accent);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.testimonial__author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clr-primary-dark);
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  display: block;
  user-select: none;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--clr-white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
  padding: 0;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.45);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  white-space: nowrap;
}

/* Trigger cursor on lightbox images */
.lightbox-trigger {
  cursor: zoom-in;
}

/* ── forms.css ── */
/* =============================================
   FORMS — Contact form + Contact page layout
   ============================================= */

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary-dark);
}

.form-group label .required {
  color: #e53e3e;
}

.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: var(--clr-white);
  color: var(--clr-text);
  transition: var(--transition);
  width: 100%;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #e53e3e;
}

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

.form-error {
  font-size: 0.8rem;
  color: #e53e3e;
  display: none;
}

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

.form-file-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--clr-mid-grey);
}

.form-file-label:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.form-file-label input[type="file"] {
  display: none;
}

.form-success {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-success);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  display: none;
}

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

.form-success h3 { color: var(--clr-success); margin-bottom: var(--space-xs); }

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full-width { grid-column: 1 / -1; }
}

/* --- CONTACT PAGE LAYOUT --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 960px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

.contact-info-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--clr-off-white);
  border-radius: var(--radius-md);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--clr-text-light);
}

.contact-info-card a:hover { color: var(--clr-primary); }

/* ── footer.css ── */
/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--clr-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .footer {
    padding: var(--space-2xl) 0 var(--space-lg);
  }
  .footer-grid {
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
  }
}

.footer__brand .navbar__logo {
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer h4 {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--clr-accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ── pages.css ── */
/* =============================================
   PAGES — Page hero, About page, Services page
   ============================================= */

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: var(--clr-off-white);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- ABOUT PAGE --- */
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .about-values { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.value-card .card__icon {
  margin: 0 auto var(--space-md);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--clr-accent);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 640px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

/* --- SERVICES PAGE --- */
.service-detail {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--clr-border);
}

.service-detail:last-child { border-bottom: none; }

/* --- GALLERY PAGE --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

@media (min-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--clr-light-grey);
  cursor: zoom-in;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s;
  z-index: 1;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.22);
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s;
  color: var(--clr-white);
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gallery-item:hover .gallery-item__zoom {
  opacity: 1;
}

/* ── animations.css ── */
/* =============================================
   ANIMATIONS + UTILITIES
   ============================================= */

/* --- ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger */
.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; }

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Placeholder images */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-light-grey), #dde4ed);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-mid-grey);
  font-size: 0.85rem;
}

/* ── decorative.css ── */
/* ══════════════════════════════════════════════════════
   DECORATIVE SECTION BACKGROUNDS — I-beam motifs
   ══════════════════════════════════════════════════════ */

.section {
  position: relative;
  overflow: hidden;
}

/* Keep section content above decorative layers */
.section > .container {
  position: relative;
  z-index: 1;
}

/* ── Light sections: I-beam plan views + cross-section ── */
.section:not(.section--grey):not(.section--dark):not(.section--plain)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='620' viewBox='0 0 900 620'%3E%3Cg fill='none' stroke='rgba(26,58,92,0.10)' stroke-width='1.2' stroke-linecap='round'%3E%3Cg transform='translate(40,180)'%3E%3Crect x='0' y='0' width='320' height='10' rx='1'/%3E%3Crect x='0' y='90' width='320' height='10' rx='1'/%3E%3Crect x='12' y='10' width='8' height='80'/%3E%3Crect x='300' y='10' width='8' height='80'/%3E%3Crect x='155' y='10' width='10' height='80'/%3E%3C/g%3E%3Cg transform='translate(200,370)'%3E%3Crect x='0' y='0' width='260' height='9' rx='1'/%3E%3Crect x='0' y='76' width='260' height='9' rx='1'/%3E%3Crect x='11' y='9' width='7' height='67'/%3E%3Crect x='242' y='9' width='7' height='67'/%3E%3Crect x='126' y='9' width='8' height='67'/%3E%3C/g%3E%3Cg transform='translate(660,80)' stroke='rgba(26,58,92,0.09)' stroke-width='1.4'%3E%3Crect x='0' y='0' width='120' height='14' rx='1'/%3E%3Crect x='0' y='346' width='120' height='14' rx='1'/%3E%3Crect x='54' y='14' width='12' height='332'/%3E%3Cline x1='-20' y1='0' x2='-20' y2='360' stroke='rgba(26,58,92,0.06)' stroke-dasharray='4 4'/%3E%3Cline x1='-25' y1='0' x2='-15' y2='0' stroke='rgba(26,58,92,0.06)'/%3E%3Cline x1='-25' y1='360' x2='-15' y2='360' stroke='rgba(26,58,92,0.06)'/%3E%3Cline x1='0' y1='380' x2='120' y2='380' stroke='rgba(26,58,92,0.06)' stroke-dasharray='4 4'/%3E%3Cline x1='0' y1='375' x2='0' y2='385' stroke='rgba(26,58,92,0.06)'/%3E%3Cline x1='120' y1='375' x2='120' y2='385' stroke='rgba(26,58,92,0.06)'/%3E%3C/g%3E%3Cg transform='translate(80,30)' stroke='rgba(200,148,74,0.09)' stroke-width='1'%3E%3Crect x='0' y='0' width='180' height='8' rx='1'/%3E%3Crect x='0' y='58' width='180' height='8' rx='1'/%3E%3Crect x='10' y='8' width='6' height='50'/%3E%3Crect x='164' y='8' width='6' height='50'/%3E%3C/g%3E%3Cg transform='translate(820,60)' stroke='rgba(26,58,92,0.07)' stroke-width='1'%3E%3Crect x='0' y='0' width='60' height='500' rx='1' fill='none'/%3E%3Crect x='8' y='0' width='44' height='500' rx='1' fill='none' stroke='rgba(26,58,92,0.04)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 0% 0%,   rgba(26, 58, 92, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(200, 148, 74, 0.05) 0%, transparent 70%);
  background-size: cover, 100% 100%, 100% 100%;
  background-position: center, center, center;
  background-repeat: no-repeat;
  mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 0%, transparent 100%);
}

/* ── Grey sections: larger cross-section + horizontal beams ── */
.section--grey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='620' viewBox='0 0 900 620'%3E%3Cg fill='none' stroke='rgba(100,116,139,0.14)' stroke-width='1.2' stroke-linecap='round'%3E%3Cg transform='translate(60,100)'%3E%3Crect x='0' y='0' width='130' height='15' rx='1'/%3E%3Crect x='0' y='370' width='130' height='15' rx='1'/%3E%3Crect x='59' y='15' width='12' height='355'/%3E%3Cline x1='150' y1='0' x2='150' y2='385' stroke='rgba(100,116,139,0.09)' stroke-dasharray='4 4'/%3E%3Cline x1='145' y1='0' x2='155' y2='0' stroke='rgba(100,116,139,0.09)'/%3E%3Cline x1='145' y1='385' x2='155' y2='385' stroke='rgba(100,116,139,0.09)'/%3E%3C/g%3E%3Cg transform='translate(330,140)'%3E%3Crect x='0' y='0' width='500' height='11' rx='1'/%3E%3Crect x='0' y='86' width='500' height='11' rx='1'/%3E%3Crect x='14' y='11' width='9' height='75'/%3E%3Crect x='477' y='11' width='9' height='75'/%3E%3Crect x='245' y='11' width='10' height='75'/%3E%3C/g%3E%3Cg transform='translate(280,320)' stroke='rgba(100,116,139,0.11)'%3E%3Crect x='0' y='0' width='560' height='9' rx='1'/%3E%3Crect x='0' y='70' width='560' height='9' rx='1'/%3E%3Crect x='12' y='9' width='7' height='61'/%3E%3Crect x='541' y='9' width='7' height='61'/%3E%3Crect x='276' y='9' width='8' height='61'/%3E%3C/g%3E%3Cg stroke='rgba(200,148,74,0.10)' stroke-width='1'%3E%3Crect x='60' y='490' width='200' height='8' rx='1'/%3E%3Crect x='60' y='556' width='200' height='8' rx='1'/%3E%3Crect x='71' y='498' width='6' height='58'/%3E%3Crect x='248' y='498' width='6' height='58'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 100% 0%,   rgba(26, 58, 92, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 0%   100%, rgba(26, 58, 92, 0.04) 0%, transparent 65%);
  background-size: cover, 100% 100%, 100% 100%;
  background-position: center, center, center;
  background-repeat: no-repeat;
  mask-image: radial-gradient(ellipse 88% 88% at 50% 50%, black 0%, transparent 100%);
}

/* ── Soft light flash at top of each section ── */
.section:not(.section--dark):not(.section--plain)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.50) 0%,
    transparent               20%,
    transparent               80%,
    rgba(26, 58, 92, 0.03)   100%
  );
}

/* ── Mobile: corner-pinned I-beam motifs ── */
@media (max-width: 767px) {
  /* Light sections: tall cross-section top-right + small horizontal beam bottom-left */
  .section:not(.section--grey):not(.section--dark):not(.section--plain)::before {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='390' height='500' viewBox='0 0 390 500'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cg transform='translate(295,15)' stroke='rgba(26,58,92,0.09)' stroke-width='1.3'%3E%3Crect x='0' y='0' width='110' height='10' rx='1'/%3E%3Crect x='0' y='255' width='110' height='10' rx='1'/%3E%3Crect x='50' y='10' width='10' height='245'/%3E%3C/g%3E%3Cg transform='translate(-5,400)' stroke='rgba(200,148,74,0.11)' stroke-width='1'%3E%3Crect x='0' y='0' width='120' height='8' rx='1'/%3E%3Crect x='0' y='52' width='120' height='8' rx='1'/%3E%3Crect x='10' y='8' width='6' height='44'/%3E%3Crect x='104' y='8' width='6' height='44'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
      radial-gradient(ellipse 80% 50% at 100% 0%, rgba(26, 58, 92, 0.05) 0%, transparent 70%),
      radial-gradient(ellipse 60% 40% at 0% 100%, rgba(200, 148, 74, 0.04) 0%, transparent 70%);
    mask-image: none;
  }

  /* Grey sections: tall cross-section top-left + small horizontal beam bottom-right */
  .section--grey::before {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='390' height='500' viewBox='0 0 390 500'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cg transform='translate(-15,20)' stroke='rgba(100,116,139,0.13)' stroke-width='1.3'%3E%3Crect x='0' y='0' width='110' height='10' rx='1'/%3E%3Crect x='0' y='235' width='110' height='10' rx='1'/%3E%3Crect x='49' y='10' width='12' height='225'/%3E%3C/g%3E%3Cg transform='translate(265,400)' stroke='rgba(200,148,74,0.09)' stroke-width='1'%3E%3Crect x='0' y='0' width='140' height='8' rx='1'/%3E%3Crect x='0' y='52' width='140' height='8' rx='1'/%3E%3Crect x='10' y='8' width='6' height='44'/%3E%3Crect x='124' y='8' width='6' height='44'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
      radial-gradient(ellipse 70% 50% at 0% 0%, rgba(26, 58, 92, 0.06) 0%, transparent 65%),
      radial-gradient(ellipse 60% 40% at 100% 100%, rgba(26, 58, 92, 0.03) 0%, transparent 65%);
    mask-image: none;
  }
}

/* ── Inset depth shadow between consecutive sections ── */
.section + .section {
  box-shadow:
    inset 0 12px 40px -10px rgba(26, 58, 92, 0.08),
    inset 0  4px 12px -4px  rgba(26, 58, 92, 0.04);
}

