/* ================================================================
   HOME PAGE – KI Schulungen Stuttgart
   Redesign 2026 – Desktop-first, hell & modern
   ================================================================ */

:root {
  --glow-blue: rgba(0, 126, 190, 0.35);
  --blue-gradient: linear-gradient(135deg, #007ebe, #1a9fe0);
  --surface-glass: rgba(255, 255, 255, 0.03);
  --border-glow: rgba(0, 126, 190, 0.15);
}

/* ----------------------------------------------------------------
   SECTION BASE
   ---------------------------------------------------------------- */

.section {
  position: relative;
  width: 100%;
}

.section__inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section--white { background: var(--bg-white); }
.section--light { background: #f7f8fa; }
.section--dark  { background: #1a1a1a; color: var(--white); }
.section--blue  { background: var(--primary); color: var(--white); }

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

.section--blue h2 { color: var(--white); }

/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header:not(.scrolled) .navbar {
  background: transparent;
}

.site-header:not(.scrolled) .topbar {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.site-header:not(.scrolled) .topbar:hover {
  opacity: 1;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .topbar { display: none; }
.site-header.scrolled .navbar__link { color: var(--text-body); }
.site-header.scrolled .navbar__link:hover { color: var(--text-primary); }
.site-header.scrolled .logo-text { color: var(--text-primary); }

/* Top Bar */
.topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-3) var(--sp-6);
  max-width: var(--content-width);
  margin: 0 auto;
  font-size: 14px;
  color: var(--white-60);
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--white-60);
  transition: color var(--duration) var(--ease);
}

.topbar a:hover { color: var(--white); }

.topbar__divider {
  width: 1px;
  height: 16px;
  background: var(--white-20);
}

.topbar__callback {
  font-weight: 500;
  color: var(--white) !important;
  padding: 4px 12px;
  border: 1px solid var(--white-20);
  border-radius: var(--radius-full);
  font-size: 13px;
}

.topbar__callback:hover {
  background: var(--white-08);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-4) var(--sp-6);
  max-width: var(--content-width);
  margin: 0 auto;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-mark svg { width: 20px; height: 20px; }

.logo-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.navbar__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--white-60);
  transition: color var(--duration) var(--ease);
  position: relative;
}

.navbar__link:hover { color: var(--white); }

/* Dropdown wrapper */
.navbar__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Button reset for dropdown trigger */
button.navbar__link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  line-height: inherit;
}

/* Dropdown trigger with chevron */
.navbar__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navbar__link--dropdown::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 200ms var(--ease);
}

.navbar__dropdown.is-open .navbar__link--dropdown::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Active nav state */
.navbar__link--active {
  color: var(--white);
}

.site-header.scrolled .navbar__link--active {
  color: var(--primary);
}

/* Dropdown Panel */
.navbar__dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 1000;
}

.navbar__dropdown.is-open .navbar__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Dropdown Items */
.navbar__dropdown-item {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 150ms ease;
}

.navbar__dropdown-item:hover {
  background: #f5f5f5;
  text-decoration: none;
}

.navbar__dropdown-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #171717;
  margin-bottom: 2px;
}

.navbar__dropdown-desc {
  display: block;
  font-size: 12px;
  color: #737373;
  line-height: 1.4;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.navbar__cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--duration) var(--ease);
}

.scrolled .navbar__hamburger span { background: var(--text-primary); }

.site-header.scrolled .navbar__cta {
  background: var(--primary);
  color: var(--white);
}

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */

.hero {
  background: #1a1a1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: -10px;
  background-image: linear-gradient(rgba(30, 30, 30, 0.45), rgba(30, 30, 30, 0.55)), url('../assets/images/hero/hero-bg.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  animation: heroZoom 18s ease-out forwards;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 126, 190, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(0, 126, 190, 0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.5;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

.hero__content {
  max-width: 760px;
  width: 100%;
  text-align: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.03em;
  animation: heroFadeUp 0.7s ease-out 0.1s both;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  animation: heroFadeUp 0.7s ease-out 0.25s both;
}


.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  animation: heroScrollBounce 2s ease-in-out 2s infinite;
  z-index: 1;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}



/* ----------------------------------------------------------------
   PORTFOLIO / LEISTUNGEN
   ---------------------------------------------------------------- */

.portfolio {
  padding: 120px 0;
  background: var(--bg-white);
  position: relative;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 126, 190, 0.2), transparent);
}

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

.portfolio__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
}

.portfolio__title {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
}

.portfolio__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 560px;
  margin: var(--sp-4) auto 0;
}

/* Portfolio Selector */
.portfolio__selector {
  max-width: 100%;
  margin-bottom: var(--sp-12);
}

.portfolio__tabs {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.portfolio__tab {
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

/* Säulen-Farbzuordnung */
.portfolio__tab[data-target="schulungen"] { --tab-accent: var(--color-schulungen); }
.portfolio__tab[data-target="beratung"]   { --tab-accent: var(--color-beratung); }
.portfolio__tab[data-target="projekte"]   { --tab-accent: var(--color-projekte); }

.portfolio__tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--tab-accent, var(--primary));
  transition: transform 0.3s ease;
}

.portfolio__tab.active::after {
  transform: translateX(-50%) scaleX(1);
}

.portfolio__tab:hover {
  background: color-mix(in srgb, var(--tab-accent, var(--primary)) 5%, transparent);
}

.portfolio__tab.active {
  background: color-mix(in srgb, var(--tab-accent, var(--primary)) 10%, white);
  box-shadow: 0 4px 24px color-mix(in srgb, var(--tab-accent, var(--primary)) 10%, transparent);
  border-color: color-mix(in srgb, var(--tab-accent, var(--primary)) 30%, var(--border-subtle));
}

.portfolio__tab-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio__tab:hover .portfolio__tab-logo {
  transform: scale(1.1);
}

.portfolio__tab.active .portfolio__tab-logo {
  transform: scale(1.15);
}

.portfolio__tab-logo img {
  width: 96px;
  height: auto;
}

/* Logo-Einfärbung pro Säule (Beratung=Lila, Projekte=Türkis, Schulungen=default blau) */
.portfolio__tab-logo--beratung img {
  filter: hue-rotate(40deg) saturate(0.5) brightness(0.55);
}

.portfolio__tab-logo--projekte img {
  filter: hue-rotate(-25deg) saturate(1.1) brightness(0.8);
}

.portfolio__tab-label {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-body);
  transition: color 0.3s ease;
}

.portfolio__tab.active .portfolio__tab-label {
  color: var(--text-primary);
}

/* Panels */
.portfolio__panels {
  position: relative;
  min-height: 320px;
}

.portfolio__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.portfolio__panel.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.portfolio__panel-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--sp-12);
  align-items: center;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef4f8 100%);
  border-radius: var(--radius-2xl);
  padding: var(--sp-12);
  border: 1px solid rgba(0, 126, 190, 0.08);
}

#panel-beratung .portfolio__panel-inner {
  background: linear-gradient(135deg, #f7f8fa 0%, #eee9f4 100%);
  border-color: rgba(45, 43, 109, 0.08);
}

#panel-projekte .portfolio__panel-inner {
  background: linear-gradient(135deg, #f7f8fa 0%, #e8f5f4 100%);
  border-color: rgba(0, 168, 157, 0.08);
}

/* CTA-Farbe pro Säule */
#panel-beratung .portfolio__panel-cta { color: var(--color-beratung); }
#panel-beratung .portfolio__panel-cta::after { background: var(--color-beratung); }
#panel-projekte .portfolio__panel-cta { color: var(--color-projekte); }
#panel-projekte .portfolio__panel-cta::after { background: var(--color-projekte); }

/* Checkmark-Farbe pro Säule */
#panel-beratung .portfolio__features li::before {
  background-color: #eee9f4;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%232d2b6d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

#panel-projekte .portfolio__features li::before {
  background-color: #e8f5f4;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%2300a89d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.portfolio__panel-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.025em;
}

.portfolio__panel-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: var(--sp-6);
}

.portfolio__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
  padding: 0;
}

.portfolio__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
}

.portfolio__features li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 3L4.5 8.5L2 6' stroke='%23007ebe' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.portfolio__panel-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}

.portfolio__panel-cta:hover {
  gap: var(--sp-3);
}

.portfolio__panel-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.portfolio__panel-cta {
  position: relative;
}

.portfolio__panel-cta:hover::after {
  width: 100%;
}

/* Panel visual — grosses Logo als Deko */
.portfolio__panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio__panel-logo {
  width: 160px;
  height: auto;
  opacity: 0.15;
}

/* Deko-K Einfärbung pro Säule */
#panel-beratung .portfolio__panel-logo {
  filter: hue-rotate(40deg) saturate(0.5) brightness(0.55);
}

#panel-projekte .portfolio__panel-logo {
  filter: hue-rotate(-25deg) saturate(1.1) brightness(0.8);
}

/* Readiness Banner */
.readiness-banner {
  background: linear-gradient(135deg, #141414, #1a1a1a, #1e2a32);
  border-radius: 20px;
  padding: var(--sp-12) var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.readiness-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 126, 190, 0.12), transparent 70%);
  pointer-events: none;
}

.readiness-banner__content {
  max-width: 700px;
}

.readiness-banner__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.025em;
}

.readiness-banner__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.readiness-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
}

.readiness-banner__cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   UEBER UNS
   ---------------------------------------------------------------- */

.about {
  padding: 120px 0;
  background: #f7f8fa;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
}

.about__title {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-6);
  color: #1a1a1a;
}

.about__text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: var(--sp-8);
}

/* Stats Grid with Counters */
.about__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.about__stat-item {
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 126, 190, 0.1);
  border-color: rgba(0, 126, 190, 0.15);
}

.about__stat-number {
  display: inline;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: #007ebe;
  line-height: 1;
}

.about__stat-suffix {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: #007ebe;
}

.about__stat-label {
  display: block;
  font-size: 14px;
  color: #555;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #007ebe;
  color: white;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(0, 126, 190, 0.25);
}

.about__cta:hover {
  background: #1a9fe0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 126, 190, 0.35);
}

.about__cta svg {
  transition: transform 0.3s;
}

.about__cta:hover svg {
  transform: translateX(3px);
}

/* ----------------------------------------------------------------
   LOGO BAR / TRUST
   ---------------------------------------------------------------- */

.trust {
  padding: 64px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.trust .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.trust__marquee {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.trust__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 56px;
}

.trust__logo {
  height: 36px;
  width: auto;
  max-width: 130px;
  opacity: 1;
  filter: none !important;
  -webkit-filter: none !important;
  transition: transform 0.3s ease;
  object-fit: contain;
  flex-shrink: 0;
}

.trust__logo:hover {
  transform: scale(1.05);
}

.trust__logo[alt="Verdi"] {
  height: 46px;
}

.trust__logo--samsung {
  height: 44px;
  max-width: 160px;
}

/* ----------------------------------------------------------------
   TESTIMONIAL
   ---------------------------------------------------------------- */

.testimonial {
  padding: 96px 0;
  background: #f7f8fa;
}

.testimonial__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

.testimonial__header {
  margin-bottom: var(--sp-12);
}

.testimonial__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
  text-align: center;
}

.testimonial__heading {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}

.testimonial__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: var(--sp-8);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007ebe, #1a9fe0);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 16px rgba(0, 126, 190, 0.25);
}

.testimonial__name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
}

.testimonial__role {
  font-size: 16px;
  color: #555;
}

/* Testimonial Carousel */
.testimonial__carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial__slides {
  position: relative;
}

/* Testimonial Card */
.testimonial__card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-white);
  border-radius: 24px;
  padding: 56px 48px 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.testimonial__slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial__slide.is-active {
  display: block;
  opacity: 1;
}

.testimonial__card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(0, 126, 190, 0.1);
  line-height: 1;
  pointer-events: none;
}

/* Carousel Arrows */
.testimonial__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border, #e5e5e5);
  background: var(--bg-white, #fff);
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.testimonial__arrow:hover {
  color: var(--primary, #1288c6);
  border-color: var(--primary, #1288c6);
  box-shadow: 0 2px 8px rgba(0, 126, 190, 0.12);
}

.testimonial__arrow--prev { left: -64px; }
.testimonial__arrow--next { right: -64px; }

/* Carousel Dots */
.testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--sp-8, 32px);
}

.testimonial__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d4d4d4;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.testimonial__dot:hover {
  background: #a3a3a3;
}

.testimonial__dot.is-active {
  background: var(--primary, #1288c6);
  transform: scale(1.2);
}

/* ----------------------------------------------------------------
   TEAM
   ---------------------------------------------------------------- */

.team {
  padding: 120px 0;
  position: relative;
  background-image: linear-gradient(rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.93)), url('../assets/images/backgrounds/blurred-office.png');
  background-size: cover;
  background-position: center;
}

.team::before {
  display: none;
}

.team .section__inner {
  position: relative;
  z-index: 1;
}

.team__header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.team__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
  text-align: center;
}

.team__heading {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1a1a1a;
}

.team__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
  margin: var(--sp-4) auto 0;
  text-align: center;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}

.team-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  text-align: center;
  transition: all var(--duration-slow) var(--ease);
  backdrop-filter: blur(10px);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.team-card:hover .team-card__img {
  transform: scale(1.05);
}

.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-muted);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card__name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: var(--sp-1);
}

.team-card__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Aggregate + Badge row */
.team__bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.team-card--aggregate {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.team-card--aggregate-img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-5);
}

.team-card--aggregate .team-card__name {
  font-size: 28px;
  margin-bottom: var(--sp-2);
  color: #1a1a1a;
}

.team-card--aggregate .team-card__role {
  color: #555;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0;
}

.team-card--badge {
  background: linear-gradient(135deg, rgba(0, 126, 190, 0.08), rgba(0, 126, 190, 0.03));
  border: 1px solid rgba(0, 126, 190, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.team-card--badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 126, 190, 0.06), transparent 70%);
  pointer-events: none;
}

.team-card--badge .badge-icon {
  width: 48px; height: 48px;
  margin-bottom: var(--sp-4);
  color: var(--primary);
}

.team-card--badge .team-card__name {
  color: var(--primary);
  font-size: 22px;
}

.team-card--badge .team-card__role {
  color: #555;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */

.contact {
  padding: 120px 0;
  background: #1a1a1a;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 159, 224, 0.9);
  margin-bottom: var(--sp-4);
}

.contact__heading {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}

.contact__subtext {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--sp-10);
  max-width: 480px;
}

.contact__usps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}

.contact__usp {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.contact__usp-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(0, 126, 190, 0.08);
  border: 1px solid rgba(0, 126, 190, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact__usp:hover .contact__usp-icon-wrap {
  background: rgba(0, 126, 190, 0.15);
  border-color: rgba(0, 126, 190, 0.3);
  transform: scale(1.08);
}

.contact__usp-icon {
  width: 18px;
  height: 18px;
  color: #1a9fe0;
}

.contact__usp strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.contact__usp span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}

.contact__detail-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.contact__detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

a.contact__detail-value {
  transition: color var(--duration) var(--ease);
}

a.contact__detail-value:hover { color: #1a9fe0; }

/* Form */
.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-2xl);
  padding: 48px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

.form__group {
  margin-bottom: var(--sp-5);
}

.form__group:last-of-type { margin-bottom: var(--sp-6); }

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--sp-2);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 15px;
  transition: all var(--duration) var(--ease);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 126, 190, 0.08);
  box-shadow: 0 0 0 3px rgba(0, 126, 190, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

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

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form__select option { background: #1a1a1a; color: var(--white); }

.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.form__checkbox-group:first-of-type {
  margin-top: var(--sp-2);
}

.form__checkbox-group:last-of-type {
  margin-bottom: var(--sp-6);
}

.form__checkbox {
  width: 18px; height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form__checkbox-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  cursor: pointer;
}

.form__checkbox-label a {
  color: var(--primary-accent);
  text-decoration: underline;
}

.form__submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.form__submit:hover {
  background: #1a9fe0;
  box-shadow: 0 4px 12px rgba(0, 126, 190, 0.2);
}

.form__privacy {
  margin-top: var(--sp-4);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  text-align: center;
}

.form__privacy a {
  color: var(--primary-accent);
  text-decoration: underline;
}

.form__honeypot { position: absolute; left: -9999px; opacity: 0; }

/* ----------------------------------------------------------------
   NEWSLETTER CTA
   ---------------------------------------------------------------- */

.newsletter {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a5680, #1288c6);
}

.newsletter__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter__heading {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.newsletter__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1 1 240px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: var(--white);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter__input::placeholder { color: rgba(255, 255, 255, 0.45); }

.newsletter__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

.newsletter__btn {
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.newsletter__btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Checkbox overrides for dark newsletter background */
.newsletter .newsletter__privacy {
  flex-basis: 100%;
  margin-top: var(--sp-1);
  margin-bottom: 0;
}

.newsletter .form-field__checkbox {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.newsletter .form-field__checkbox:checked {
  background-color: var(--white);
  border-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%231288c6' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.newsletter .form-field__checkbox:focus-visible {
  outline-color: rgba(255, 255, 255, 0.6);
}

.newsletter .form-field__checkbox-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.newsletter .form-field__checkbox-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter .form-field__checkbox-text a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */

.footer {
  padding: 60px 0 var(--sp-6);
  background: #1a1a1a;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-top: var(--sp-4);
  max-width: 320px;
}

.footer__ol-logo {
  height: 48px;
  width: auto;
  margin-top: var(--sp-6);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer__ol-logo:hover {
  opacity: 1;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--duration) var(--ease);
}

.footer__link:hover { color: var(--white); }

.footer__social {
  display: flex;
  gap: var(--sp-3);
}

.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration) var(--ease);
}

.footer__social-link:hover {
  background: rgba(0, 126, 190, 0.15);
  border-color: rgba(0, 126, 190, 0.3);
  color: #1a9fe0;
}

.footer__social-link svg { width: 18px; height: 18px; }

.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--sp-8);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hero__title { font-size: 44px; }
  .hero { min-height: 600px; }

  .portfolio__tabs { gap: var(--sp-8); }
  .portfolio__tab-logo { width: 80px; height: 80px; }
  .portfolio__tab-logo img { width: 64px; }
  .portfolio__panel-inner { grid-template-columns: 1fr; }

  .about__inner { grid-template-columns: 1fr; gap: var(--sp-8); }

  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .team__bottom-row { grid-template-columns: 1fr; }

  .contact__inner { grid-template-columns: 1fr; }

  .readiness-banner { flex-direction: column; text-align: center; }

  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }

  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }

  .hero { min-height: 100dvh; padding-top: 100px; padding-bottom: 60px; }
  .hero__title { font-size: clamp(22px, 6vw, 32px); overflow-wrap: anywhere; word-break: break-word; }
  .hero__title br { display: none; }
  .hero__subtitle { font-size: 15px; }
  .hero__inner { padding: 0 var(--sp-6); }
  .hero__content { max-width: 100%; }
  .hero__scroll-hint { bottom: 20px; }

  .portfolio__title,
  .about__title,
  .testimonial__heading,
  .faq-home__heading,
  .team__heading,
  .contact__heading {
    font-size: 32px;
  }

  .newsletter__heading {
    font-size: 24px;
  }

  .testimonial__text { font-size: 20px; }
  .testimonial__card { padding: 40px 24px 36px; }
  .testimonial__arrow--prev { left: -8px; }
  .testimonial__arrow--next { right: -8px; }
  .testimonial__arrow { width: 36px; height: 36px; background: rgba(255,255,255,0.9); }

  .portfolio { padding: 80px 0; }
  .about { padding: 80px 0; }
  .testimonial { padding: 80px 0; }
  .team { padding: 80px 0; border-top: 1px solid rgba(0, 0, 0, 0.06); }
  .spotlight { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .newsletter { padding: 48px 0; }

  .portfolio__tabs { gap: var(--sp-4); }
  .portfolio__tab { padding: var(--sp-3); }
  .portfolio__tab-logo { width: 60px; height: 60px; }
  .portfolio__tab-logo img { width: 48px; }
  .portfolio__tab-label { font-size: 13px; }
  .portfolio__panel-inner { grid-template-columns: 1fr; padding: var(--sp-8); }
  .portfolio__panel-visual { display: none; }

  .about__stats-grid { grid-template-columns: 1fr; }
  .about__stat-item { padding: 20px 16px; }

  .team__header { margin-bottom: var(--sp-8); }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .team-card { padding: var(--sp-4); }
  .team-card__photo { width: 110px; height: 110px; }
  .team-card__name { font-size: 16px; }
  .team-card__role { font-size: 11px; }

  .form__row { grid-template-columns: 1fr; }

  .newsletter__form { flex-direction: column; }

  .footer__top { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer__bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }

  /* Sticky-header offset for anchor sections */
  .portfolio,
  .about,
  .trust,
  .testimonial,
  .spotlight,
  .team,
  .contact,
  .faq-home,
  .newsletter {
    scroll-margin-top: 80px;
  }
}

@media (max-width: 380px) {
  .team__grid { grid-template-columns: 1fr; }
  .team-card { padding: var(--sp-5); }
  .team-card__photo { width: 130px; height: 130px; }
  .team-card__name { font-size: 17px; }
}

/* ----------------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------------- */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cards get stagger from JS, sections get none */
.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ---- Spotlight Section ---- */

.spotlight {
  padding: 120px 0;
  background: #f7f8fa;
}

.spotlight__header {
  margin-bottom: var(--sp-12);
}

.spotlight__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
  text-align: center;
}

.spotlight__heading {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  text-align: center;
}

.spotlight__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.spotlight__card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease);
}

.spotlight__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.spotlight__image-wrap {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.spotlight__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spotlight__card:hover .spotlight__img {
  transform: scale(1.05);
}

.spotlight__body {
  padding: var(--sp-6);
}

.spotlight__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.spotlight__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--sp-4);
}

/* ---- Mobile Menu: is-open State ---- */
@media (max-width: 768px) {
  .navbar__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: var(--sp-6) var(--sp-6) var(--sp-8);
    gap: var(--sp-4);
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }

  /* Mobile Dropdown */
  .navbar__dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar__link--dropdown {
    width: 100%;
    justify-content: space-between;
  }

  .navbar__dropdown-panel {
    position: static;
    transform: none;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease, padding 250ms ease;
  }

  .navbar__dropdown.is-open .navbar__dropdown-panel {
    max-height: 300px;
    transform: none;
    padding: 4px 0 4px 16px;
  }

  .navbar__dropdown-item {
    padding: 8px 12px;
    border-radius: 6px;
  }

  .navbar__dropdown-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
  }

  .navbar__dropdown-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
  }

  .navbar__dropdown-item:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}

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


/* ---- FAQ Section (Home) ---- */

.faq-home {
  padding: 80px 0;
}

.faq-home__header {
  margin-bottom: var(--sp-12);
}

.faq-home__heading {
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  text-align: center;
}

.faq-home .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--narrow-width);
  margin: 0 auto;
}

.faq-home .faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
  box-shadow: none;
}

.faq-home .faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-home .faq-item:hover {
  border-color: var(--border-subtle);
  box-shadow: none;
}

.faq-home .faq-item[open] {
  border-color: var(--border-subtle);
  box-shadow: none;
}

.faq-home .faq-item[open] .faq-item__question {
  color: var(--text-primary);
  border-bottom: none;
}

.faq-home .faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration) var(--ease);
}

.faq-home .faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-home .faq-item__question::marker {
  display: none;
  content: '';
}

.faq-home .faq-item__question:hover {
  color: var(--primary);
}

.faq-home .faq-item__question span {
  flex: 1;
}

.faq-home .faq-item__icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration) var(--ease);
}

.faq-home .faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-home .faq-item__answer {
  padding: 0 0 var(--sp-5) 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.faq-home .faq-item__answer p {
  margin-bottom: var(--sp-3);
}

.faq-home .faq-item__answer p:last-child {
  margin-bottom: 0;
}

.faq-home__cta {
  text-align: center;
  margin-top: var(--sp-8);
}

.faq-home__cta a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  transition: gap 0.2s;
}

.faq-home__cta a:hover {
  gap: var(--sp-3);
}
