/* ===================================================
   mGanik Group (MGMI) — Homepage Styles
   Font: General Sans
   Approach: Desktop-first
   =================================================== */

/* --- Font Import --- */
@import url('https://fonts.cdnfonts.com/css/general-sans');

/* --- CSS Variables --- */
:root {
  /* Colors */
  --navy: #0F1C2E;
  --navy-light: #1A2D47;
  --orange: #D4724C;
  --orange-dark: #C0633F;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --gold: #C9A96E;
  --gold-light: #D4BC8E;
  --teal: #2BBCB3;
  --dark-text: #1A1A2E;
  --body-text: #555555;
  --light-text: #888888;
  --white: #FFFFFF;
  --border-color: #E8E8E8;
  --bg-light: #F9F9F9;

  /* Typography */
  --font-primary: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1280px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background-color: #F5F5F5;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-primary);
}

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

.section {
  padding: var(--section-padding);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark-text);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 52px; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  line-height: 1.7;
  color: var(--body-text);
}

.section-label {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 16px;
}

.section-title--script {
  font-weight: 600;
}

.section-subtitle {
  font-size: 16px;
  color: var(--body-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(15, 28, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-dark:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-text {
  background: transparent;
  color: var(--navy);
  padding: 8px 0;
  font-weight: 500;
  gap: 6px;
}

.btn-text:hover {
  gap: 12px;
}

.btn-text .arrow {
  transition: transform var(--transition-base);
}

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

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow var(--transition-base);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  flex-shrink: 0;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body-text);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition-fast);
}

.navbar__links a:hover {
  color: var(--navy);
}

.navbar__links a.active {
  font-weight: 700;
  color: var(--navy);
  position: relative;
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--navy);
  border-radius: 1px;
}

.navbar__links a.has-dropdown svg {
  margin-top: 1px;
  transition: transform var(--transition-fast);
}

.navbar__links a.has-dropdown:hover svg {
  transform: rotate(180deg);
}

.navbar__dropdown-wrapper {
  position: relative;
}

.navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.navbar__dropdown-wrapper:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
}

.navbar__dropdown-wrapper:hover .has-dropdown svg {
  transform: rotate(180deg);
}

.navbar__dropdown a {
  display: block;
  background-color: var(--white);
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 400;
  color: var(--dark-text);
  white-space: nowrap;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.navbar__dropdown a:first-child {
  border-top: 1px solid var(--border-color);
  border-radius: 4px 4px 0 0;
  padding-top: 14px;
}

.navbar__dropdown a:last-child {
  border-bottom: 1px solid var(--border-color);
  border-radius: 0 0 4px 4px;
  padding-bottom: 14px;
}

.navbar__dropdown a:hover {
  background-color: var(--cream-light);
  color: var(--dark-text);
}

.navbar__cta {
  flex-shrink: 0;
  margin-left: 28px;
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--dark-text);
  color: var(--dark-text);
  background: transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav-outline:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  background-color: var(--navy);
  background-image: linear-gradient(180deg, #0F1C2E 0%, #142439 50%, #0F1C2E 100%);
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 40px 60px;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

.hero__shape--left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
}

.hero__shape--right {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__title {
  font-size: 52px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero__dot.active {
  background-color: var(--white);
  width: 28px;
  border-radius: 5px;
}

/* ===================================================
   OUR ECOSYSTEM
   =================================================== */
.ecosystem {
  padding: 60px 0;
  text-align: center;
  background-color: #F5F5F5;
}

.ecosystem__header {
  margin-bottom: 48px;
}

.ecosystem__title {
  font-size: 42px;
  font-weight: 575;
  font-style: normal;
  background: linear-gradient(135deg, var(--dark-text) 30%, var(--gold) 60%, var(--dark-text) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.ecosystem__card {
  text-align: left;
  padding: 20px;
}

.ecosystem__card-image {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ecosystem__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem__card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.ecosystem__card p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}

.ecosystem__cta {
  margin-top: 40px;
}

/* ===================================================
   WHY WE EXIST
   =================================================== */
.why-we-exist {
  background: linear-gradient(180deg, #8B7D72 0%, #8B7D72 30%, #4A5568 60%, #1A2D47 80%, #0F1C2E 100%);
  padding: 60px 0 0;
  overflow: hidden;
}

.why-we-exist__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 60px;
  margin-bottom: 48px;
  padding-left: 20px;
  padding-right: 120px;
}

.why-we-exist__heading {
  flex-shrink: 0;
}

.why-we-exist__heading h2 {
  font-size: 36px;
  font-weight: 575;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--white) 15%, rgba(245, 235, 210, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-we-exist__text {
  max-width: 560px;
}

.why-we-exist__text p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

/* Carousel */
.why-we-exist__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
  cursor: grab;
  user-select: none;
}

.why-we-exist__carousel.dragging {
  cursor: grabbing;
}

.why-we-exist__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.why-we-exist__slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 480px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  will-change: transform, left, opacity;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-we-exist__slide.no-transition {
  transition: none !important;
}

.why-we-exist__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ===================================================
   COMPANY MILESTONE
   =================================================== */
.milestone {
  padding: 100px 0;
  text-align: center;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.milestone__shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, white 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, white 30%, transparent 100%);
}

.milestone__shape--4 {
  bottom: -5%;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  opacity: 0.06;
}

.milestone__shape--3 {
  bottom: -12%;
  top: auto;
  left: 0;
  width: 100%;
  transform: none;
  opacity: 0.08;
}

.milestone .container {
  position: relative;
  z-index: 1;
}

.milestone__header {
  margin-bottom: 60px;
}

.milestone__header h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.milestone__header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.milestone__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  padding: 0 60px;
}

.milestone__stat {
  text-align: center;
  padding: 20px;
}

.milestone__stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone__stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.milestone__stat + .milestone__stat {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.milestone__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.milestone__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}

.milestone__card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.milestone__card--stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  text-align: left;
}

.milestone__card--stat-light {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.milestone__card--stat-dark {
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.milestone__card-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone__card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.milestone__card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.milestone__statement {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================================================
   BRANDS / PORTFOLIO SECTION
   =================================================== */
.brands {
  background-color: var(--navy);
  background-image: linear-gradient(180deg, #0F1C2E 0%, #142439 50%, #0F1C2E 100%);
  padding: 40px 0 100px;
}

.brands__header {
  text-align: center;
  margin-bottom: 48px;
}

.brands__header h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.brands__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.brand-card__image {
  height: 240px;
  overflow: hidden;
}

.brand-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-card:hover .brand-card__image img {
  transform: scale(1.05);
}

.brand-card__info {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
}

.brand-card--orange .brand-card__info {
  background-color: #D46945;
}

.brand-card--teal .brand-card__info {
  background-color: #3E5D58;
}

.brand-card--pink .brand-card__info {
  background-color: #ED3E59;
}

.brand-card__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
  align-self: flex-start;
}

.brand-card__info p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ===================================================
   PRODUCTS SECTION
   =================================================== */
.products {
  padding: 0;
  background-color: #F5F5F5;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.products__image {
  overflow: hidden;
  position: relative;
}

.products__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  background-color: #F5F5F5;
}

.products__info-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.products__info h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.products__info p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body-text);
}

/* ===================================================
   HONORS & AWARDS
   =================================================== */
.awards {
  padding: 80px 0 60px;
  text-align: center;
  background-color: #F5F5F5;
  position: relative;
}

.awards__header {
  margin-bottom: 0;
}

.awards__header h2 {
  font-size: 42px;
  font-weight: 575;
  font-style: normal;
  background: linear-gradient(135deg, var(--dark-text) 30%, var(--gold) 60%, var(--dark-text) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.awards__carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 380px;
  cursor: grab;
  user-select: none;
  margin-bottom: 0;
}

.awards__carousel:active {
  cursor: grabbing;
}

.awards__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.awards__slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 400px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  pointer-events: none;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  will-change: transform, left, opacity, filter;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.awards__slide.no-transition {
  transition: none !important;
}

.awards__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.awards__caption {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  min-height: 80px;
}

.awards__caption h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.awards__caption p {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}

.awards__text {
  margin-bottom: 24px;
}

.awards__text h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.awards__text p {
  font-size: 14px;
  color: var(--body-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   INSIGHT & NEWS
   =================================================== */
.news {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news__header h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--dark-text);
}

.news__header h2 em {
  font-weight: 600;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.news__card {
  background-color: #F5F5F5;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.news__card-image {
  height: 200px;
  overflow: hidden;
}

.news__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news__card:hover .news__card-image img {
  transform: scale(1.05);
}

.news__card-body {
  padding: 20px;
}

.news__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  background-color: rgba(212, 114, 76, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news__card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__card-desc {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__cta {
  text-align: center;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background-color: var(--white);
  color: var(--dark-text);
  padding: 60px 0 40px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr auto;
  gap: 40px;
  align-items: start;
}

.footer__col--career {
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}

.footer__logo {
  height: 36px;
  margin-bottom: 14px;
}

.footer__brand p {
  font-size: 13px;
  color: #746D66;
  line-height: 1.7;
  max-width: 300px;
}

.footer__brand-desc {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 400;
  color: #746D66;
  line-height: 1.8;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  font-size: 14px;
  transition: opacity var(--transition-fast);
}

.footer__social a:hover {
  opacity: 0.6;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #746D66;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 13px;
  color: #746D66;
  transition: color var(--transition-fast);
}

.footer__col ul li a:hover {
  color: #544F4A;
}

.footer__link--active {
  color: var(--dark-text) !important;
  font-weight: 700;
}

.footer__contact-list {
  list-style: none;
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--body-text);
  line-height: 1.7;
}

.footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  fill: #746D66;
}

/* ===================================================
   ANIMATIONS — SCROLL REVEALS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in reveal */
.scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Blur-in reveal */
.blur-in {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(20px);
  transition: opacity 0.9s ease,
              filter 0.9s ease,
              transform 0.9s ease;
}

.blur-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Stagger children delays */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.45s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.6s; }

/* ===================================================
   ANIMATIONS — HERO PARALLAX
   =================================================== */
.hero__shape {
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero__title {
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__subtitle {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating hero shapes */
.hero__shape--left {
  animation: floatLeft 6s ease-in-out infinite;
}

.hero__shape--right {
  animation: floatRight 7s ease-in-out infinite;
}

@keyframes floatLeft {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-50%) rotate(3deg) translateX(10px); }
}

@keyframes floatRight {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-50%) rotate(-3deg) translateX(-10px); }
}

/* ===================================================
   ANIMATIONS — BRAND CARDS 3D TILT
   =================================================== */
.brand-card {
  transform-style: preserve-3d;
  perspective: 800px;
}

.brand-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.brand-card__image img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card:hover .brand-card__image img {
  transform: scale(1.08);
}

/* ===================================================
   ANIMATIONS — MILESTONE GLOW
   =================================================== */
.milestone__stat-number {
  transition: text-shadow 0.5s ease;
}

.milestone__stat:hover .milestone__stat-number {
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
               0 0 60px rgba(255, 255, 255, 0.15);
}

.milestone__card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease;
}

.milestone__card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================================
   ANIMATIONS — ECOSYSTEM CARDS
   =================================================== */
.ecosystem__card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease;
}

.ecosystem__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.ecosystem__card-image img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecosystem__card:hover .ecosystem__card-image img {
  transform: scale(1.06);
}

/* ===================================================
   ANIMATIONS — SCROLL PROGRESS BAR
   =================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #D46945, #ED3E59, #3E5D58);
  width: 0%;
  z-index: 9999;
  transition: width 0.05s linear;
  border-radius: 0 2px 2px 0;
}

/* ===================================================
   ANIMATIONS — PARALLAX LAYERS
   =================================================== */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Milestone shapes parallax */
.milestone__shape {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* ===================================================
   ANIMATIONS — AWARDS SLIDE GLOW
   =================================================== */
.awards__slide img {
  transition: transform 0.7s ease, filter 0.7s ease;
}

/* Counter animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   RESPONSIVE — TABLET (≤ 768px)
   =================================================== */
@media (max-width: 768px) {

  /* --- Global --- */
  :root {
    --container-padding: 0 24px;
    --section-padding: 60px 0;
  }

  .section {
    padding: 60px 0;
  }

  /* --- Navbar --- */
  .navbar .container {
    height: 56px;
  }

  .navbar__logo img {
    height: 28px;
  }

  .navbar__links {
    display: none;
  }

  .navbar__cta {
    margin-left: auto;
  }

  .navbar__cta .btn {
    font-size: 12px;
    padding: 10px 20px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* --- Hero --- */
  .hero {
    padding: 48px 24px 40px;
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 14px;
    line-height: 1.7;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero__shape {
    max-width: 100px;
    opacity: 0.08;
  }

  .hero__shape--left {
    width: 160px;
    left: -40px;
  }

  .hero__shape--right {
    width: 160px;
    right: -40px;
  }

  /* --- Ecosystem --- */
  .ecosystem {
    padding: 60px 0;
  }

  .ecosystem__header h2,
  .ecosystem__title {
    font-size: 32px;
  }

  .ecosystem__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ecosystem__card {
    padding: 16px;
  }

  .ecosystem__card-image {
    height: 220px;
    border-radius: var(--radius-md);
  }

  .ecosystem__card h3 {
    font-size: 20px;
  }

  .ecosystem__card p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* --- Why We Exist --- */
  .why-we-exist {
    padding: 32px 0 0;
  }

  .why-we-exist__top {
    flex-direction: column;
    gap: 12px;
    padding: 0 24px 0;
    padding-right: 24px;
    margin-bottom: 12px;
  }

  .why-we-exist__heading h2 {
    font-size: 32px;
  }

  .why-we-exist__text {
    max-width: 100%;
    padding-right: 0;
  }

  .why-we-exist__text p {
    font-size: 14px;
  }

  .why-we-exist__carousel {
    height: 200px;
  }

  .why-we-exist__slide {
    width: 300px;
    height: 210px;
  }

  /* --- Milestone --- */
  .milestone {
    padding: 60px 0;
  }

  .milestone__header h2 {
    font-size: 32px;
  }

  .milestone__header p {
    font-size: 14px;
    max-width: 100%;
    padding: 0;
  }

  .milestone__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .milestone__stat {
    padding: 16px 8px;
  }

  .milestone__stat + .milestone__stat {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-top: none;
  }

  .milestone__stat-number {
    font-size: 24px;
  }

  .milestone__stat-label {
    font-size: 11px;
  }

  .milestone__cards {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto 36px;
  }

  .milestone__card {
    aspect-ratio: auto;
  }

  .milestone__card--image {
    aspect-ratio: 1;
  }

  .milestone__card--stat {
    padding: 20px;
    min-height: auto;
  }

  .milestone__card-number {
    font-size: 28px;
  }

  .milestone__card-title {
    font-size: 13px;
  }

  .milestone__card-desc {
    font-size: 11px;
  }

  .milestone__statement {
    font-size: 14px;
    max-width: 100%;
    padding: 0 20px;
  }

  .milestone__shape {
    display: none;
  }

  /* --- Brands / Portfolio --- */
  .brands__header h2 {
    font-size: 32px;
  }

  .brands__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brand-card__image {
    height: 200px;
  }

  .brand-card__info {
    padding: 24px;
  }

  .brand-card__logo {
    height: 36px;
  }

  .brand-card__info p {
    font-size: 13px;
  }

  /* --- Products --- */
  .products__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .products__image {
    height: 240px;
  }

  .products__info {
    padding: 32px 24px;
  }

  .products__info h3 {
    font-size: 20px;
  }

  /* --- Awards --- */
  .awards {
    padding: 60px 0 40px;
  }

  .awards__header h2 {
    font-size: 32px;
  }

  .awards__carousel {
    height: 260px;
  }

  .awards__slide {
    width: 280px;
    height: 200px;
  }

  .awards__text h3 {
    font-size: 18px;
  }

  .awards__text p {
    font-size: 14px;
    max-width: 100%;
    padding: 0 24px;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 28px;
  }

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

  .footer__brand p,
  .footer__brand-desc {
    max-width: 100%;
  }

  .footer__col--career {
    padding-top: 0;
  }

  .footer__contact-list li {
    font-size: 13px;
  }

  .footer__social a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 480px)
   =================================================== */
@media (max-width: 480px) {

  :root {
    --container-padding: 0 16px;
  }

  /* Hero */
  .hero {
    padding: 40px 16px 32px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__subtitle {
    font-size: 13px;
  }

  .hero__shape--left,
  .hero__shape--right {
    display: none;
  }

  /* Section headings */
  .ecosystem__header h2,
  .ecosystem__title,
  .why-we-exist__heading h2,
  .milestone__header h2,
  .brands__header h2,
  .awards__header h2 {
    font-size: 26px;
  }

  /* Ecosystem */
  .ecosystem__card-image {
    height: 180px;
  }

  /* Why We Exist */
  .why-we-exist__carousel {
    height: 200px;
  }

  .why-we-exist__slide {
    width: 260px;
    height: 180px;
  }

  /* Milestone */
  .milestone__stat-number {
    font-size: 30px;
  }

  .milestone__cards {
    padding: 0 16px;
  }

  .milestone__card-number {
    font-size: 24px;
  }

  .milestone__card--stat {
    padding: 16px;
  }

  /* Brands */
  .brand-image {
    height: 200px;
  }

  .brand-info {
    padding: 24px 16px;
  }

  /* Awards */
  .awards__carousel {
    height: 220px;
  }

  .awards__slide {
    width: 240px;
    height: 170px;
  }

  /* Navbar */
  .navbar__cta .btn {
    font-size: 11px;
    padding: 8px 14px;
  }

  /* Footer */
  .footer__brand-desc {
    font-size: 12px;
  }
}


