/* ========== CUSTOM FONTS ========== */
@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}


:root {
    /* Brand Colors */
    --primary: #07AA8B;
    --primary-dark: #069577;
    --secondary: #0190AF;
    --accent-light: #E4F4F3;

    --bg-color: #0a0a0a;
    --text-white: #ffffff;
    --text-gray: #888888;
    --tag-bg: #3a3a3a;
    --max-width: 100%;
    --max-width-tablet-portrait: 100%;
    --max-width-tablet: 992px;
    --max-width-laptop: 1140px;
    --max-width-desktop: 1240px;
    --max-width-wide: 1340px;
    --spacing-padding-inline: 0.25rem;
    /* Typography - Responsive sizes based on breakpoints */
    /* H0: 96px -> 84px -> 72px -> 60px -> 48px -> 40px -> 32px */
    --h0-size: clamp(2rem, 1rem + 4.44vw, 6rem);
    /* H1: 64px -> 58px -> 52px -> 44px -> 36px -> 32px -> 28px */
    --h1-size: clamp(1.75rem, 1rem + 2.5vw, 4rem);
    /* H2: 48px -> 44px -> 40px -> 36px -> 32px -> 28px -> 24px */
    --h2-size: clamp(1.5rem, 1rem + 1.67vw, 3rem);
    /* H3: 40px -> 38px -> 36px -> 32px -> 28px -> 24px -> 22px */
    --h3-size: clamp(1.375rem, 1rem + 1.25vw, 2.5rem);
    /* H4: 32px -> 30px -> 28px -> 26px -> 24px -> 22px -> 20px */
    --h4-size: clamp(1.25rem, 1rem + 0.83vw, 2rem);
    /* H5: 24px -> 24px -> 22px -> 20px -> 20px -> 18px -> 16px */
    --h5-size: clamp(1rem, 0.875rem + 0.42vw, 1.5rem);
    /* Body Large: 32px -> 30px -> 28px -> 24px -> 22px -> 20px -> 18px */
    --body-large: clamp(1.125rem, 0.875rem + 0.83vw, 2rem);
    /* Body Medium: 24px -> 24px -> 22px -> 20px -> 18px -> 18px -> 16px */
    --body-medium: clamp(1rem, 0.875rem + 0.42vw, 1.5rem);
    /* Body Small: 20px -> 20px -> 18px -> 18px -> 16px -> 16px -> 15px */
    --body-small: clamp(0.9375rem, 0.875rem + 0.21vw, 1.25rem);
    /* Body Extra Small: 16px -> 16px -> 15px -> 15px -> 14px -> 14px -> 13px */
    --body-xs: clamp(0.8125rem, 0.75rem + 0.21vw, 1rem);
    --font-weight-bold: 700;
    --font-weight-semibold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
    --font-weight-light: 300;
    --nav-bg: #ffffff;
    --nav-text: #1a1a1a;
    --nav-text-gray: #666666;
    --btn-secondary-bg: #e2e2e2;
    --btn-secondary-text: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.menu-open {
  overflow: hidden;
}

.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 120px);
    max-width: var(--max-width-desktop);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 80px;
    padding: 0.6rem;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.8);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--nav-text);
    font-weight: var(--font-weight-semibold);
    font-size: 1.25rem;
    padding-left: 12px;
}

.navbar-brand svg {
    width: 28px;
    height: 28px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.625rem 0.75rem;
    text-decoration: none;
    color: var(--nav-text);
    font-size: var(--body-small);
    font-weight: var(--font-weight-medium);
    border-radius: 40px;
}

.navbar-menu .nav-link {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.navbar-menu .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.navbar-menu .nav-link:hover {
    color: #ffffff;
}

.navbar-menu .nav-link:hover::before {
    opacity: 1;
}

.nav-link svg {
    width: 16px;
    height: 16px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    border: 0;
    outline: none;
    cursor: pointer;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: var(--font-weight-medium);
    font-size: var(--body-small);
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn:focus,
.btn:focus-visible,
.btn:active {
    outline: none;
    box-shadow: none;
}

.btn-secondary {
    background-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    padding: 0.625rem 1.25rem;
    height: 44px;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--primary);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary);
}

.btn-primary .btn-text {
    color: #ffffff;
}

.btn-primary:hover .btn-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-primary .btn-icon svg {
    stroke: #ffffff;
}

.btn-primary:hover .btn-icon svg {
    stroke: url(#btn-gradient);
}

.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:focus-within,
.btn-primary:active {
    outline: none;
    box-shadow: none;
}

.btn-primary:disabled {
    pointer-events: none;
    background: white;
    opacity: 0.6;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--nav-text);
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 120px 1.5rem 1.5rem 1.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.mobile-menu .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: var(--h3-size);
    font-weight: var(--font-weight-medium);
    color: var(--nav-text);
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
}

.mobile-menu .nav-link:hover {
    background: transparent;
    color: var(--primary);
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-cta {
    margin-top: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #ffffff;
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: var(--h3-size) !important;
}

.mobile-cta:hover {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .navbar {
        width: calc(100% - 80px);
    }
}

@media (max-width: 935px) {
    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 40px);
        padding: 0.5rem 0.75rem;
    }

    .navbar-brand {
        font-size: 1.125rem;
    }
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 160px 60px 60px;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: var(--max-width-desktop);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem 0.375rem 0.375rem;
    background-color: #f5f5f5;
    border: 1px solid #e5e7eb;
    border-radius: 80px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hero-badge:hover {
    background-color: #ebebeb;
}

.badge-new {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 80px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.badge-text {
    color: var(--nav-text);
    font-size: var(--body-xs);
    font-weight: var(--font-weight-medium);
}

.hero-badge svg {
    color: var(--nav-text);
}

.hero-title {
    font-size: var(--h0-size);
    font-weight: var(--font-weight-medium);
    color: var(--nav-text);
    line-height: 1.1;
}

.hero-description {
    font-size: var(--body-medium);
    color: var(--nav-text-gray);
    max-width: 720px;
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1rem 1.5rem;
    height: auto;
    font-size: var(--body-small);
    gap: 0.5rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--nav-text);
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

.hero-image {
    max-width: 960px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}




@media (max-width: 1024px) {
    .hero-section {
        padding: 140px 40px 60px;
        min-height: 100vh;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 20px 40px;
        min-height: 100vh;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 20px 40px;
    }

    .hero-actions {
        width: 100%;
        padding: 0;
    }

    .hero-actions .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .hero-badge {
        font-size: 0.875rem;
    }
}

@media (min-width: 1921px) {
    .hero-section {
        min-height: 100vh;
        padding: 200px 80px 80px;
        justify-content: center;
    }
}



/* ========== COMMITMENT SECTION ========== */
.commitment-section {
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 60px;
}

.commitment-section .container {
  max-width: var(--max-width-laptop);
  margin: 0 auto;
}

.commitment-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.commitment-heading {
  font-size: var(--h1-size);
  font-weight: var(--font-weight-medium);
  line-height: 130%;
  color: #d1d1d1;
  margin: 0;
}

.commitment-heading .word {
  display: inline-block;
  transition: color 0.3s ease;
}

.commitment-section .btn-lg {
  font-size: var(--body-medium);
}

.btn-with-icon {
  position: relative;
}

.btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.btn-icon svg {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-icon .icon-default {
  opacity: 1;
  transform: translateX(0);
}

.btn-icon .icon-hover {
  opacity: 0;
  transform: translateX(-4px);
}

.btn-with-icon:hover .icon-default {
  opacity: 0;
  transform: translateX(4px);
}

.btn-with-icon:hover .icon-hover {
  opacity: 1;
  transform: translateX(0);
}


/* Commitment Section - Mobile Responsive */
@media (min-width: 1921px) {
  .commitment-section {
    padding: 120px 80px;
  }
}

@media (max-width: 1024px) {
  .commitment-section {
    padding: 100px 40px;
  }

  .commitment-content {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .commitment-section {
    padding: 80px 20px;
  }

  .commitment-content {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .commitment-section {
    padding: 60px 20px;
  }
}



/* ========== IMPACT STATS SECTION ========== */
.impact-stats-section {
  min-height: 100vh;
  width: 100%;
  background-color: var(--accent-light);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 60px;
}
.impact-stats-section .container{
    max-width: var(--max-width-desktop);
}
.impact-stats-title {
  color: #000;
  text-align: center;
  font-size: var(--h1-size);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 130%;
  margin-bottom: 80px;
}

.impact-stats-subtitle {
  color: #000;
  text-align: left;
  font-size: var(--h3-size);
  font-weight: var(--font-weight-medium);
  line-height: 130%;
  margin-bottom: 32px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.impact-stats-subtitle .subtitle-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.impact-stats-subtitle:first-of-type {
  margin-top: 0;
}

.impact-stats-title span, .capabilities-title span, .features-title span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.impact-stat-box {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 96px;
}

.impact-stats-grid.hl .impact-stat-box{
  grid-column: span 2;
}

.impact-stats-grid.ha .impact-stat-box{
  grid-column: span 3;
}

.stat-label {
  color: #888;
  font-size: var(--body-small);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: 130%;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.stat-value {
  color: #000;
  font-size: var(--h1-size);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 130%;
  margin: 0;
}

.stat-text {
  color: #000;
  font-size: var(--body-medium);
  font-style: normal;
  font-weight: var(--font-weight-regular);
  line-height: 130%;
  margin: 0;
  max-width: 415px;
}

/* Impact Stats Section - Mobile Responsive */
@media (min-width: 1921px) {
  .impact-stats-section {
    padding: 120px 80px;
  }

  .impact-stats-grid {
    max-width: var(--max-width-wide);
    gap: 16px;
  }

  .impact-stat-box {
    padding: 40px;
  }
}


@media (max-width: 1024px) {
  .impact-stats-section {
    padding: 100px 40px;
  }

  .impact-stats-title {
    margin-bottom: 50px;
  }

  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .impact-stat-box {
    padding: 32px;
  }

  .impact-stats-grid.hl .impact-stat-box:nth-child(1),
  .impact-stats-grid.hl .impact-stat-box:nth-child(2) {
    grid-column: span 1;
  }

  .impact-stats-grid.hl .impact-stat-box:nth-child(3){
    grid-column: span 2;
  }
  .impact-stats-grid.ha .impact-stat-box{
    grid-column: span 1;
  }

}

@media (max-width: 768px) {
  .impact-stats-section {
    padding: 80px 20px;
  }

  .impact-stats-title {
    margin-bottom: 40px;
  }

  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .impact-stat-box {
    padding: 28px;
  }

  /* .impact-stat-box:nth-child(1),
  .impact-stat-box:nth-child(2),
  .impact-stat-box:nth-child(4),
  .impact-stat-box:nth-child(5) {
    grid-column: span 1;
  }

  .impact-stat-box:nth-child(3) {
    grid-column: span 2;
  } */
}

@media (max-width: 600px) {
  .impact-stats-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats-grid.hl .impact-stat-box, .impact-stats-grid.ha .impact-stat-box{
    grid-column: span 1 !important;
  }
}

@media (max-width: 480px) {
  .impact-stats-section {
    padding: 60px 20px;
  }

  .impact-stats-title {
    margin-bottom: 32px;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .impact-stat-box {
    padding: 24px;
    gap: 60px;
  }

  .stat-text {
    max-width: 100%;
  }
}



/* ========== FEATURES SECTION ========== */
.features-section {
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 60px;
}

.features-section .container {
  max-width: var(--max-width-desktop);
  margin: 0 auto;
}

.features-title {
  font-size: var(--h1-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  line-height: 1.3;
  margin-bottom: 60px;
  max-width: 800px;
}

.features-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: stretch;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item-wrapper {
  display: flex;
  flex-direction: column;
}

.feature-image-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .feature-image-mobile {
    display: none;
  }

  .feature-image-mobile.active {
    display: block;
  }

  .feature-image-mobile > div {
    width: 100%;
  }

  .feature-image-mobile img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
}

.feature-item {
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  border-radius: 16px;
}

.feature-item:hover {
  background-color: #f5f5f5;
}

.feature-item.active {
  border-left-color: var(--primary);
  background-color: #f5f5f5;
}

.feature-heading {
  font-size: var(--h5-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  margin: 0 0 8px 0;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.feature-heading::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item.active .feature-heading {
  color: transparent;
}

.feature-item.active .feature-heading::before {
  opacity: 1;
}

.feature-text {
  font-size: var(--body-small);
  color: var(--nav-text-gray);
  line-height: 1.3;
  margin: 0;
}

.features-image {
  background-color: #E4F4F3;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.features-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: opacity 0.25s ease;
}

/* Features Section - Mobile Responsive */
@media (min-width: 1921px) {
  .features-section {
    padding: 120px 80px;
  }
}

@media (max-width: 1024px) {
  .features-section {
    padding: 100px 40px;
  }

  .features-title {
    margin-bottom: 50px;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-image-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 80px 20px;
  }

  .features-title {
    margin-bottom: 40px;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-image-mobile.active {
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 60px 20px;
  }

  .features-title {
    margin-bottom: 32px;
  }

  .feature-item {
    padding: 16px;
  }

  .feature-image-mobile.active {
    padding: 16px 0;
  }
}



/* ========== CAPABILITIES SECTION ========== */
.capabilities-section {
  width: 100%;
  background-color: var(--accent-light);
  padding: 100px 60px;
}

.capabilities-section .container {
  max-width: var(--max-width-desktop);
  margin: 0 auto;
}

.capabilities-header {
  margin-bottom: 60px;
}

.capabilities-title {
  font-size: var(--h1-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 850px;
}

.capabilities-description {
  font-size: var(--body-medium);
  color: var(--nav-text-gray);
  line-height: 1.5;
  margin: 0;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.capability-card:nth-child(1) {
  grid-column: span 3;
}

.capability-card:nth-child(2) {
  grid-column: span 2;
}

.capability-card:nth-child(3) {
  grid-column: span 2;
}

.capability-card:nth-child(4) {
  grid-column: span 3;
}

.capability-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.capability-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-icon svg {
  width: 100%;
  height: 100%;
}

.capability-icon.icon-green {
  background-color: #d1fae5;
}

.capability-icon.icon-green svg {
  stroke: #059669;
}

.capability-icon.icon-purple {
  background-color: #e9d5ff;
}

.capability-icon.icon-purple svg {
  stroke: #9333ea;
}

.capability-icon.icon-orange {
  background-color: #fed7aa;
}

.capability-icon.icon-orange svg {
  stroke: #ea580c;
}

.capability-icon.icon-yellow {
  background-color: #fef08a;
}

.capability-icon.icon-yellow svg {
  stroke: #ca8a04;
}

.capability-heading {
  font-size: var(--h4-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  margin: 0;
  line-height: 1.3;
}

.capability-text {
  font-size: var(--body-small);
  color: var(--nav-text-gray);
  line-height: 1.5;
  margin: 0;
}

/* Capabilities Section - Mobile Responsive */
@media (min-width: 1921px) {
  .capabilities-section {
    padding: 120px 80px;
  }
}

@media (max-width: 1024px) {
  .capabilities-section {
    padding: 100px 40px;
  }

  .capabilities-header {
    margin-bottom: 50px;
  }

  .capability-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .capabilities-section {
    padding: 80px 20px;
  }

  .capabilities-header {
    margin-bottom: 40px;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .capability-card,
  .capability-card:nth-child(1),
  .capability-card:nth-child(2),
  .capability-card:nth-child(3),
  .capability-card:nth-child(4) {
    grid-column: span 1;
    padding: 28px;
    gap: 20px;
  }

  .capability-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .capabilities-section {
    padding: 60px 20px;
  }

  .capabilities-header {
    margin-bottom: 32px;
  }

  .capability-card {
    padding: 24px;
    gap: 16px;
  }

  .capability-icon {
    width: 44px;
    height: 44px;
  }
}



/* ========== FAQ SECTION ========== */
.faq-section {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 60px;
}

.faq-section .container {
  max-width: var(--max-width-desktop);
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-size: var(--h1-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  line-height: 1.3;
  margin: 0;
}

.faq-title span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item-wrapper {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item-wrapper:last-child {
  border-bottom: none;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-question {
  font-size: var(--body-small);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  line-height: 1.4;
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  color: var(--nav-text-gray);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item-wrapper.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: var(--body-small);
  font-weight: var(--font-weight-regular);
  color: var(--nav-text-gray);
  line-height: 1.6;
  margin: 0;
}

/* FAQ Section - Mobile Responsive */
@media (min-width: 1921px) {
  .faq-section {
    padding: 120px 80px;
  }
}

@media (max-width: 1024px) {
  .faq-section {
    padding: 100px 40px;
  }

  .faq-header {
    margin-bottom: 50px;
  }

  .faq-item {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 20px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-item {
    padding: 20px 0;
  }

  .faq-item-wrapper.active .faq-answer {
    padding-bottom: 20px;
  }

  .faq-column-left .faq-item-wrapper:last-child {
    border-bottom: 1px solid #e5e7eb;
  }

  .faq-column-right .faq-item-wrapper:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-header {
    margin-bottom: 32px;
  }

  .faq-item {
    padding: 16px 0;
  }

  .faq-item-wrapper.active .faq-answer {
    padding-bottom: 16px;
  }
}



/* ========== CTA SECTION ========== */
.cta-wrapper {
  padding: 0px 30px;
  background-color: #ffffff;
}

.cta-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to right, var(--primary), var(--secondary));;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 30px;
}

.cta-title {
  font-size: var(--h0-size);
  font-weight: var(--font-weight-medium);
  color: white;
  line-height: 1.15;
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  height: auto;
}

.cta-actions .btn-primary {
  background: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
}

.cta-actions .btn-primary .btn-text {
  color: #000000;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.cta-actions .btn-primary .btn-icon svg {
  stroke: #000000;
}

.cta-actions .btn-primary:hover {
  background: transparent;
  border-color: #ffffff;
}

.cta-actions .btn-primary:hover .btn-text {
  color: #ffffff;
  background: none;
}

.cta-actions .btn-primary:hover .btn-icon svg {
  stroke: #ffffff;
}

.cta-actions .btn-cta-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-actions .btn-cta-outline:hover {
  background-color: #ffffff;
  color: #000000;
}

/* CTA Section - Mobile Responsive */
@media (max-width: 1024px) {
  .cta-wrapper {
    padding: 0 20px;
  }

  .cta-section {
    min-height: 70vh;
  }

  .cta-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .cta-wrapper {
    padding: 0 20px;
  }

  .cta-section {
    min-height: 60vh;
    border-radius: 24px;
  }

  .cta-content {
    padding: 40px 20px;
  }

  .cta-title {
    margin-bottom: 32px;
  }

}

@media (max-width: 480px) {
  .cta-section {
    min-height: 70vh;
  }

  .cta-content {
    padding: 40px 20px;
  }

  .cta-title {
    margin-bottom: 28px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    padding: 0.75rem 1rem !important;
    width: 100%;
  }

}



/* ========== FOOTER SECTION ========== */
.footer {
  position: relative;
  width: 100%;
  background-color: white;
  padding: 100px 30px 40px;
  overflow: hidden;
}

.footer-container {
  position: relative;
  z-index: 10;
  max-width: var(--max-width-desktop);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: var(--h5-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f5f5f5;
  border-radius: 50%;
  color: var(--nav-text);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.social-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.social-box:hover {
  color: #ffffff;
}

.social-box:hover::before {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: var(--body-xs);
  color: var(--nav-text-gray);
}

.footer-bottom a {
  color: var(--nav-text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--primary);
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Footer - Tablet Responsive */
@media (max-width: 1024px) {
  .footer {
    padding: 80px 48px 40px;
  }

  .footer-nav {
    gap: 32px;
  }
}

/* Footer - Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 80px 20px 32px;
  }

  .footer-container {
    gap: 32px;
  }

  .footer-nav {
    gap: 24px;
  }

  .footer-socials {
    gap: 10px;
  }

  .social-box {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-dot {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 60px 20px 24px;
  }

  .footer-logo img {
    height: 32px;
  }

  .social-box {
    width: 36px;
    height: 36px;
  }

  .social-box svg {
    width: 16px;
    height: 16px;
  }
}


/* ========== DEVICE-SPECIFIC HERO PADDING FIXES ========== */

/* Nest Hub (1024 x 600) */
@media (width: 1024px) and (height: 600px) {
  .hero-section {
    padding-top: 120px;
  }
}

/* Surface Duo (540 x 720) */
@media (width: 540px) and (height: 720px) {
  .hero-section {
    padding-top: 100px;
  }
}

/* Samsung Galaxy S8+ (360 x 740) */
@media (width: 360px) and (height: 740px) {
  .hero-section {
    padding-top: 50px;
  }
}

/* iPhone SE (375 x 667) */
@media (width: 375px) and (height: 667px) {
  .hero-section {
    padding-top: 60px;
  }
}



/* ========== LEGAL PAGES (Privacy Policy & Terms) ========== */

.legal-page {
    padding: 160px 60px 100px;
    min-height: 100vh;
    background-color: #ffffff;
}

.legal-container {
    max-width: var(--max-width-laptop);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.legal-title {
    font-size: var(--h1-size);
    font-weight: var(--font-weight-medium);
    color: var(--nav-text);
    line-height: 1.3;
    margin-bottom: -32px;
}

.legal-updated {
    font-size: var(--body-small);
    color: var(--nav-text-gray);
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section h2 {
    font-size: var(--h4-size);
    font-weight: var(--font-weight-medium);
    color: var(--nav-text);
    line-height: 1.4;
    margin-bottom: 16px;
}

.legal-section p {
    font-size: var(--body-small);
    font-weight: var(--font-weight-regular);
    color: var(--nav-text-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.legal-section ul li {
    font-size: var(--body-small);
    font-weight: var(--font-weight-regular);
    color: var(--nav-text-gray);
    line-height: 1.7;
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 50%;
}

.legal-section ul li strong {
    color: var(--nav-text);
    font-weight: var(--font-weight-medium);
}
.legal-section p a{
  text-decoration: none;
  color: black;
}
/* Legal Footer */
.legal-footer {
    background-color: #f9fafb;
    padding: 40px 60px;
    border-top: 1px solid #e5e7eb;
}

.legal-footer-content {
    max-width: var(--max-width-laptop);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-footer-content p {
    font-size: var(--body-xs);
    color: var(--nav-text-gray);
    margin: 0;
}

.legal-footer-links {
    display: flex;
    gap: 32px;
}

.legal-footer-links a {
    font-size: var(--body-xs);
    color: var(--nav-text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-footer-links a:hover {
    color: var(--primary);
}

/* Legal Pages - Responsive */
@media (max-width: 1024px) {
    .legal-page {
        padding: 140px 40px 80px;
    }

    .legal-footer {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 20px 60px;
    }

    .legal-container {
        gap: 36px;
    }

    .legal-updated {
        padding-bottom: 30px;
    }

    .legal-footer {
        padding: 32px 20px;
    }

    .legal-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-footer-links {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 100px 20px 50px;
    }

    .legal-container {
        gap: 32px;
    }

    .legal-updated {
        padding-bottom: 24px;
    }

    .legal-section ul li {
        padding-left: 20px;
    }

    .legal-footer {
        padding: 28px 20px;
    }

    .legal-footer-links {
        flex-direction: column;
        gap: 16px;
    }
}


/* ========== CONTACT MODAL ========== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  height: auto;
  overflow-y: auto;
  position: relative;
  max-height: calc(100vh - 40px);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-container::-webkit-scrollbar {
  width: 12px;
}

.modal-container::-webkit-scrollbar-thumb {
  cursor: pointer;
  border-radius: 9999px;
  border: 3px solid transparent;
  background-color: var(--secondary); 
  background-clip: padding-box;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
}

.modal-container::-webkit-scrollbar-track {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
  cursor: pointer;
  background-color: transparent;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #e5e5e5;
  transform: rotate(90deg);
}

.modal-close svg {
  stroke: var(--nav-text);
}

.modal-content {
  padding: 48px 40px;
  transition: opacity 0.3s ease;
}

.modal-content.fade-out {
  opacity: 0;
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-title {
  font-size: var(--h4-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
  margin-bottom: 8px;
}

.modal-description {
  font-size: var(--body-small);
  color: var(--nav-text-gray);
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: var(--body-xs);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Satoshi', sans-serif;
  font-size: var(--body-small);
  color: var(--nav-text);
  background: #f9fafb;
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  background: #ffffff;
  border-color: var(--primary);
}

.form-input.error {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-textarea::-webkit-scrollbar {
  width: 10px;
}

.form-textarea::-webkit-scrollbar-thumb {
  cursor: pointer;
  border-radius: 9999px;
  border: 2px solid transparent;
  background-color: var(--accent-light);
  background-clip: padding-box;
}

.form-textarea::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary);
}

.form-textarea::-webkit-scrollbar-track {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
  cursor: pointer;
  background-color: transparent;
}

.form-error {
  font-size: 0.8125rem;
  color: #ef4444;
  min-height: 18px;
  display: block;
}

.btn-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  position: relative;
}

.btn-submit:disabled {
  pointer-events: none;
  opacity: 0.8;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  cursor: not-allowed;
}

.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-submit.loading .btn-text {
  opacity: 0;
}

.btn-submit.loading .btn-spinner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Success State */
.modal-success {
  display: none;
  padding: 60px 40px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.modal-success.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-title {
  font-size: var(--h4-size);
  font-weight: var(--font-weight-medium);
  color: var(--nav-text);
}

.success-description {
  font-size: var(--body-small);
  color: var(--nav-text-gray);
  line-height: 1.6;
  max-width: 360px;
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 16px;
    /* align-items: flex-end; */
  }

  .modal-container {
    max-width: 100%;
    /* max-height: 90vh; */
    border-radius: 24px;
  }

  .modal-content {
    padding: 60px 24px;
  }

  .modal-success {
    padding: 48px 24px;
  }

  .modal-close {
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
  }

  .modal-close svg{
    width: 20px;
    height: 20px;
}

  .modal-header {
    margin-bottom: 35px;
  }

  .form-input {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 42px 20px;
    max-height: 90vh;
  }

  .modal-success {
    padding: 40px 20px;
  }

  .modal-header {
    margin-bottom: 20px;
  }

  .modal-form {
    gap: 16px;
  }

  .success-icon {
    width: 64px;
    height: 64px;
  }

  .success-icon svg {
    width: 48px;
    height: 48px;
  }
}

/* Body scroll lock when modal is open */
body.modal-open {
  overflow: hidden;
}

