/* ============================================================
   Facadia — Light Premium Design System
   Background: #FFFFFF / #F7F5F2  |  Text: #1A1A1A  |  Accent: #E8622A
   ============================================================ */

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

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

:root {
  /* Backgrounds */
  --bg-primary:   #FFFFFF;
  --bg-secondary: #F7F5F2;
  --bg-tertiary:  #F0EDE9;
  --bg-dark:      #1C1C1C;
  --bg-darker:    #111111;
  --bg-card:      #FFFFFF;

  /* Text */
  --text-primary:   #1A1A1A;
  --text-secondary: #4B4B4B;
  --text-muted:     #7A7A7A;
  --text-light:     #AAAAAA;

  /* Accent */
  --accent:       #E8622A;
  --accent-hover: #D4561E;
  --accent-light: rgba(232, 98, 42, 0.10);
  --accent-border: rgba(232, 98, 42, 0.25);

  /* White for dark sections */
  --white: #FFFFFF;

  /* Borders */
  --border:       #E8E5E0;
  --border-light: #F0EDE9;
  --border-dark:  #D0CBC4;

  /* Shadows */
  --shadow-xs:     0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
  --shadow-accent: 0 8px 28px rgba(232,98,42,0.32);

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  28px;

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,98,42,0.40);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-dark);
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}
.btn-ghost:hover {
  background: rgba(232,98,42,0.18);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.btn-lg { padding: 18px 38px; font-size: 1rem; }

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 0;
  transition: var(--transition);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-primary {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
  border-radius: 1px;
}

.nav-links a:hover      { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active    { color: var(--text-primary); }

.nav-cta { padding: 11px 22px; font-size: 0.875rem; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

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

/* === HERO — Full-screen image slider === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

/* Slider track */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: opacity;
}

.hero-slide.active { opacity: 1; }

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.38) 55%,
    rgba(0,0,0,0.62) 100%
  );
  z-index: 1;
}

/* Content layer */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 24px 100px;
  text-align: center;
}

.hero-content { max-width: 780px; margin: 0 auto; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,98,42,0.18);
  border: 1px solid rgba(232,98,42,0.50);
  border-radius: 40px;
  padding: 7px 16px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-badge span {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Headline */
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.30);
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

/* Subheadline */
.hero-subheadline {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.72;
  margin: 0 auto 40px;
  max-width: 620px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* CTA row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
  justify-content: center;
}

/* Trust strip */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-icon {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-trust-text {
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
}

/* Arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-50%) scale(1.06);
}

.hero-arrow svg { width: 22px; height: 22px; }
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.40);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s ease, background 0.35s ease;
}

.hero-dot.active {
  width: 28px;
  background: #FFFFFF;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.stat-item:hover::after { width: 60px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon-wrap {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-wrap svg { width: 17px; height: 17px; color: var(--accent); }

.trust-text-wrap strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.trust-text-wrap span {
  font-size: 0.70rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* === USP SECTION === */
.usp { background: var(--bg-primary); }

.usp-header { text-align: center; margin-bottom: 60px; }
.usp-header .section-subtitle { margin: 0 auto; }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.usp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

.usp-card:hover::before { transform: scaleX(1); }

.usp-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.usp-icon svg { width: 24px; height: 24px; color: var(--accent); }

.usp-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.usp-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.68;
}

/* === SERVICES === */
.services { background: var(--bg-secondary); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-dark);
}

.service-card-image {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}

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

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

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.35) 100%);
}

/* Fallback icon for cards without images */
.service-card-icon-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
}

.service-card-icon-bg svg { width: 40px; height: 40px; color: var(--accent); opacity: 0.6; }

.service-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.865rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 18px;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.service-card-link:hover { gap: 9px; }
.service-card-link svg { width: 14px; height: 14px; }

/* === WHY US === */
.why-us { background: var(--bg-primary); }

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-us-content .section-subtitle { margin-bottom: 36px; }

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-us-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.why-us-item:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.why-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg { width: 19px; height: 19px; color: var(--accent); }

.why-text h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.why-text p {
  font-size: 0.815rem;
  color: var(--text-muted);
  line-height: 1.58;
}

/* Credentials card - on light bg */
.why-us-visual { position: relative; }

.credentials-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.credentials-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #F07A45);
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--bg-secondary);
  transition: var(--transition);
}

.credential-badge:hover { border-color: var(--accent-border); }
.credential-badge:last-of-type { margin-bottom: 0; }

.credential-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 48px;
}

.credential-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.credential-info span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.guarantee-band {
  margin-top: 20px;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guarantee-band svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }

.guarantee-band p {
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.guarantee-band span {
  display: block;
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

/* === SERVICE AREAS === */
.areas { background: var(--bg-secondary); }

.areas-header { text-align: center; margin-bottom: 52px; }
.areas-header .section-subtitle { margin: 0 auto; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}

.area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

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

.area-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.area-icon svg { width: 20px; height: 20px; color: var(--accent); }

.area-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.area-card p { font-size: 0.76rem; color: var(--text-muted); }

.areas-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--bg-primary); }

.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-subtitle { margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

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

.testimonial-card.featured {
  border-color: var(--accent-border);
  box-shadow: 0 4px 24px rgba(232,98,42,0.10);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: 14px; right: 22px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars svg {
  width: 15px; height: 15px;
  color: #F59E0B;
  fill: #F59E0B;
}

.testimonial-text {
  font-size: 0.90rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* === PROCESS === */
.process {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.process-header { text-align: center; margin-bottom: 64px; }

.process-header .section-title { color: var(--text-primary); }

.process-header .section-subtitle {
  margin: 0 auto;
  color: var(--text-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(10% + 35px);
  right: calc(10% + 35px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(232,98,42,0.2), var(--accent));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 14px;
}

.process-step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
  box-shadow: 0 0 0 5px rgba(232,98,42,0.10);
}

.process-step:hover .process-step-num {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 8px rgba(232,98,42,0.15);
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.77rem;
  color: var(--text-secondary);
  line-height: 1.58;
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--accent);
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.20) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta .section-label { color: rgba(255,255,255,0.78); }

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.cta-guarantee {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-guarantee-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.55);
}

.cta-guarantee-item svg { width: 13px; height: 13px; color: var(--accent); }

/* === FOOTER === */
.footer {
  background: var(--bg-darker);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo-primary { color: #FFFFFF; }
.footer-brand .nav-logo-sub     { color: rgba(255,255,255,0.35); }

.footer-brand-desc {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.68;
  margin: 16px 0 20px;
  max-width: 255px;
}

.footer-license-badge { display: flex; gap: 10px; flex-wrap: wrap; }

.license-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(232,98,42,0.12);
  border: 1px solid rgba(232,98,42,0.25);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.28);
}

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.28);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 148px 0 72px;
  background: var(--bg-secondary);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.page-hero-label { margin-bottom: 14px; }

.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 18px; }

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.72;
}

/* === SERVICES PAGE — Service sections === */
.service-section { padding: 96px 0; }

.service-section:nth-child(even) { background: var(--bg-secondary); }

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-section:nth-child(even) .service-section-inner { direction: rtl; }
.service-section:nth-child(even) .service-section-inner > * { direction: ltr; }

.service-section-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: var(--shadow-md);
}

.service-section-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.service-section:hover .service-section-visual img { transform: scale(1.04); }

.service-visual-icon span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-section-content .section-label { margin-bottom: 10px; }

.service-section-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.service-section-content p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 22px;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.benefit-item svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* === ABOUT PAGE === */
.about-story { background: var(--bg-primary); }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #F07A45);
}

.about-visual-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.about-visual-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.about-metric {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.about-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 2px;
}

.about-metric span { font-size: 0.70rem; color: var(--text-muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

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

.value-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.value-icon svg { width: 20px; height: 20px; color: var(--accent); }

.value-card h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
}

.value-card p { font-size: 0.80rem; color: var(--text-muted); line-height: 1.58; }

/* === CONTACT PAGE === */
.contact-section { background: var(--bg-secondary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 { font-size: 1.45rem; margin-bottom: 8px; }

.contact-info-card > p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.65;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; color: var(--accent); }

.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail a, .contact-detail span {
  font-size: 0.92rem;
  color: var(--text-primary);
}

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

.contact-areas {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.contact-areas h4 {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-areas-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.area-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* === FORM === */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.form-header { margin-bottom: 32px; }
.form-header h3 { font-size: 1.55rem; margin-bottom: 6px; }
.form-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,98,42,0.10);
}

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

.form-submit-row { margin-top: 6px; }
.form-submit-row .btn { width: 100%; justify-content: center; }

.form-disclaimer {
  text-align: center;
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}

/* === SUCCESS STATE === */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.active { display: block; }

.success-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.10);
  border: 2px solid rgba(34, 197, 94, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.success-icon svg { width: 26px; height: 26px; color: #22C55E; }

.form-success h3 { font-size: 1.5rem; margin-bottom: 9px; }
.form-success p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* === DIVIDER === */
.divider {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px 0 26px;
}

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.10s; }
.fade-in-delay-2 { transition-delay: 0.20s; }
.fade-in-delay-3 { transition-delay: 0.30s; }
.fade-in-delay-4 { transition-delay: 0.40s; }
.fade-in-delay-5 { transition-delay: 0.50s; }

/* === MOBILE NAV DRAWER === */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%; bottom: 0;
  width: min(320px, 90vw);
  background: #fff;
  border-left: 1px solid var(--border);
  z-index: 2000;
  padding: 80px 28px 36px;
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.nav-drawer.open { right: 0; }

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}

.nav-drawer-overlay.open { opacity: 1; pointer-events: all; }

.nav-drawer a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer a:hover { color: var(--accent); padding-left: 6px; }

.nav-drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-drawer-close:hover { color: var(--accent); border-color: var(--accent-border); }
.nav-drawer-close svg { width: 17px; height: 17px; }

.nav-drawer-cta { margin-top: 20px; }
.nav-drawer-cta .btn { width: 100%; justify-content: center; }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  z-index: 500;
  border: none;
}

.scroll-top.visible { transform: translateY(0); opacity: 1; }
.scroll-top:hover   { background: var(--accent-hover); transform: translateY(-3px); }
.scroll-top svg     { width: 19px; height: 19px; }

/* === UTILS === */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }

/* === WHY US PHOTO CARD === */
.why-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}

.why-photo-wrap > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-photo-float-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.why-photo-float-badge svg {
  width: 30px; height: 30px;
  color: var(--accent);
  flex-shrink: 0;
}

.why-photo-float-badge strong {
  display: block;
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.why-photo-float-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.why-photo-float-stats {
  position: absolute;
  top: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-stat-pill {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  min-width: 88px;
}

.why-stat-pill .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.why-stat-pill .lbl {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 3px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-content-wrap { padding: 120px 40px 90px; }
  .why-us-grid      { grid-template-columns: 1fr; gap: 48px; }
  .why-photo-wrap   { aspect-ratio: 16/9; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-section-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-section:nth-child(even) .service-section-inner { direction: ltr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

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

  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle  { display: flex; }

  .hero-content-wrap { padding: 108px 18px 80px; }
  .hero-headline { font-size: clamp(2.1rem, 7.5vw, 3rem); }
  .hero-actions  { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-arrow { display: none; }

  .stats-bar-inner  { grid-template-columns: repeat(2, 1fr); }
  .services-header  { flex-direction: column; align-items: flex-start; }
  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid       { grid-template-columns: repeat(2, 1fr); }
  .usp-grid         { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .process-steps::before { display: none; }

  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row         { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 18px; }
  .contact-info-card { padding: 26px 18px; }
  .values-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .trust-bar-inner  { flex-direction: column; align-items: flex-start; gap: 14px; }
  .areas-grid       { grid-template-columns: 1fr; }
  .process-steps    { grid-template-columns: 1fr; }
  .about-metric-row { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner  { grid-template-columns: 1fr 1fr; }
  .stat-item        { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .values-grid      { grid-template-columns: 1fr; }
}
