@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/Manrope/Manrope-VariableFont_wght.ttf")
    format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-Bold.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-Italic.otf")
    format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-BoldItalic.otf")
    format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-Light.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-LightItalic.otf")
    format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-Medium.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: url("./assets/fonts/neue-montreal-free-demo-pangram-pangram-030418/NeueMontreal-MediumItalic.otf")
    format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #70a7ff;
  --secondary-color: #161616;
  --heading-color: #242424;
  --tertiary-color: #fff;
  --border-text-color: #bebebe;
  --gray-color: #6b6b6b;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--secondary-color);
  color: var(--tertiary-color);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overscroll-behavior: none;
}

.container {
  max-width: 1448px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  width: 100%;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: none;
  position: relative;
  z-index: 100;
  height: 100px;
}

.header .logo {
  display: flex;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--tertiary-color);
  letter-spacing: 0.01em;
  font-family: "Inter", Arial, sans-serif;
}

.header .nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header .nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.header .nav-list li a {
  color: var(--tertiary-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  padding: 2px 0;
}

.header .nav-list li a:hover {
  color: var(--primary-color);
}

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

.talk-btn {
  background: transparent;
  color: var(--tertiary-color);
  border: 1.5px solid var(--tertiary-color);
  border-radius: 45px;
  font-size: 14px;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 142px;
  height: 49px;
  padding: 5px;
  box-sizing: border-box;
  padding-left: 25px;
  white-space: nowrap;
}

.talk-btn:hover {
  background: var(--tertiary-color);
  color: var(--secondary-color);
  border: 1.5px solid var(--tertiary-color);
}

.talk-btn:hover img {
  filter: invert(1);
}

.header .arrow-icon {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.2s;
}

.header .talk-btn:hover .arrow-icon {
  transform: translateX(3px);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: calc(100vh - 100px);
  height: calc(100vh - 100px);
  margin-top: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: url("/assets/images/coverImage.jpg");
  background-size: 101%;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section .hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  padding-bottom: 72px;
}

.hero-section .hero-left {
  flex: 1.2;
  display: flex;
  align-items: flex-end;
  height: 700px;
  justify-content: flex-start;
}

.hero-section .hero-left h1 {
  font-size: 80px;
  font-weight: 300;
  line-height: 120%;
  color: var(--tertiary-color);
  margin: 0 0 0.5rem 0;
  font-family: "Neue Montreal";
}

.hero-section .hero-italic {
  font-style: italic;
}

.hero-section .hero-accent {
  background: linear-gradient(90deg, #444 0%, #e5dac1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  font-family: "Neue Montreal";
  line-height: 120%;
  transition: background 0.3s;
}

.hero-section .hero-right {
  flex: 1;
  display: flex;
  height: 700px;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
  max-width: 476px;
}

.hero-section .hero-desc {
  color: var(--tertiary-color);
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  margin-bottom: 24px;
  text-align: left;
}

.hero-section .hero-btn {
  margin-top: 0;
  border: 1.5px solid var(--tertiary-color);
  background: transparent;
  color: var(--tertiary-color);
  border-radius: 24px;
  padding: 8px 28px 8px 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  outline: none;
}

.hero-section .hero-btn:hover {
  background: var(--tertiary-color);
  color: var(--secondary-color);
  border: 1.5px solid var(--tertiary-color);
}

/* Ecosystem Section */
.ecosystem-section {
  background: var(--secondary-color);

  padding: 100px 0 100px 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.ecosystem-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 100px 32px;
  box-sizing: border-box;
}

.ecosystem-label {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.18em;
  color: #e0e0e0;
  font-size: 1rem;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 8px;
}

.ecosystem-icon {
  font-size: 1.1em;
  color: var(--tertiary-color);
  display: flex;
}

.ecosystem-title {
  font-size: 20px;
  line-height: 30px;
  color: var(--tertiary-color);
}

.ecosystem-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  max-width: 831px;
}

.ecosystem-heading {
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 140%;
  color: var(--primary-color);
}

.ecosystem-desc {
  font-size: 44px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  color: var(--border-text-color);
  text-align: left;
}

.ecosystem-blue {
  color: var(--primary-color);
  font-weight: 500;
}

/* Divisions Section */
.divisions-section {
  background: var(--secondary-color);

  display: flex;
  justify-content: center;
  padding: 0 0 100px 0;
}

.divisions-inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.division-card {
  position: relative;
  flex: 1 1 0;
  background: var(--primary-color);
  border-radius: 12px;
  padding: 40px 32px 32px 32px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px;
  box-shadow: none;
  transition: transform 0.4s ease-in-out;
}

.division-card:hover .division-shape {
  transform: scale(1.2);
  transition: transform 0.4s ease-in-out;
}

.division-shape {
  position: absolute;
  top: 0;
  transition: transform 0.4s ease-in-out;

  right: 32px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
  /* animation-name: division-shape-animation;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate; */
  left: 0;
}

@keyframes division-shape-animation {
  0% {
    transform: translateY(0);
    transform: scale(1);
  }

  100% {
    transform: translateY(-10px);
    transform: scale(1.1);
  }
}

.division-content {
  position: relative;
  z-index: 2;
}

.division-content h3 {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #242424;
  margin: 0 0 23px 0;
  line-height: 1.1;
}

.division-content p {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  color: var(--secondary-color);
  margin: 0;
  font-weight: 300;
  line-height: 1.5;
}

/* Challenges Section */
.challenges-section {
  background: #fff;
}

.challenges-label {
  display: inline-block;
  padding: 16px 20px;
  border: 1px solid var(--secondary-color);
  border-radius: 22px;
  font-size: 18px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  background: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.challenges-section .row {
  border: 1px solid #bebebe;
}

.challenges-heading {
  font-family: "Manrope", sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 0;
  line-height: 120%;
}

.challenges-list-col {
  background: var(--tertiary-color);
  display: flex;
  align-items: stretch;
  padding: 0;
}

.challenges-list {
  width: 100%;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--border-text-color);
}

.challenge-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 32px 32px 40px;
  border-bottom: 1px solid var(--border-text-color);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  color: var(--secondary-color);
  background: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
  height: 137px;
}

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

.challenge-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border-text-color);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--secondary-color);
  background: var(--tertiary-color);
  margin-right: 8px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.challenge-item.active,
.challenge-item:hover {
  background: var(--primary-color);
  color: var(--tertiary-color);
}

.challenge-item.active .challenge-num,
.challenge-item:hover .challenge-num {
  background: var(--tertiary-color);
  color: var(--primary-color);
  border-color: var(--tertiary-color);
}

.challenge-item .challenge-text {
  flex: 1;
  font-size: 28px;
  font-weight: 400;
  transition: color 0.2s;
}

/* Different Section */
.different-section {
  background: var(--primary-color);
  color: var(--tertiary-color);
  min-height: 600px;
  padding: 0;
}

.different-left {
  background: transparent;
  min-height: 600px;
  padding-block: 80px;
  border-right: 1px solid var(--tertiary-color);
}

.different-label {
  display: flex;
  align-items: center;
  color: var(--tertiary-color);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.different-icon {
  font-size: 1.1em;
  color: var(--tertiary-color);
}

.different-title {
  color: var(--tertiary-color);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 8px;
  line-height: 30px;
  margin-left: 20px;
}

.different-heading {
  font-size: 80px;
  font-weight: 400;
  color: var(--tertiary-color);
  margin-bottom: 100px;
  line-height: 120%;
}

.different-list {
  width: 100%;
}

.different-item {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  color: #ffffff50;
  border-bottom: 1px solid var(--tertiary-color);
  font-weight: 400;
  height: 95px;
  display: flex;
  align-items: center;
}

.different-item:last-child {
  border-bottom: none;
  opacity: 1;
}

.different-bold {
  color: var(--tertiary-color);
  font-size: 80px;
  font-weight: 400;
  line-height: 140%;
  font-style: italic;
  border-bottom: none;
  margin-top: 32px;
}

.different-right {
  background: var(--primary-color);
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

.different-glass-img {
  max-width: 600px;
  max-height: 600px;
  display: block;
  transform-style: preserve-3d;
  animation: glassFloat 4s ease-in-out infinite alternate,
    glassShimmer 2.5s linear infinite, glassRotate 12s linear infinite;
  filter: drop-shadow(0 0 24px #fff) blur(0.2px) brightness(1.08);
}

@keyframes glassFloat {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.025);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes glassShimmer {
  0%,
  100% {
    filter: drop-shadow(0 0 30px #fff) brightness(1.13);
  }

  50% {
    filter: drop-shadow(0 0 30px #fff) brightness(1.13);
  }
}

.skylake-bridge-section {
  background: var(--tertiary-color);
  padding-top: 100px;
  text-align: left;
}

.skylake-bridge-text {
  color: var(--gray-color);
  font-size: 60px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 140%;
  margin: 0 auto;
  text-align: center;
}

.skylake-bridge-accent {
  color: var(--primary-color);
  font-style: italic;
  font-weight: 400;
}

.skylake-feature-cards-section {
  background: var(--tertiary-color);
  padding: 100px 0;
}

.skylake-feature-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(112, 167, 255, 0.12);
}

.feature-card:hover img {
  transform: scale(1.2);
}

.feature-card-img {
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
}

.feature-card-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.feature-card-content {
  padding: 25px;
  text-align: left;
  height: 150px;
  border: 1px solid var(--border-text-color);
  border-radius: 0 0 8px 8px;
}

.feature-card-content h3 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  font-family: "Manrope", sans-serif;
}

.feature-card-content p {
  color: var(--secondary-color);
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  font-family: "Manrope", sans-serif;
  margin: 0;
}

.skylake-philosophy-section {
  padding: 100px 0 50px 0;
  color: #fff;
}

.philosophy-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 100px;
}

.philosophy-icon {
  color: var(--primary-color);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.philosophy-title {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.18em;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.philosophy-content {
  display: flex;
  border: 1px solid #ffffff50;
  border-radius: 8px;
  overflow: hidden;
}

.philosophy-left {
  flex: 1.2;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #232323;
}

.philosophy-badge {
  background: transparent;
  border: 1px solid var(--border-text-color, #bebebe);
  color: #fff;
  border-radius: 22px;
  font-size: 20px;
  padding: 16px 20px;
  margin-bottom: 124px;
  width: max-content;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.philosophy-quote {
  font-size: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 124px;
  color: #fff;
}

.philosophy-founder {
  font-size: 30px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  line-height: 140%;
  border-top: 1px solid #ffffff50;
  padding-top: 45px;
  margin-inline: -45px;
  padding-left: 45px;
}

.philosophy-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-img {
  width: 100%;
  height: 100%;
  border-radius: 0 0 8px 0;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
}

.cta-content {
  background: url("/assets/images/bgfuture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 80px 60px;
  height: 487px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-heading {
  font-family: "Manrope", sans-serif;
  font-size: 80px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 36px;
  line-height: 120%;
}

.cta-subtitle {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 73px;
  line-height: 32px;
}

.cta-button {
  border-color: var(--heading-color);
  color: var(--heading-color);
  padding-left: 16px;
}

.cta-button:hover {
  background-color: var(--heading-color);
  color: var(--tertiary-color);
}

.cta-button .arrow-icon {
  filter: invert(1);
}

/* Footer Styles */
.footer {
  padding: 100px 0;
  border-top: 1px solid var(--heading-color);
}

.footer-column {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 276px;
  height: 73px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--tertiary-color);
  font-family: "Inter", Arial, sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: var(--tertiary-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  line-height: 140%;
  transition: color 0.2s;
}

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

.footer-contact {
  color: var(--tertiary-color);
}

.footer-email {
  font-size: 12px;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 16px;
  color: var(--tertiary-color);
}

.footer-address {
  font-size: 12px;
  font-weight: 300;
  line-height: 140%;
  color: var(--tertiary-color);
  font-style: normal;
}

.footer-separator {
  height: 1px;
  background: #333;
  margin: 40px 0;
  width: 100%;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 20px;
}

.footer-legal-left {
  flex: 1;
}

.footer-legal-left p {
  color: var(--tertiary-color);
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 0;
}

.footer-legal-left p:first-child {
  margin-bottom: 10px;
}

.footer-legal-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal-link {
  color: var(--tertiary-color);
  text-decoration: none;
  font-size: 12px;
  font-weight: 300;
  line-height: 140%;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--primary-color);
}

.star-rotate {
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}

.mobile-logo img {
  filter: brightness(0) invert(0);
  width: 120px;
  height: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
}

.close-line {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #000;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: all 0.3s ease;
}

.close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  padding: 0px 24px 50px 24px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid #e0e0e0;
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-list a {
  display: block;
  padding: 20px 0;
  color: #6b6b6b;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.2s;
}

.mobile-nav-list a:hover {
  color: #000;
}

.mobile-talk-btn {
  align-self: flex-start;
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  margin-top: auto;
}

.mobile-talk-btn:hover {
  background: #000 !important;
  color: #fff !important;
}

.mobile-talk-btn .arrow-icon img {
  filter: brightness(0) invert(0);
}

.mobile-talk-btn:hover .arrow-icon img {
  filter: brightness(0) invert(1);
}

/* Contact Form Popup Styles */
.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-popup {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.contact-popup-overlay.active .contact-popup {
  transform: scale(1);
}

.contact-popup-header {
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
  top: 16px;
  right: 16px;
}

.popup-label {
  color: #6b6b6b;
  font-size: 14px;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
}

.popup-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 32px;
  height: 32px;
}

.popup-close .close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transition: all 0.3s ease;
}

.popup-close .close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup-close .close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-popup-content {
  padding: 40px;
}

.contact-popup-heading {
  font-family: "Neue Montreal";
  font-weight: 400;
  font-size: 64px;
  line-height: 125%;
  letter-spacing: -3%;
  color: #242424;
  margin-bottom: 60px;
}

.contact-popup-accent {
  color: var(--primary-color);
  font-weight: 500;
  font-style: italic;
}

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

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

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.contact-form label {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #242424;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #242424;
  background: #fff;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 10px;
}

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: 40px 0;
}

.success-text {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #6b6b6b;
  margin-bottom: 0px;
  line-height: 140%;
}

/* Error Message Styles */
.error-message {
  color: #e74c3c;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
}

/* Loading State */
.talk-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  justify-content: center;
}

.talk-btn:disabled .arrow-icon {
  display: none;
}

/* Circular Loader */
.loader {
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-bottom: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design Updates */

@media (max-width: 1440px) {
  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: 20px;
  }

  .division-card {
    min-width: unset;
  }

  .division-shape {
    object-fit: cover;
  }

  .hero-section .hero-left h1,
  .different-heading,
  .different-bold,
  .cta-heading {
    font-size: 70px;
    line-height: 120%;
  }

  .skylake-bridge-text {
    font-size: 52px;
    line-height: 120%;
  }

  .different-glass-img {
    max-width: 500px;
    max-height: 500px;
    margin-left: unset;
  }

  .feature-card-content h3 {
    font-size: 21px;
  }

  .feature-card-content p {
    font-size: 18px;
    line-height: 25px;
  }

  .philosophy-content {
    padding-bottom: 2px;
  }

  .philosophy-header {
    margin-bottom: 50px;
  }

  .skylake-philosophy-section {
    padding: 50px 0 50px 0;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-inner,
  .divisions-section .container,
  .ecosystem-section .container,
  .challenges-section .container,
  .different-section .container,
  .cta-section .container,
  .skylake-feature-cards {
    flex-direction: column !important;
  }

  .division-card {
    min-width: 100%;
    min-height: 450px;
  }

  .different-glass-img {
    max-width: 350px;
    max-height: 350px;
    margin-left: unset;
  }

  .different-glass-img {
    max-width: 100%;
    max-height: 100%;
    margin-left: unset;
  }

  .hero-section .hero-left h1,
  .different-heading,
  .different-bold,
  .cta-heading {
    font-size: 40px;
    line-height: 120%;
    word-break: unset;
  }

  br {
    display: none;
  }

  span.d-sm-none {
    display: none;
  }

  .hero-section .hero-desc {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 25px;
    margin-top: 15px;
  }

  .hero-section {
    align-items: flex-end;
    background-size: cover;
  }

  .hero-section .hero-inner {
    padding-bottom: 50px;
  }

  .hero-section .hero-accent {
    background: linear-gradient(90deg, #444 0%, #e5dac1 0%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 400;
    font-family: "Neue Montreal";
    line-height: 120%;
    transition: background 0.3s;
  }

  .hero-section .hero-italic {
    font-style: italic;
    display: inline-block;
  }

  .desktop-nav,
  .desktop-btn {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .ecosystem-title {
    font-size: 17px;
    line-height: 25px;
  }

  .ecosystem-heading {
    margin-top: 50px;
  }

  .ecosystem-heading,
  .ecosystem-desc {
    font-size: 39px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
  }

  .ecosystem-section {
    padding: 50px 0 50px 0;
  }

  .divisions-section {
    padding: 0 24px 50px 24px;
  }

  .container {
    max-width: 100%;
    margin: 0 auto;
    padding-inline: 24px;
  }

  .header .logo img {
    height: 30px;
  }

  .division-content h3 {
    font-size: 32px;
    max-width: 240px;
  }

  .division-content p {
    font-size: 16px;
  }

  .division-shape {
    object-position: right;
  }

  .mobilePadding {
    padding: 50px 25px !important;
  }

  .challenges-label {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .challenges-heading {
    font-size: 36px;
  }

  .challenge-item {
    gap: 20px;
    padding: 20px !important;
    height: auto;
  }

  .challenge-item .challenge-text {
    font-size: 17px;
  }

  .challenges-list {
    border-left: none;
  }

  .challenge-item:first-child {
    border-top: 1px solid var(--border-text-color);
  }

  .different-left {
    padding-block: 50px;
  }

  .different-title {
    font-size: 18px;
  }

  .different-item:last-child {
    font-size: 60px;
    word-break: unset;
  }

  .different-left {
    border-right: none;
  }

  .different-item {
    font-size: 28px;
    border-bottom: 1px solid var(--tertiary-color);
    height: auto;
    padding-bottom: 12px;
  }

  .different-heading {
    margin-bottom: 50px;
  }

  .skylake-bridge-text {
    font-size: 38px;
    line-height: 120%;
  }

  .skylake-bridge-section {
    padding-top: 50px;
  }

  .skylake-feature-cards-section {
    padding: 50px 0;
  }

  .feature-card-content h3 {
    font-size: 20px;
  }

  .philosophy-content {
    flex-direction: column;
  }

  .philosophy-left {
    padding: 45px 16px;
  }

  .philosophy-badge {
    margin-bottom: 50px;
  }

  .philosophy-quote {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .philosophy-founder {
    font-size: 20px;
  }

  .cta-content {
    padding: 66px 45px;
    height: auto;
  }

  .cta-heading {
    font-size: 32px;
    word-break: unset;
  }

  .cta-subtitle {
    font-size: 17px;
    margin-bottom: 50px;
    line-height: 32px;
  }

  .footer {
    padding: 50px 0;
    border-top: 1px solid var(--heading-color);
  }

  .footer-logo img {
    width: 200px;
    height: 60px;
  }

  .footer-links li {
    margin-bottom: 8px;
    text-align: left;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 50px;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
  }

  .footer-legal {
    flex-direction: column;
  }

  .different-right {
    display: none !important;
  }

  /* Mobile Contact Popup Styles */
  .contact-popup {
    width: 95%;
    max-width: none;
    margin: 20px;
  }

  .contact-popup-content {
    padding: 60px 20px 20px 20px;
  }
  .contact-popup-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .form-row {
    flex-direction: column;
    gap: 24px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}
