/* ===================================================================
   TopoGraf - Studio Topografike
   main.css — single stylesheet, mobile-first
   =================================================================== */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
main { padding-top: var(--nav-h); }
main:has(.hero) { padding-top: 0; }

/* Accessibility focus styles */
:focus-visible { outline: 3px solid #50A868; outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }

:root {
  --green:          #50A868;
  --green-dark:     #3A8A5A;
  --green-light:    #F0FDF4;
  --green-border:   #BBF7D0;
  --green-text:     #166534;
  --white:          #FFFFFF;
  --bg-soft:        #F9FAFB;
  --border:         #E5E7EB;
  --border-light:   #F3F4F6;
  --text-primary:   #111827;
  --text-secondary: #374151;
  --text-muted:     #6B7280;
  --text-faint:     #9CA3AF;
  --dark-footer:    #111827;
  --wa-green:       #25D366;
  --radius-sm:      9px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.08);
  --shadow-nav:     0 2px 20px rgba(0,0,0,0.08);
  --container:      1260px;
  --nav-h:          68px;
  --nav-h-scroll:   60px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* --- UTILITY --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section-pad { padding: 80px 0; }
@media (max-width: 992px) { .section-pad { padding: 64px 0; } }
@media (max-width: 576px) { .section-pad { padding: 48px 0; } }

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text-primary);
}
h2, .h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--text-primary);
}
h3, .h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-green {
  background: var(--green);
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(80,168,104,0.3); }
/* btn-outline: dark text on light bg by default */
.btn-outline {
  background: transparent;
  color: #111827;
  border: 2px solid #E5E7EB;
  padding: 12px 24px;
  font-size: 14px;
}
.btn-outline:hover { background: #F9FAFB; border-color: var(--green); color: var(--green); }
/* Hero btn-outline = light theme (white bg) */
.hero .btn-outline {
  color: #111827;
  border: 1.5px solid #E5E7EB;
  background: #ffffff;
}
.hero .btn-outline:hover {
  background: #F9FAFB;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
  padding: 12px 24px;
  font-size: 14px;
}
.btn-outline-green:hover { background: var(--green); color: #ffffff; }
.btn-white {
  background: #ffffff;
  color: var(--green);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-white-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.45);
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
}
.btn-white-outline:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header__bar {
  width: 28px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 12px;
}
.section-header__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 8px;
}
.section-header__title { margin-bottom: 12px; }
.section-header__sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  height: var(--nav-h-scroll);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-nav);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__logo { display: flex; flex-direction: column; }
.navbar__logo-text {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.navbar__logo-text span { color: var(--green); }
.navbar__logo-tagline {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}
.navbar__links { display: flex; gap: 28px; }
.navbar__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.navbar__link:hover { color: var(--green); }
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.navbar__link:hover::after { transform: scaleX(1); }
.navbar__cta .btn { font-size: 13px; padding: 10px 22px; border-radius: 9px; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.navbar__hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.navbar__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.navbar__mobile.open { opacity: 1; pointer-events: auto; }
.navbar__mobile a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}
.navbar__mobile a:hover { color: var(--green); }

@media (max-width: 768px) {
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
}

/* ===================================================================
   S2: HERO — FOTO + OVERLAY
   =================================================================== */
.hero {
  position: relative;
  background: #ffffff;
  padding: 96px 0 80px;
  min-height: auto;
}
.hero::before { display: none; content: none; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}
.hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.hero__grid > div:first-child {
  flex: 0 0 580px;
  max-width: 580px;
}
.hero__grid > .hero__stats {
  flex: 0 0 380px;
  max-width: 380px;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .hero__grid { flex-direction: column; gap: 32px; padding: 0 16px; }
  .hero__grid > div:first-child,
  .hero__grid > .hero__stats { flex: 1 1 auto; max-width: 100%; }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 18px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 100px;
  width: fit-content;
}
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(80,168,104,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(80,168,104,0); }
}
.hero__eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  color: #166534;
  text-transform: none;
  letter-spacing: 0;
}
.hero__title {
  color: #111827;
  margin-bottom: 20px;
}
.hero__title .text-green { color: var(--green); }
.hero__sub {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero__wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  display: inline-block;
}

/* Hero Trust (avatars + text) */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__avatars {
  display: flex;
  align-items: center;
}
.hero__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  margin-left: -7px;
  flex-shrink: 0;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__trust-text {
  font-size: 13px;
  color: #6B7280;
}
.hero__trust-text strong { color: #111827; }

/* Hero Stats */
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-card--featured {
  background: var(--green);
}
.stat-card--featured .stat-card__value,
.stat-card--featured .stat-card__label { color: #ffffff; }
.stat-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.stat-card--featured .stat-card__icon { background: rgba(255,255,255,0.20); }
.stat-card:not(.stat-card--featured) .stat-card__icon { background: var(--green-light); }
.stat-card__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-card__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
/* Hero stat-cards: light theme matching design 1 */
.hero .stat-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
}
.hero .stat-card--featured {
  background: #50A868;
  border-color: #50A868;
}
.hero .stat-card--featured .stat-card__value,
.hero .stat-card--featured .stat-card__label { color: #ffffff; }

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-content { padding: 40px 0 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 25, 15, 0.85) 0%,
      rgba(10, 25, 15, 0.70) 100%
    );
  }
}

/* ===================================================================
   S3: TRUST BAND
   =================================================================== */
.trust-band {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}
.trust-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-band__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-band__icon {
  font-size: 18px;
  flex-shrink: 0;
}
.trust-band__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}
.trust-band__sub {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.2;
}
.trust-band__sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-band__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    justify-items: start;
  }
  .trust-band__sep { display: none; }
  .trust-band__item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

/* ===================================================================
   S4: SERVICES
   =================================================================== */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-top: 3px solid var(--green);
  padding: 24px 28px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

@media (max-width: 992px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   S5: VALUES
   =================================================================== */
.values {
  background: var(--white);
  text-align: center;
}
.values__bar {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 48px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.value-item { text-align: center; }
.value-item__icon {
  font-size: 38px;
  margin-bottom: 12px;
}
.value-item__bar {
  width: 36px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin: 0 auto 13px;
}
.value-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.value-item__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .values__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===================================================================
   S6: PROCESS
   =================================================================== */
.process {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.process__steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.process__step {
  flex: 1;
  text-align: center;
  position: relative;
}
.process__step::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: rgba(80,168,104,0.3);
  border-style: dashed;
}
.process__step:last-child::after { display: none; }
.process__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
}
.process__step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.process__step-desc {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 140px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .process__steps {
    flex-direction: column;
    gap: 24px;
    padding-left: 40px;
  }
  .process__step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .process__step::after {
    top: 36px;
    left: 18px;
    right: auto;
    bottom: -24px;
    width: 1px;
    height: calc(100% + 24px);
  }
  .process__step:last-child::after { display: none; }
  .process__num { margin: 0; flex-shrink: 0; }
  .process__step-desc { max-width: none; margin: 0; }
}

/* ===================================================================
   S7: PORTFOLIO
   =================================================================== */
.portfolio {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
}
.portfolio__filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.portfolio__filter {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  cursor: pointer;
  transition: all 0.2s;
}
.portfolio__filter.active,
.portfolio__filter:hover {
  background: var(--green);
  color: #ffffff;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.project-card__img {
  aspect-ratio: 16/10;
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  overflow: hidden;
}
.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__body { padding: 16px; }
.project-card__cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 4px;
}
.project-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.project-card__meta {
  font-size: 12px;
  color: var(--text-faint);
}
.portfolio__more {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 992px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .portfolio__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   S8: ABOUT TEASER
   =================================================================== */
.about-teaser { background: #ffffff; padding: 80px 0; }
.about-teaser::before { display: none; content: none; }
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-teaser__left {}
.about-teaser__year {
  font-size: 80px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -4px;
  line-height: 1;
}
.about-teaser__year-sub {
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.about-teaser__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-teaser__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-teaser__tag {
  background: var(--green-light);
  border: 1px solid var(--green-border);
  color: var(--green-text);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}
.about-teaser__img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-teaser__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-teaser__year { font-size: 60px; }
}

/* ===================================================================
   S9: TESTIMONIALS
   =================================================================== */
.testimonials { background: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.testimonial-card__stars {
  color: var(--green);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-card__city {
  font-size: 12px;
  color: var(--text-faint);
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   S10: BLOG
   =================================================================== */
.blog-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.blog-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-light), #DCFCE7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body { padding: 20px; }
.blog-card__cat {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-text);
  border: 1px solid var(--green-border);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.blog-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.blog-card__link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}
.blog__more {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 992px) {
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .blog__grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   DIASPORA BAND
   =================================================================== */
.diaspora-band {
  background: linear-gradient(135deg, #0C1F13 0%, #1A3A25 50%, #0F2818 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.diaspora-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(80,168,104,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.diaspora-band__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.diaspora-band__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  background: rgba(80,168,104,0.12);
  border: 1px solid rgba(80,168,104,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.diaspora-band__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #ffffff;
}
.diaspora-band__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.diaspora-band__sub strong { color: #ffffff; }
.diaspora-band__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.diaspora-band__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.diaspora-band__feature-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.diaspora-band__feature strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.diaspora-band__feature span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.diaspora-band__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.diaspora-band__actions .btn-outline-green {
  color: #ffffff;
  border-color: rgba(255,255,255,0.4);
}
.diaspora-band__actions .btn-outline-green:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #ffffff;
}
.diaspora-band__countries {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.diaspora-band__countries span[title] {
  font-size: 18px;
  cursor: default;
}
.diaspora-band__process {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}
.diaspora-band__process-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.diaspora-band__steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.diaspora-band__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.diaspora-band__step-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diaspora-band__step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.diaspora-band__step span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 992px) {
  .diaspora-band__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .diaspora-band__features {
    grid-template-columns: 1fr;
  }
  .diaspora-band__actions {
    flex-direction: column;
  }
  .diaspora-band__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================================
   S11: CTA BAND
   =================================================================== */
.cta-band {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
}
.cta-band__title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.cta-band__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cta-band__actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-band__actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* ===================================================================
   S12: FOOTER
   =================================================================== */
.footer {
  background: var(--dark-footer);
  padding: 64px 0 32px;
  color: var(--text-faint);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 2px;
}
.footer__brand-name span { color: var(--green); }
.footer__brand-tagline {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer__brand-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer__contact a {
  display: block;
  margin-bottom: 4px;
}
.footer__contact-phone {
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
}
.footer__contact-wa {
  color: var(--green);
  font-size: 13px;
}
.footer__contact-loc {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__link {
  font-size: 12px;
  color: var(--text-faint);
  transition: color 0.2s;
}
a.footer__link:hover { color: var(--green); }
.footer__bottom {
  border-top: 1px solid #1F2937;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 13px;
  color: #4B5563;
}
.footer__badges {
  display: flex;
  gap: 12px;
}
.footer__badge {
  font-size: 13px;
  color: #4B5563;
}

@media (max-width: 992px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===================================================================
   WHATSAPP FLOAT
   =================================================================== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 997;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  animation: wa-pulse 2s ease infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}

@media (max-width: 768px) {
  .wa-float {
    bottom: 76px;
    right: 16px;
  }
}

/* ===================================================================
   MOBILE STICKY BAR
   =================================================================== */
.mobile-sticky {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #ffffff;
    border-top: 1px solid var(--border);
    z-index: 998;
  }
  .mobile-sticky__inner {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    gap: 10px;
    height: 100%;
  }
  .mobile-sticky .btn {
    flex: 1;
    height: 44px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
  }
  .mobile-sticky .btn-wa {
    background: var(--wa-green);
    color: #ffffff;
  }
  body { padding-bottom: 56px; }
}

/* Desktop: hide mobile padding */
@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

/* ===================================================================
   DIASPORA / EMIGRANTË PAGE
   =================================================================== */

/* Diaspora Hero */
.diaspora-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #0A190F 0%, #122A1A 50%, #0A190F 100%);
  position: relative;
  overflow: hidden;
}
.diaspora-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,168,104,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.diaspora-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.diaspora-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(80,168,104,0.15);
  border: 1px solid rgba(80,168,104,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.diaspora-hero__flag { font-size: 18px; }
.diaspora-hero__title {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 20px;
}
.diaspora-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.diaspora-hero__sub strong { color: #ffffff; }
.diaspora-hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.diaspora-hero__countries {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.diaspora-hero__flags {
  display: flex;
  gap: 6px;
  font-size: 20px;
}

/* Diaspora Hero Cards */
.diaspora-hero__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.diaspora-hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.diaspora-hero__card--featured {
  background: rgba(80,168,104,0.15);
  border-color: rgba(80,168,104,0.3);
}
.diaspora-hero__card-icon { font-size: 24px; margin-bottom: 8px; }
.diaspora-hero__card-stat {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -1px;
}
.diaspora-hero__card--featured .diaspora-hero__card-stat { color: var(--green); }
.diaspora-hero__card-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .diaspora-hero { padding: 80px 0 48px; }
  .diaspora-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .diaspora-hero__actions { flex-direction: column; }
  .diaspora-hero__actions .btn { width: 100%; justify-content: center; }
  .diaspora-hero__countries { flex-wrap: wrap; }
}

/* Diaspora Services Cards */
.diaspora-services { background: var(--white); }
.diaspora-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.diaspora-svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.25s;
  position: relative;
}
.diaspora-svc-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.diaspora-svc-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.diaspora-svc-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.diaspora-svc-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.diaspora-svc-card__price {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.diaspora-svc-card__price strong {
  font-size: 20px;
  color: var(--green);
  font-weight: 800;
}
.diaspora-svc-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

@media (max-width: 992px) {
  .diaspora-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .diaspora-services__grid { grid-template-columns: 1fr; }
}

/* Diaspora Process */
.diaspora-process {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.diaspora-process__steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diaspora-process__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.diaspora-process__step:last-child { border-bottom: none; }
.diaspora-process__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diaspora-process__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.diaspora-process__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Diaspora Pricing */
.diaspora-pricing { background: var(--white); }
.diaspora-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.diaspora-pricing__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all 0.25s;
}
.diaspora-pricing__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.diaspora-pricing__card--popular {
  border-color: var(--green);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(80,168,104,0.12);
}
.diaspora-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.diaspora-pricing__service {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  margin-top: 8px;
}
.diaspora-pricing__price {
  font-size: 36px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.diaspora-pricing__price span {
  font-size: 20px;
  font-weight: 600;
}
.diaspora-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}
.diaspora-pricing__features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  padding-left: 24px;
  position: relative;
}
.diaspora-pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.diaspora-pricing__features li:last-child { border-bottom: none; }
.diaspora-pricing__card .btn { width: 100%; justify-content: center; }

@media (max-width: 992px) {
  .diaspora-pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* Diaspora Prokura Section */
.diaspora-prokura { background: var(--bg-soft); border-top: 1px solid var(--border-light); }
.diaspora-prokura__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.diaspora-prokura__options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diaspora-prokura__option {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.diaspora-prokura__option h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.diaspora-prokura__option p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.diaspora-prokura__docs {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.diaspora-prokura__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diaspora-prokura__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.diaspora-prokura__check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.diaspora-prokura__list strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 600;
}
.diaspora-prokura__list span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .diaspora-prokura__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Diaspora Testimonials */
.diaspora-testimonials { background: var(--white); }

/* Diaspora CTA */
.diaspora-cta {
  background: linear-gradient(135deg, #0A190F 0%, #1A3A25 100%);
  padding: 80px 0;
}
.diaspora-cta__inner { text-align: center; }
.diaspora-cta__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.diaspora-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 28px;
}
.diaspora-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.diaspora-cta__note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.diaspora-articles { background: var(--bg-soft); border-top: 1px solid var(--border-light); }

/* Homepage Diaspora Banner */
.diaspora-banner {
  background: linear-gradient(135deg, #0A190F 0%, #1A3A25 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.diaspora-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,168,104,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.diaspora-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.diaspora-banner__flags {
  display: flex;
  gap: 6px;
  font-size: 20px;
  margin-bottom: 12px;
}
.diaspora-banner__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.diaspora-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
}
.diaspora-banner__sub strong { color: #ffffff; }
.diaspora-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .diaspora-banner__inner { grid-template-columns: 1fr; gap: 24px; }
  .diaspora-banner__actions { flex-direction: row; flex-wrap: wrap; }
  .diaspora-banner__actions .btn { flex: 1; justify-content: center; min-width: 140px; }
}

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
/* Reveal handled by JS - no CSS animation to avoid rendering issues */

/* ===================================================================
   FORMS (contact page)
   =================================================================== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(80,168,104,0.1);
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #EF4444;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.btn.loading { opacity: 0.6; pointer-events: none; }

/* ===================================================================
   SERVICE DETAIL PAGE
   =================================================================== */
.service-hero [style*="grid-template-columns:1fr 1fr"] {
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  /* Hero 2-col → 1-col */
  .service-hero [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Article + sidebar → 1-col */
  [style*="grid-template-columns:1fr 340px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Contact page 3-col cards → 1-col */
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  [style*="grid-template-columns:1fr 340px"] {
    grid-template-columns: 1fr 280px !important;
    gap: 32px !important;
  }
}

/* FAQ accordion */
.faq-item__q { font-family: inherit; color: var(--text-primary); }
.faq-item__q:hover { background: var(--bg-soft); }
.faq-item.open .faq-item__a { max-height: 500px; }
.faq-item.open .faq-item__q span { transform: rotate(45deg); }

/* Breadcrumb */
.breadcrumb { padding: 16px 0; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.breadcrumb__list { display: flex; gap: 0; list-style: none; font-size: 0.85rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb__sep { padding: 0 8px; }
.breadcrumb__item a { color: var(--green); text-decoration: none; }
.breadcrumb__item a:hover { text-decoration: underline; }

/* Article content typography */
.article article h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin: 32px 0 16px; }
.article article h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin: 24px 0 12px; }
.article article p { margin-bottom: 16px; }
.article article ul, .article article ol { margin: 16px 0; padding-left: 24px; }
.article article li { margin-bottom: 8px; }
.article article img { max-width: 100%; height: auto; border-radius: 12px; margin: 24px 0; }

/* ===================================================================
   RESPONSIVE GAPS
   =================================================================== */
@media (max-width: 992px) {
  .services__grid,
  .portfolio__grid,
  .blog__grid,
  .testimonials__grid { gap: 16px; }
}
@media (max-width: 576px) {
  .services__grid,
  .portfolio__grid,
  .blog__grid,
  .testimonials__grid { gap: 12px; }
}

/* Project placeholder with topographic pattern */
.project-placeholder {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(80,168,104,0.08) 20px, rgba(80,168,104,0.08) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(80,168,104,0.08) 20px, rgba(80,168,104,0.08) 21px),
    linear-gradient(135deg, #F0FDF4, #E8F5E9);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  font-size: 13px;
  font-weight: 700;
  color: #166534;
  letter-spacing: 1.5px;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 48px;
  margin-bottom: 32px;
}
.faq-section h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  font-weight: 800;
}
.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: #111827;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: #50A868;
  font-weight: 700;
  transition: transform 0.2s;
  margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
  margin: 0;
}
