:root {
  --bg-light: #cae2d4;
  --bg-dark: #163550;
  --text-dark: #2f4a38;
  --text-muted: #74817a;
  --text-light: #ffffff;
  --accent-yellow: #f3c244;
  --max-width: 1200px;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

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

.page {
  width: 100%;
  min-height: 100vh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* Sector inner pages – allow white background (ilk hali) */
.page--white {
  background-color: #ffffff;
}

/* Navigation Styles - integrated into top-bar */

.top-bar {
  position: relative;
  z-index: 100;
  overflow: visible; /* mobil drawer kesilmesin */
  background-color: var(--bg-dark);
  color: var(--text-light);
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding-bottom: 48px;
  width: 100%;
}

.top-bar__container {
  max-width: 100%;
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.top-bar__container > .top-bar__menu {
  flex: 1;
  justify-content: center;
}

.top-bar__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.top-bar__logo:hover {
  color: var(--accent-yellow);
}

.top-bar__menu {
  display: none;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.top-bar__item {
  position: relative;
}

.top-bar__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', Arial, sans-serif;
  transition: color 0.2s ease;
  border-radius: 6px;
}

.top-bar__link:hover,
.top-bar__link:hover span {
  color: var(--accent-yellow);
  font-weight: 700;
}

.top-bar__link[aria-expanded="true"],
.top-bar__link[aria-expanded="true"] span {
  color: var(--accent-yellow);
  font-weight: 700;
}

.top-bar__chevron {
  transition: transform 0.2s ease;
}

.top-bar__item[data-menu-open="true"] .top-bar__chevron {
  transform: rotate(180deg);
}

/* Mega Menu */
.top-bar__mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 32px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  width: 700px;
  max-width: 90vw;
}

/* Mega menu for Sectors - compact size */
.top-bar__item[data-menu="products"] .top-bar__mega-menu {
  width: 420px;
  max-width: 90vw;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

/* Solutions List (image left, text right) */
.top-bar__solutions-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

/* Solutions mega menu - wider width for text */
.top-bar__item[data-menu="solutions"] .top-bar__mega-menu {
  width: 550px;
  max-width: 90vw;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.top-bar__item[data-menu="solutions"] .top-bar__mega-content {
  grid-template-columns: 1fr;
  max-width: 100%;
  flex: 1;
}

.top-bar__solution-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.top-bar__solution-item:hover {
  background-color: #f9fafb;
  transform: translateX(4px);
}

.top-bar__solution-image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.top-bar__solution-image .top-bar__sector-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.top-bar__solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
}

.top-bar__solution-image img.loaded {
  display: block;
}

.top-bar__solution-image img.loaded + .top-bar__sector-placeholder,
.top-bar__solution-image:has(img.loaded) .top-bar__sector-placeholder {
  background: none;
}

.top-bar__solution-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.top-bar__solution-title {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.top-bar__solution-desc {
  display: block;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}

.top-bar__solution-item:hover .top-bar__solution-title {
  color: var(--accent-yellow);
}

.top-bar__item--mega:hover .top-bar__mega-menu,
.top-bar__item--mega[data-menu-open="true"] .top-bar__mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.top-bar__mega-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.top-bar__item[data-menu="products"] .top-bar__mega-content {
  flex: 1;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 100%;
  margin: 0;
  align-items: flex-start;
}

.top-bar__mega-column {
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 0;
}

.top-bar__mega-column:first-child {
  border-right: 1px solid #e5e7eb;
  padding-right: 32px;
  margin-right: 0;
}

.top-bar__mega-column:last-child {
  padding-left: 32px;
  margin-left: 0;
}

/* Products/Sectors menu - single column, no borders */
.top-bar__item[data-menu="products"] .top-bar__mega-column {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  align-items: flex-start;
}

/* Solutions - remove column styling */
.top-bar__item[data-menu="solutions"] .top-bar__mega-column {
  border: none;
  padding: 0;
  margin: 0;
}

.top-bar__mega-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin: 0 0 16px 0;
}

.top-bar__mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.top-bar__mega-link {
  display: block;
  padding: 8px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.top-bar__mega-link:hover {
  color: var(--accent-yellow);
  font-weight: 700;
}

/* Sectors Grid */
.top-bar__sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* Products/Sectors menu - 2 sectors per row */
.top-bar__item[data-menu="products"] .top-bar__sectors-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  justify-items: start;
}

.top-bar__sector-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  min-height: 100px;
}

.top-bar__sector-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.top-bar__sector-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
}

.top-bar__sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: scale(0.9);
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-bar__sector-card img.loaded {
  display: block;
}

.top-bar__sector-card img.loaded + .top-bar__sector-placeholder,
.top-bar__sector-card:has(img.loaded) .top-bar__sector-placeholder {
  background: none;
}

.top-bar__sector-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 2;
}

.top-bar__sector-card:hover .top-bar__sector-overlay {
  background: rgba(0, 0, 0, 0.65);
}

.top-bar__sector-overlay span {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  padding: 0 8px;
}


/* Standard Dropdown */
.top-bar__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 8px;
  min-width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.top-bar__item:hover .top-bar__dropdown,
.top-bar__item[data-menu-open="true"] .top-bar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.top-bar__dropdown-item {
  display: block;
  padding: 12px 16px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.top-bar__dropdown-item:last-child {
  border-bottom: none;
}

.top-bar__dropdown-item:hover {
  background-color: #f9fafb;
}

.top-bar__dropdown-item:hover .top-bar__dropdown-title {
  color: var(--accent-yellow);
  font-weight: 700;
}

.top-bar__dropdown-title {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.top-bar__dropdown-desc {
  font-size: 0.75rem;
  color: #6b7280;
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.top-bar__cta {
  display: none;
  padding: 10px 20px;
  background-color: var(--accent-yellow);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.top-bar__cta:hover {
  background-color: #e0b03a;
}

.top-bar__mobile-toggle {
  position: relative;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.top-bar__mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}

.top-bar__mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.top-bar__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.top-bar__mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Drawer – viewport’a göre sabit, her şeyin üstünde */
.top-bar__mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 384px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

.top-bar__mobile-drawer.open,
.top-bar__mobile-drawer[data-open="true"] {
  right: 0;
}

.top-bar__mobile-content {
  padding: 24px;
}

.top-bar__mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
  pointer-events: none; /* kapalıyken tıklamalar alttaki öğelere gitsin (hamburger vb.) */
}

.top-bar__mobile-backdrop[data-open="true"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.top-bar__mobile-item {
  border-bottom: 1px solid #e5e7eb;
}

.top-bar__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Manrope', Arial, sans-serif;
  cursor: pointer;
}

.top-bar__mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.top-bar__mobile-item[data-open="true"] .top-bar__mobile-submenu {
  max-height: 1000px;
}

.top-bar__mobile-submenu-item {
  display: block;
  padding: 12px 0 12px 24px;
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
}

.top-bar__mobile-submenu-item:hover {
  color: #2563eb;
}

.top-bar__social {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.language-switcher {
  display: flex;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 8px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-family: 'Manrope', Arial, sans-serif;
}

.lang-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.lang-btn.active {
  background-color: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Hero Section in Top Bar */
.top-bar__hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px 0;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.top-bar__hero-content {
  flex: 1;
  text-align: left;
  max-width: 1100px;
}

.top-bar__hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0 0 16px 0;
  font-weight: 700;
  color: var(--text-light);
}

.top-bar__hero-subtitle {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 24px 0;
  font-weight: 600;
  color: var(--accent-yellow);
}

.top-bar__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: none;
}

.top-bar__hero-image {
  flex: 1;
  max-width: 800px;
  min-width: 700px;
  aspect-ratio: 4/3;
  /* Match the top-bar background so the whole header reads as one navy canvas */
  background: var(--bg-dark);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-bar__hero-image img {
  width: 100%;
  height: 100%;
  /* For transparent mockups: do not crop, keep full artwork visible */
  object-fit: contain;
  padding: 18px;
  display: none;
}

.top-bar__hero-image img[src]:not([src=""]) {
  display: block;
}

.intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 20px 24px;
  text-align: center;
}


.intro__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bg-dark);
  margin: 0 0 12px 0;
}

.intro__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.tagline {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 20px;
  text-align: left;
  background-color: var(--bg-light);
}

.tagline-text {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0;
  line-height: 1.6;
}

.tagline-small {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--bg-dark);
  opacity: 0.8;
}

/* Why AunoPack Cards Section */
.why-aunopack {
  background-color: var(--bg-light);
  padding: 48px 20px 80px;
}

.why-aunopack__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-aunopack__cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.why-aunopack__card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.why-aunopack__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a4a6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  z-index: 2;
}

.why-aunopack__card:hover .why-aunopack__circle,
.why-aunopack__card.active .why-aunopack__circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.why-aunopack__headline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  margin: 0;
  padding: 0 16px;
  line-height: 1.4;
}

.why-aunopack__panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background-color: rgba(22, 53, 80, 0.08);
  border-radius: 0 0 16px 16px;
  margin-top: -20px;
  z-index: 1;
}

.why-aunopack__card.active .why-aunopack__panel {
  max-height: 400px;
}

.why-aunopack__content {
  padding: 60px 24px 24px;
  color: var(--bg-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-aunopack__content p {
  margin: 0 0 12px 0;
}

.why-aunopack__content ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.why-aunopack__content li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .why-aunopack__cards {
    gap: 24px;
  }
  
  .why-aunopack__card {
    min-width: 160px;
    max-width: 180px;
  }
  
  .why-aunopack__circle {
    width: 160px;
    height: 160px;
  }
  
  .why-aunopack__headline {
    font-size: 1rem;
  }
  
  .why-aunopack__content {
    padding: 50px 20px 20px;
    font-size: 0.9rem;
  }
}

/* Legacy hero styles (for backward compatibility) */
.hero {
  text-align: center;
  padding: 40px 0 16px;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Sector hero – image right, no frame */
.hero--sector .feature {
  align-items: center;
  justify-content: center;
}

.hero--sector .feature__copy {
  background-color: transparent;
  color: var(--text-dark);
  box-shadow: none;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero--sector .hero__description {
  color: var(--text-muted);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero--sector .hero__description p {
  color: var(--text-muted);
  margin: 0.75em 0;
}

.hero--sector .hero__description p:first-child {
  margin-top: 0;
}

.hero--sector .hero__description p:last-child {
  margin-bottom: 0;
}

.hero--sector .feature__media {
  background: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  align-items: flex-end;
}

.hero--sector .feature__media img {
  padding: 0;
  max-width: 420px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0;
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__description {
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 56ch;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 64px;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Value cards on sector pages: image + text in same card */
.features--value-cards .feature-item {
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(22, 53, 80, 0.12);
  box-shadow: 0 24px 48px rgba(22, 53, 80, 0.10);
}

.features--value-cards .feature-item .feature__media {
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.features--value-cards .feature-item .feature__media img {
  padding: 0;
  object-fit: cover;
}

.features--value-cards .feature-item .feature__copy {
  background: transparent;
  color: var(--text-dark);
  box-shadow: none;
  padding: 24px 22px 26px;
}

.features--value-cards .feature-item .feature__copy h3 {
  font-size: 1.35rem;
}

.features--value-cards .feature-item .feature__copy p {
  color: var(--text-muted);
}

.features--value-cards .feature-item .feature__copy ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.features--value-cards .feature-item .feature__copy ul li {
  margin-bottom: 0.35em;
}

.features--value-cards .feature-item .feature__copy .feature__copy-note {
  margin: 1rem 0 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* FAQ section – üst/alt beyaz boşluk kalmayacak şekilde */
.faq-section {
  margin-top: -64px;
  margin-bottom: -64px;
}

/* FAQ section – sağa sola yaslı, dikeyde geniş alan */
.faq--in-page {
  background-color: #e0f2fe;
  padding: 48px 40px 56px;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 24px;
  box-shadow: none;
  border: none;
  border-top: 1px solid rgba(22, 53, 80, 0.08);
  border-bottom: 1px solid rgba(22, 53, 80, 0.08);
  overflow: hidden;
}

.faq--in-page .faq__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  padding: 0 20px;
}

.faq__intro {
  margin: 0;
  color: var(--bg-dark);
  font-size: 0.95rem;
  opacity: 0.88;
}

.faq__intro a {
  color: var(--bg-dark);
  font-weight: 600;
  text-decoration: underline;
}

.faq--in-page .faq__header {
  max-width: var(--max-width);
  margin: 0 auto 24px;
  padding: 0 20px;
  text-align: center;
}

.faq--in-page .faq__title {
  margin: 0 0 8px 0;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  color: var(--bg-dark);
}

.faq--in-page .faq__intro {
  margin-top: 4px;
}

.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__question {
  border-radius: 999px;
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 53, 80, 0.25);
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  color: var(--bg-dark);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.faq__question[data-active="true"] {
  border-color: var(--bg-dark);
  background-color: #ffffff;
  color: var(--bg-dark);
  font-weight: 600;
}

.faq--in-page .faq__answers {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 32px;
  min-height: 160px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.faq__answer-title {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: var(--bg-dark);
}

.faq__answer-body {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--bg-dark);
  opacity: 0.92;
}

@media (max-width: 768px) {
  .faq--in-page {
    padding: 32px 20px 40px;
  }

  .faq--in-page .faq__inner {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .faq--in-page .faq__answers {
    min-height: 120px;
  }
}

.feature {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.feature:nth-of-type(even) {
  flex-direction: row-reverse;
}

.feature__copy,
.feature__media {
  flex: 1 1 0;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-radius: 32px;
}

/* Feature Item Styles (for grid) */
.feature-item .feature__media {
  padding: 0 !important;
  border-radius: 24px;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block !important;
  background: linear-gradient(135deg, #8bbca6 0%, #6ba68f 100%);
  box-shadow: 0 24px 48px rgba(22, 53, 80, 0.15);
  position: relative;
  width: 100%;
  min-height: 180px;
  flex: none !important;
  justify-content: flex-start !important;
}

.feature-item .feature__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block !important;
  padding: 15px;
  box-sizing: border-box;
}

/* Second row - 2 columns */
.features-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item .feature__copy {
  padding: 32px 24px;
  text-align: left;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.feature__copy h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
}

.feature__copy p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.highlight-yellow {
  color: var(--accent-yellow);
  font-weight: 600;
}

.feature__copy {
  background-color: var(--bg-dark);
  color: var(--text-light);
  box-shadow: 0 24px 48px rgba(22, 53, 80, 0.25);
}

.feature__media {
  background-color: #8bbca6;
  align-items: center;
  box-shadow: 0 24px 48px rgba(22, 53, 80, 0.15);
}

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

/* Sector image slider under hero */
.sector-gallery {
  background-color: var(--bg-dark);
  padding: 56px 24px;
  margin-top: -8px;
}

.sector-gallery__track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px; /* allow comfy scroll without cutting shadows */
}

.sector-gallery__item {
  flex: 0 0 min(720px, 100%);
  display: flex;
  gap: 32px;
  scroll-snap-align: start;
  color: var(--text-light);
  align-items: center;
}

.sector-gallery__image img {
  display: block;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

.sector-gallery__text h3 {
  margin: 0 0 8px 0;
  font-size: 1.55rem;
}

.sector-gallery__text p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.sector-gallery__text .sector-gallery__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.sector-gallery__text .sector-gallery__list li {
  margin-bottom: 0.35em;
}

/* Mobil: yatay slayt yerine dikey kart listesi – kaydırma yok, sayfa akışında hepsi görünür */
@media (max-width: 900px) {
  .sector-gallery {
    padding: 32px 20px;
  }
  .sector-gallery__track {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 40px;
    padding-bottom: 0;
  }
  .sector-gallery__item {
    flex: none;
    width: 100%;
    flex-direction: column;
    scroll-snap-align: none;
    align-items: stretch;
    gap: 16px;
  }
  .sector-gallery__image {
    order: 1;
  }
  .sector-gallery__image img {
    max-width: 100%;
    width: 100%;
  }
  .sector-gallery__text {
    order: 2;
  }
  .sector-gallery__text h3 {
    font-size: 1.35rem;
  }
  .sector-gallery__text p,
  .sector-gallery__text .sector-gallery__list {
    font-size: 1rem;
  }
}

/* Full-width info band (text left, image right) */
.info-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
  margin: 48px 0;
  /* Sayfa genişliğinden bağımsız, tam ekran bant */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  background-color: transparent;
}

.info-band__content {
  background-color: var(--bg-light);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.info-band__content h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--text-dark);
}

.info-band__content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 40rem;
}

.info-band__cta {
  margin-top: 20px;
}

.info-band__image {
  position: relative;
  min-height: 220px;
}

.info-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .info-band {
    grid-template-columns: 1fr;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .info-band__content {
    padding: 32px 20px;
  }

  .info-band__image {
    min-height: 200px;
  }
}

.feature.feature--sustainability {
  flex-direction: column !important;
}

.feature--sustainability .feature__media {
  order: 1;
}

.feature--sustainability .feature__copy {
  order: 2;
}

/* Desktop Navigation */
@media (min-width: 1024px) {
  .top-bar__menu {
    display: flex;
  }

  .top-bar__cta {
    display: inline-flex;
  }

  .top-bar__mobile-toggle {
    display: none;
  }

  .top-bar__sectors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .features-grid--two {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 901px) {
  .feature.feature--sustainability {
    flex-direction: row !important;
  }

  .feature--sustainability .feature__media {
    order: 0;
  }

  .feature--sustainability .feature__copy {
    order: 0;
  }
}

/* Mobile Navigation */
@media (max-width: 1023px) {
  .top-bar__menu {
    display: none;
  }

  .top-bar__cta {
    display: none;
  }

  .top-bar__mobile-toggle {
    display: flex;
  }

  .top-bar__mega-menu {
    left: 0;
    right: 0;
    transform: translateY(-10px);
    width: 100%;
    min-width: auto;
    max-width: 100%;
    padding: 24px 20px;
    min-height: auto;
  }


  .top-bar__item--mega:hover .top-bar__mega-menu,
  .top-bar__item--mega[data-menu-open="true"] .top-bar__mega-menu {
    transform: translateY(0);
  }

  .top-bar__sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }


  .top-bar__mega-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .top-bar__mega-column:first-child {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding-right: 0;
    padding-bottom: 24px;
    margin-right: 0;
  }

  .top-bar__mega-column:last-child {
    padding-left: 0;
    padding-top: 24px;
    margin-left: 0;
  }

  .top-bar__hero {
    flex-direction: column;
    gap: 32px;
    padding: 32px 20px 0;
  }

  .top-bar__hero-image {
    max-width: 100%;
    width: 100%;
  }
}

.values {
  background-color: var(--bg-dark);
  padding: 48px;
  border-radius: 24px;
}

.values img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 32px 32px;
  border-radius: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer__column h4 {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__column li {
  margin-bottom: 8px;
}

.footer__column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__column a:hover {
  color: var(--accent-yellow);
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}

.footer__logo:hover {
  color: var(--accent-yellow);
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.9rem;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer__contact a:hover {
  color: var(--accent-yellow);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1023px) and (min-width: 601px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .features-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }

  .feature {
    flex-direction: column;
  }

  .feature__media,
  .feature__copy {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 0 16px 60px;
    gap: 48px;
  }


  .top-bar__container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .top-bar__hero {
    padding: 24px 16px 0;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .top-bar__hero-content {
    text-align: center;
    max-width: 100%;
  }

  .top-bar__hero-title {
    font-size: 2rem;
  }

  .top-bar__hero-subtitle {
    font-size: 1.25rem;
  }

  .top-bar__hero-description {
    font-size: 0.9rem;
  }

  .top-bar__social {
    flex-wrap: wrap;
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-grid--two {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .feature {
    flex-direction: column;
  }

  .feature:nth-of-type(even) {
    flex-direction: column;
  }

  .feature__media {
    order: 1;
  }

  .feature__copy {
    order: 2;
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .values {
    padding: 32px;
  }
}

/* Contact form */
.contact-form-section {
  max-width: 560px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.contact-form__wrap {
  background: var(--bg-light, #f8fafc);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(22, 53, 80, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark, #163550);
}

.contact-form__required {
  color: #c53030;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid rgba(22, 53, 80, 0.2);
  border-radius: 12px;
  background: #fff;
  color: var(--text-dark, #163550);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  outline: none;
  border-color: var(--accent-yellow, #eab308);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.2);
}

.contact-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

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

.contact-form__row--submit {
  margin-top: 8px;
}

.contact-form__submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
}

.contact-form__note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
}

.contact-form__note code {
  background: rgba(22, 53, 80, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8em;
}

.contact-form__note a {
  color: var(--accent-yellow, #eab308);
  text-decoration: underline;
}