:root {
  --bg-primary: #080808;
  --bg-secondary: #0f0f0f;
  --bg-card: #141414;
  --bg-card-hover: #1a1a1a;
  --accent: #E85D04;
  --accent-subtle: rgba(232, 93, 4, 0.12);
  --text-primary: #F5F5F5;
  --text-secondary: #9A9A9A;
  --text-muted: #555555;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.15);

  --font-main: 'Inter', sans-serif;
  --container-width: 1280px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul,
ol {
  list-style: none;
}

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

button,
input,
textarea,
select {
  font-family: inherit;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.75rem, 6vw, 3rem);
  }
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}

.label-small {
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.label-small.accent {
  color: var(--accent);
}

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

.section {
  padding: 120px 0;
}

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

  .page-hero-section {
    min-height: 280px !important;
    padding-bottom: 20px !important;
  }
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.text-center {
  text-align: center;
}

.gap-4 {
  gap: 32px;
}

.gap-5 {
  gap: 40px;
}

.gap-8 {
  gap: 64px;
}

.grid {
  display: grid;
}

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

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

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

  .md-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md-flex-col {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .sm-grid-cols-1 {
    grid-template-columns: 1fr;
  }

  .sm-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HERO SECTION */
#hero-section {
  /* scroll-snap removed — using native smooth scroll only */
}

.hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(8, 8, 8, 0.70) !important;
  pointer-events: none;
  z-index: 1 !important;
}

/* Animated Gradient Mesh Background */
.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232, 93, 4, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 70%, rgba(232, 93, 4, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(8, 8, 8, 0.04) 0%, transparent 70%),
    var(--bg-primary);
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% {
    background:
      radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232, 93, 4, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse 70% 50% at 90% 70%, rgba(232, 93, 4, 0.08) 0%, transparent 50%),
      radial-gradient(ellipse 50% 80% at 50% 50%, rgba(8, 8, 8, 0.04) 0%, transparent 70%),
      var(--bg-primary);
  }

  50% {
    background:
      radial-gradient(ellipse 60% 80% at 30% 60%, rgba(232, 93, 4, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse 80% 40% at 70% 30%, rgba(232, 93, 4, 0.10) 0%, transparent 50%),
      radial-gradient(ellipse 70% 50% at 80% 80%, rgba(8, 8, 8, 0.06) 0%, transparent 70%),
      var(--bg-primary);
  }

  100% {
    background:
      radial-gradient(ellipse 90% 50% at 50% 40%, rgba(232, 93, 4, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 20% 80%, rgba(232, 93, 4, 0.06) 0%, transparent 50%),
      radial-gradient(ellipse 60% 70% at 90% 20%, rgba(8, 8, 8, 0.05) 0%, transparent 70%),
      var(--bg-primary);
  }
}

/* Decorative Glow Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  opacity: 0.06;
  top: -100px;
  right: -100px;
  animation: orbFloat1 15s ease-in-out infinite;
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  opacity: 0.04;
  bottom: 50px;
  left: -50px;
  animation: orbFloat2 18s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-60px, 40px);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(40px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.hero-text {
  max-width: 1000px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-subtle);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 93, 4, 0.2);
}

.hero-badge i {
  font-size: 14px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-title .text-accent {
  background: linear-gradient(135deg, var(--accent), #ff7b25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(17px, 1.2vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-desc {
    margin-top: 1rem;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: #d65503;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
}

.nav-contact-btn {
  padding: 8px 16px !important;
  font-size: 0.9rem !important;
  height: 40px;
}

.lang-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0 16px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lang-toggle-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* CARDS */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
}

.card:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background-color: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand span {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.05em;
}

.site-brand img {
  height: 32px;
}

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--accent);
}

.site-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.site-nav-link:hover::after,
.site-nav-link.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .site-header-inner {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .site-header .site-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0 !important;
  }

  .site-header .site-brand img,
  .site-header .site-brand span {
    transform: scale(1.1) !important;
    transform-origin: center center !important;
  }

  .lang-toggle-btn {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 11;
    padding: 0 12px;
    height: 36px;
  }

  /* Dil butonu aktifken hover kaymaz */
  .lang-toggle-btn:hover,
  .lang-toggle-btn.active {
    transform: translateY(-50%) !important;
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.active {
    display: flex;
  }

  .header-actions .btn,
  .header-actions .nav-contact-btn {
    display: none;
  }

  .hamburger {
    display: block;
    z-index: 11;
  }

  /* Mobile Hero Overrides */
  .hero-overlay {
    background: rgba(8, 8, 8, 0.85) !important;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .btn {
    flex: 1;
    font-size: 0.82rem;
    padding: 10px 14px;
    justify-content: center;
    white-space: nowrap;
  }
}

/* FOOTER */
.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.footer-col p {
  color: var(--text-secondary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* Section wrapper */
.sectors-heading-section {
  background-color: var(--bg-secondary);
  padding: 60px 0 60px;
}

/* Individual sector card */
.sector-card {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  background: var(--bg-primary);
  margin-bottom: 0;
}

.sector-card:last-child {
  margin-bottom: 100px;
}

/* Sector number watermark */
.sector-card-number {
  position: absolute;
  top: -20px;
  font-size: clamp(8rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, rgba(232, 93, 4, 0.12) 0%, rgba(232, 93, 4, 0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.sector-card--img-left .sector-card-number {
  right: 40px;
}

.sector-card--img-right .sector-card-number {
  left: 40px;
}

/* Layout: image & text columns */
.sector-card-inner {
  display: flex;
  width: 100%;
  height: 100vh;
}

.sector-card--img-right .sector-card-inner {
  flex-direction: row-reverse;
}

/* Image column */
.sector-card-gallery {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
  overflow: hidden;
}

/* Swiper inside gallery */
.sector-card-gallery .swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.sector-card-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover .swiper-slide-active img {
  transform: scale(1.05);
}

/* Gallery overlay gradient */
.sector-card-gallery::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.sector-card--img-left .sector-card-gallery::after {
  background: linear-gradient(to right, transparent 60%, var(--bg-primary) 100%);
}

.sector-card--img-right .sector-card-gallery::after {
  background: linear-gradient(to left, transparent 60%, var(--bg-primary) 100%);
}

/* Swiper pagination custom */
.sector-card-gallery .swiper-pagination {
  bottom: 16px !important;
  z-index: 5;
}

.sector-card-gallery .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.sector-card-gallery .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* Single image (no swiper) */
.sector-card-gallery .sector-single-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-card:hover .sector-single-img {
  transform: scale(1.05);
}

/* No-image placeholder */
.sector-card-noimg {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Text column */
.sector-card-content {
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px;
  position: relative;
  z-index: 3;
}

/* Decorative vertical accent line */
.sector-card-content::before {
  content: '';
  position: absolute;
  top: 15%;
  width: 3px;
  height: 70%;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  opacity: 0.2;
  transition: opacity 0.5s ease;
}

.sector-card--img-left .sector-card-content::before {
  left: 0;
}

.sector-card--img-right .sector-card-content::before {
  right: 0;
}

.sector-card:hover .sector-card-content::before {
  opacity: 0.5;
}

/* Badge */
.sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 93, 4, 0.08);
  border: 1px solid rgba(232, 93, 4, 0.2);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}

.sector-badge i {
  font-size: 0.7rem;
}

/* Title */
.sector-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Description */
.sector-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Feature list */
.sector-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 32px;
}

.sector-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 5px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.sector-feature-tag i {
  color: var(--accent);
  font-size: 0.65rem;
}

.sector-card:hover .sector-feature-tag {
  border-color: rgba(232, 93, 4, 0.15);
  background: rgba(232, 93, 4, 0.04);
}

/* CTA Button */
.sector-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, #d65503 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.sector-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transition: left 0.5s ease;
}

.sector-btn:hover::before {
  left: 100%;
}

.sector-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.35);
}

.sector-btn .btn-arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.sector-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Bottom gradient accent line */
.sector-card-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sector-card:hover .sector-card-accent-line {
  opacity: 0.6;
}

/* Hero Slider Navigation */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 1.1rem;
  border-radius: 50%;
}

.hero-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(232, 93, 4, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
  left: 40px;
}

.hero-nav-next {
  right: 40px;
}

@media (max-width: 992px) {
  .hero-nav {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    opacity: 0.7;
  }

  .hero-nav-prev {
    left: 15px;
  }

  .hero-nav-next {
    right: 15px;
  }
}

/* ========================================
   SECTORS — Mobile Responsive
   ======================================== */
@media (max-width: 992px) {
  .sector-card {
    min-height: 100vh;
    height: auto;
  }

  .sector-card:last-child {
    margin-bottom: 100px;
  }

  .sector-card-inner {
    flex-direction: column !important;
    min-height: 100vh;
    height: auto;
  }

  .sector-card-gallery {
    flex: 0 0 45vh;
    max-width: 100%;
    width: 100%;
    height: 45vh;
    position: relative;
  }

  .sector-card-gallery .swiper {
    position: relative;
    height: 45vh;
  }

  .sector-card-gallery::after {
    background: linear-gradient(to bottom, transparent 50%, var(--bg-primary) 100%) !important;
  }

  .sector-card-content {
    flex: 1;
    max-width: 100%;
    width: 100%;
    padding: 32px 24px 48px;
    overflow-y: hidden;
  }

  .sector-card-content::before {
    display: none;
  }

  .sector-card-number {
    font-size: 6rem;
    top: -10px;
    right: 16px !important;
    left: auto !important;
  }

  .sector-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .sector-card-gallery {
    flex: 0 0 40vh;
    height: 40vh;
  }

  .sector-card-gallery .swiper {
    height: 40vh;
  }

  .sector-card-content {
    padding: 24px 20px 40px;
  }

  .sector-title {
    font-size: 1.4rem;
  }

  .sector-desc {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .sector-features {
    gap: 6px 10px;
    margin-bottom: 24px;
  }

  .sector-feature-tag {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .sector-card-gallery {
    flex: 0 0 40vh;
    height: 40vh;
  }

  .sector-card-gallery .swiper {
    height: 40vh;
  }

  .sector-card-number {
    font-size: 4.5rem;
  }
}