/* =========================================================
   GUSTO REKLAMCILIK — Brand Stylesheet
   Brand palette derived from logo (orange + warm gray).
   ========================================================= */

:root {
  --orange: #DC7828;
  --orange-light: #E89146;
  --orange-dark: #B85F18;
  --orange-soft: rgba(220, 120, 40, 0.08);
  --gray-900: #1F1F1F;
  --gray-800: #2F2F2F;
  --gray-700: #555555;
  --gray-500: #787878;
  --gray-300: #BFBFBF;
  --gray-200: #E5E5E5;
  --gray-100: #F4F4F4;
  --gray-50:  #FAFAFA;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1240px;
  --font-head: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white) !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--orange) !important;
  border: 2px solid var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white) !important; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav .has-dropdown {
  position: relative;
}
.main-nav .has-dropdown .caret {
  font-size: .65em;
  margin-left: 2px;
  display: inline-block;
  transition: transform .2s;
}
.main-nav .has-dropdown:hover .caret { transform: rotate(180deg); }
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 200;
  flex-direction: column;
  gap: 0;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
  display: flex;
}
.main-nav .dropdown li { width: 100%; }
.main-nav .dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: none !important;
  text-transform: none;
  letter-spacing: 0;
  border-left: 3px solid transparent;
  transition: all .15s;
}
.main-nav .dropdown a:hover,
.main-nav .dropdown a:focus {
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-left-color: var(--orange);
}
.main-nav .dropdown a strong {
  font-weight: 700;
  color: var(--gray-900);
}
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lang-switch {
  display: flex;
  gap: 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
}
.lang-switch a {
  padding: 6px 10px;
  color: var(--gray-500);
  text-transform: uppercase;
  border-radius: var(--radius);
}
.lang-switch a.active {
  color: var(--white);
  background: var(--orange);
}
.lang-switch a:hover:not(.active) { color: var(--orange); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray-800);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  color: var(--white);
  background: url('../images/hero/gusto-kapak.png') center 25% / cover no-repeat;
  background-color: var(--gray-900);
}
.hero .container { padding: 0; max-width: none; }
.hero-content {
  position: absolute;
  right: 40px;
  bottom: 40px;
  max-width: 360px;
  text-align: right;
}
.hero-content p {
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 24px;
}
.hero-actions {
  justify-content: flex-end;
}
.hero h1 {
  color: var(--white);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: .3em;
}
.hero h1 strong { color: var(--orange-light); font-weight: 700; }
.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  background: linear-gradient(110deg, var(--gray-900), var(--gray-800));
  color: var(--white);
  padding: 45px 0 35px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--orange);
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 8px;
}
.breadcrumb {
  font-size: .9rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--orange-light); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.section-alt { background: var(--gray-50); }
.section-intro { padding: 40px 0 10px; }
.page-intro {
  font-size: 1.2rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--gray-700);
  line-height: 1.6;
}
.hero-statement {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--gray-900);
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 { margin-bottom: 14px; }
.section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}
.section-title p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray-700);
  font-size: 1.05rem;
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---------- Service card ---------- */
.service-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 50%;
  margin-bottom: 18px;
  font-size: 1.5rem;
}
.service-card h3 { color: var(--gray-900); margin-bottom: 10px; }
.service-card p { color: var(--gray-700); margin: 0; font-size: .95rem; }

/* ---------- Process steps ---------- */
.process-step {
  position: relative;
  padding: 32px 24px 32px 90px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.process-step .step-num {
  position: absolute;
  left: 24px; top: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.process-step h3 { margin-bottom: 8px; }

/* ---------- Project / reference cards ---------- */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-900);
  aspect-ratio: 4 / 3;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.project-card:hover img { transform: scale(1.05); }
.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
}
.project-card .overlay h4 {
  color: var(--white);
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  line-height: 1.25;
}
.project-card .overlay span {
  font-size: .85rem;
  color: var(--orange-light);
  font-family: var(--font-head);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---------- Client logos ---------- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.client-cell {
  background: var(--white);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gray-700);
  font-size: .95rem;
  text-align: center;
  transition: box-shadow .25s;
  position: relative;
}
/* Uniform-sized logos: fixed height keeps every logo visually equal,
   regardless of source aspect ratio. Width follows naturally. */
.client-cell img {
  height: 56px;
  width: auto;
  max-width: 75%;
  object-fit: contain;
}
.client-cell.logo-lg img {
  /* Logos whose visible content is smaller than the canvas — display bigger */
  height: 80px;
  max-width: 88%;
}
.client-cell:hover {
  box-shadow: inset 0 0 0 2px var(--orange);
  z-index: 1;
}

/* ---------- Trust strip (below hero) ---------- */
.trust-strip {
  background: var(--gray-900);
  color: var(--white);
  padding: 22px 0;
  border-bottom: 3px solid var(--orange);
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 130px;
  padding: 6px 8px;
}
.trust-item strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
}
.trust-item span {
  margin-top: 6px;
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 700px) {
  .trust-strip .container { gap: 8px; }
  .trust-item { min-width: 28%; }
  .trust-item strong { font-size: 1.3rem; }
  .trust-item span { font-size: .7rem; }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--gray-900);
  color: var(--white);
  padding: 35px 0;
}
.stats .grid { gap: 20px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.8);
}

/* ---------- About / split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split h2 { margin-bottom: 18px; }

/* ---------- Industries ---------- */
.industry-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.industry-pill {
  position: relative;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--gray-800);
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.industry-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
  transition: background .25s;
}
.industry-pill span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .01em;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.industry-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.industry-pill:hover::before {
  background: linear-gradient(180deg, rgba(220,120,40,0.25) 0%, rgba(184,95,24,0.85) 100%);
}

/* ---------- Factory page ---------- */
.factory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.factory-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.factory-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform .4s ease, filter .35s ease;
}
.factory-photo:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.factory-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.factory-bullets li {
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--gray-800);
  font-size: .95rem;
}
.section-alt .factory-bullets li { background: var(--white); }
@media (max-width: 1024px) {
  .factory-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .factory-grid { grid-template-columns: 1fr; }
}

/* ---------- Service detail cards (services page) ---------- */
.service-detail-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all .25s;
  color: var(--gray-800) !important;
}
.service-detail-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--gray-900) !important;
}
.service-detail-card h3 {
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-detail-card p {
  font-size: .92rem;
  color: var(--gray-700);
  margin-bottom: 14px;
  line-height: 1.55;
}
.service-detail-card .detail-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Insight cards (insights index) ---------- */
.insight-grid { gap: 24px; }
.insight-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: all .25s;
  color: var(--gray-800) !important;
}
.insight-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.insight-meta {
  font-family: var(--font-head);
  font-size: .78rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
.insight-card h3 {
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.insight-card p {
  font-size: .95rem;
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.5;
}
.insight-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Article (insights) ---------- */
.article-meta {
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: .82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.article-body { padding: 60px 0 80px; }
.article-body .container { max-width: 820px; }
.article-subtitle {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--orange);
  margin-bottom: 24px;
}
.article-lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray-800);
  margin-bottom: 36px;
}
.article-body h2 {
  font-size: 1.65rem;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.article-body p { font-size: 1.02rem; line-height: 1.75; margin-bottom: 18px; }
.tldr-box {
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin: 36px 0;
}
.tldr-box h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tldr-box ul { margin: 0; padding-left: 22px; }
.tldr-box li { margin-bottom: 8px; line-height: 1.55; color: var(--gray-800); }
.table-wrap { overflow-x: auto; margin: 16px 0 36px; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.comparison-table th {
  background: var(--gray-900);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.comparison-table th:nth-child(2) { background: var(--orange); }
.comparison-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--gray-200);
  vertical-align: top;
}
.comparison-table tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table td:first-child { font-weight: 600; color: var(--gray-900); }
.article-cta {
  margin-top: 56px;
  padding: 36px 40px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta h3 { color: var(--white); margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.85); margin-bottom: 22px; }

/* ---------- Project category cards (references) ---------- */
.project-cat-card {
  cursor: pointer;
  position: relative;
}
.project-cat-card::after {
  content: '🔍';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}
.project-cat-card:hover::after { opacity: 1; }
.project-cat-card .img-count { display: none; }
/* Stronger dark gradient at bottom so the white title sits legibly */
.project-cat-card .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0) 100%);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-stage {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 1010;
  transition: background .2s;
}
.lightbox-close:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.lightbox-arrow:hover { background: var(--orange); border-color: var(--orange); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  margin-top: 18px;
  color: #fff;
  font-family: var(--font-head);
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox-caption #lightbox-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.lightbox-counter {
  font-size: .9rem;
  color: var(--orange-light);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lightbox-thumbs {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.lightbox-thumbs img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  opacity: .5;
  border: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
}
.lightbox-thumbs img:hover { opacity: .85; }
.lightbox-thumbs img.active {
  opacity: 1;
  border-color: var(--orange);
}
@media (max-width: 700px) {
  .lightbox-stage { height: 55vh; }
  .lightbox-arrow { width: 44px; height: 44px; font-size: 1.5rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-thumbs img { width: 54px; height: 40px; }
}

/* ---------- FAQ list (landing pages) ---------- */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 12px;
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-left: 4px solid var(--orange); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--gray-900);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--orange);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  color: var(--gray-700);
  line-height: 1.65;
}

/* ---------- Contact form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h3 { color: var(--gray-900); margin-top: 30px; margin-bottom: 8px; }
.contact-info p, .contact-info a { color: var(--gray-700); font-size: 1rem; }
.contact-info p:first-of-type { margin-top: 0; }

.contact-form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.map-wrap iframe { display: block; width: 100%; min-height: 420px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-soft);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(110deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 640px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-banner .btn {
  background: var(--white);
  color: var(--orange) !important;
}
.cta-banner .btn:hover { background: var(--gray-100); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: .95rem; }
.footer-col a:hover { color: var(--orange-light); }
.footer-col img { height: 48px; margin-bottom: 16px; border-radius: 8px; }
.footer-col p { font-size: .92rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
  .client-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 20px 24px;
    border-top: 1px solid var(--gray-200);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 16px; align-items: stretch; }
  .main-nav .dropdown {
    display: block;
    position: static;
    border: none;
    border-top: 1px solid var(--gray-200);
    box-shadow: none;
    border-radius: 0;
    padding: 6px 0 6px 18px;
    min-width: 0;
  }
  .main-nav .has-dropdown .caret { display: none; }
  .menu-toggle { display: block; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .split { grid-template-columns: 1fr; gap: 30px; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 460px; }
  .page-header { padding: 60px 0 50px; }
}
