:root {
  --color-bg: rgba(250, 247, 233, 0.7);
  --color-text: #333;
  --stripe-color: rgba(250, 241, 218, 0.7);
  --stripe-width: 75px;
  --btn-primary-bg: rgb(223, 198, 109);
  --btn-secondary: #A89E6A;
  --main-color: rgb(223, 198, 109);
  --col-w: 24px;
  --card-gradient: linear-gradient(135deg, #f0ebe3, #f5dbb0);
  --card-hover: rgba(200, 200, 200, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.2);
  --glass-border: rgba(255, 255, 255, 0.4);
  --accent: #D8D49F;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

html, body {
  height: 100%;
  margin: 0;
}

.footer-section {
  margin-top: auto;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
       url('../fonts/Montserrat-Regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
       url('../fonts/Montserrat-Medium.woff') format('woff');
  font-display: swap;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(231, 179, 179, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--btn-primary-bg);
  text-decoration: none;
}

header nav {
  display: flex;
  gap: 2rem;
}

nav a {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 10px;
  padding: 0.25rem 0.8rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, color 0.3s;
  will-change: transform, box-shadow;
}

nav a:hover {
  transform: scale(0.95) translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a:active {
  transform: scale(0.92) translateY(2px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.15);
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

.btn-signup {
  padding: 0.8rem 1.4rem;
  background-color: rgb(223, 198, 109);
  color: #fff;
  border: none;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  will-change: transform, box-shadow;
}

.btn-signup:hover {
  transform: scale(0.98) translateY(1px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-signup:active {
  transform: scale(0.96) translateY(2px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.15);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s;
}

.nav-open nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
}

.nav-open .header-buttons {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.wrapper {
  padding-top: 70px;
}

.hero {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
  padding: 2rem 2rem 4rem;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--stripe-color);
  transform: rotate(45deg);
}

.hero::before {
  top: 10%;
  left: -50px;
}

.hero::after {
  bottom: 15%;
  right: -50px;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62vh;
}

.hero .stripe {
  position: absolute;
  top: -50%;
  width: var(--stripe-width);
  height: 200%;
  background: var(--stripe-color);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: -1;
}

.hero .stripe:nth-of-type(1) { left: 12%; }
.hero .stripe:nth-of-type(2) { left: 27%; }
.hero .stripe:nth-of-type(3) { left: 42%; }
.hero .stripe:nth-of-type(4) { left: 57%; }
.hero .stripe:nth-of-type(5) { left: 72%; }
.hero .stripe:nth-of-type(6) { left: 87%; }

.hero-content {
  width: 45%;
  max-width: 500px;
  text-align: left;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-hero {
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 1.4rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  will-change: transform, box-shadow;
}

.btn-primary-hero {
  background-color: rgb(223, 198, 109);
  color: #fff;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary-hero:hover {
  transform: scale(0.99) translateY(1px);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary-hero {
  background-color: transparent;
  color: #1F1F1F;
  border: 1px solid rgb(223, 198, 109);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

.btn-secondary-hero:hover {
  transform: scale(0.99) translateY(1px);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-secondary-hero:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: inset 0 5px 7px rgba(0, 0, 0, 0.15);
}

.hero-image {
  margin-top: -100px;
  width: 59%;
  aspect-ratio: 1/1;
  max-width: 1000px;
  transform-origin: center center;
  animation:
    pop-in 1s ease-out 0s 1 forwards,
    float 4s ease-in-out 1s infinite;
  z-index: 1;
}

@keyframes pop-in {
  0%   { transform: scale(0.5); opacity: 0; }
  20%  { transform: scale(1.2); opacity: 1; }
  40%  { transform: scale(0.85); }
  60%  { transform: scale(1.05); }
  80%  { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.security-img {
  animation: float 4s ease-in-out infinite;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
    height: auto;
  }
  .hero-content {
    width: 100%;
    text-align: center;
  }
  .hero-image {
    width: 80%;
    margin-top: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav, .header-buttons {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  color: #333;
}

.logo-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 0.5rem;
}

.blockchain-bg {
  z-index: 2;
}

.metrics-section {
  padding: 4rem 1rem;
}

.metrics-card {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  background: #fdfdfb;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #333 0%, rgb(223, 198, 109) 50%, rgba(250, 241, 218, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.25rem;
}

.features-section {
  margin-top: 0;
}

.features-header {
  max-width: 1400px;
  margin: 0 auto;
  background: #333;
  color: #fff;
  border-radius: 1rem 1rem 0 0;
  padding: 2rem 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.features-divider {
  width: 1px;
  background: #e0e0e080;
  align-self: stretch;
  margin: 0 auto;
}

.features-title {
  flex: 1 1 300px;
  font-size: 2rem;
  line-height: 1.5;
}

.features-intro {
  flex: 1 1 400px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.features-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-info h4 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--color-text);
}

.feature-info p {
  margin: 0;
  font-size: 1.1rem;
  color: #555;
}

@media (max-width: 768px) {
  .features-header {
    flex-direction: column;
    text-align: center;
  }
  .features-intro {
    max-width: none;
  }
}

.downloads-section {
  padding: 4rem 1rem;
  background: var(--card-gradient);
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.downloads-box {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  background: #fdfdfb;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.download-item {
  flex: 1;
  padding: 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fdfdfb;
}

.download-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  right: 0;
  width: 1px;
  background: #e0e0e0;
}

.download-icon {
  width: 48px;
  height: 48px;
}

.download-title {
  font-size: 1.3rem;
  color: var(--color-text);
  margin: 0;
}

.download-desc {
  font-size: 1.05rem;
  color: #555;
  margin: 0;
}

.download-buttons {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-buttons .btn {
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.2s ease;
  will-change: transform, box-shadow;
}

.download-buttons .btn:hover {
  transform: scale(0.98) translateY(1px);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.download-buttons .btn:active {
  transform: scale(0.96) translateY(2px);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 1rem;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: transform 0.2s, background-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: rgb(223, 198, 109);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgb(223, 198, 109);
  color: #fff;
}

.btn-secondary:hover {
  transform: translateY(-1px);
}

.sig-icon {
  width: 1rem;
  height: 1.44rem;
  filter: invert(1);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-content h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.modal-content pre {
  white-space: pre-wrap;
  word-break: break-all;
  background: #f5f5f5;
  padding: 1rem;
  border-radius: 0.25rem;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .downloads-box {
    flex-direction: column;
  }
  .download-item:not(:last-child)::after {
    display: none;
  }
}

.features-title .highlight {
  background-color: rgb(223, 198, 109);
  padding: 3px 8px;
  border-radius: 1rem;
  color: #333;
}

.security-heading .highlight {
  background-color: rgb(223, 198, 109);
  padding: 5px 15px;
  margin-left: -7px;
  line-height: 1.8;
  border-radius: 1.5rem;
  color: #333;
}

.security-section {
  background: var(--color-bg);
  padding: 7rem 1rem;
  position: relative;
  overflow: hidden;
}

.security-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}




.security-text {
  flex: 1 1 520px;
}

.security-heading {
  font-size: 2.9rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2.7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.security-features {
  background: var(--card-gradient);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.security-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.feature-title {
  margin: 0 0 .25rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.feature-desc {
  margin: 0;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.55;
}

.security-illustration {
  flex: 1 1 500px;
  text-align: right;
}

.security-img {
  max-width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .security-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .security-illustration {
    text-align: center;
  }
  .security-text {
    flex-basis: 100%;
  }
}

.security-glass {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2c3e50, #4ca1af);
  color: #fff;
  text-align: center;
}

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

.glass-title {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  position: relative;
}

.glass-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 50%;
  height: 3px;
  background: var(--accent);
  transform: translateX(-50%);
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
}

.glass-card.visible {
  animation: fadeInUp 0.8s forwards;
}

.glass-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.glass-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.glass-card p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.glass-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blockchain-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blockchain-bg .column {
  flex: 0 0 var(--col-w);
  margin: 0 4px;
  height: var(--col-h);
  background: linear-gradient(to top, rgba(252,175,79,.9) 0%, rgba(216,212,159,.3) 100%);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  opacity: 0;
  animation: rise 1s ease-out forwards var(--delay);
}

@keyframes rise {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.frRoadSec {
  position: relative;
  margin: 5rem auto;
  max-width: 1400px;
  z-index: 1;
  border: 1px solid var(--glass-border);
  border-radius: 35px;
  padding: 2rem;
}

.frGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 3rem;
}

@media (max-width: 960px) {
  .frGrid {
    grid-template-columns: 1fr;
  }
}

.frParallaxBg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(135deg, #f0ebe3, #f5dbb0);
  border-radius: 35px;
  z-index: 0;
}

.frParallaxBg .column {
  flex: 0 0 var(--col-w, 24px);
  margin: 0 4px;
  height: var(--col-h);
  background: linear-gradient(to top, rgba(252,175,79,.9) 0%, rgba(216,212,159,.3) 100%);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
}

.frParallaxBg .column.animate {
  animation: rise 1s ease-out forwards var(--delay);
}

.frFeatureCard,
.frRoadCard {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(2px);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem 2.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.frTitle {
  font-size: 2rem;
  margin: 0 0 2rem;
}

.frHighlight {
  background: var(--main-color);
  padding: 5px 17px;
  border-radius: 1rem;
  color: #333;
}

.frFeatureList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.frFeatureItem h4 {
  margin: 0 0 .35rem;
  font-size: 1.3rem;
  color: var(--color-text);
}

.frFeatureItem p {
  margin: 0;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}

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

.frTrack {
  display: flex;
  transition: transform .5s ease;
}

.frItem {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.05);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.frItemImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.frItemImgWrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}

.frItemText {
  padding: 1rem;
}

.frItem.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.frFeatureItem {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.frFeatureIcon {
  flex: 0 0 auto;
  margin-top: 0.25rem;
  color: var(--main-color);
}

.frFeatureContent {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.frFeatureContent h4 {
  margin-bottom: 0.25rem;
}

.frItemText .frDate {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .05em;
  background: var(--main-color);
  color: #fff;
  padding: .25rem .75rem;
  border-radius: .75rem;
  margin-bottom: .6rem;
  display: inline-block;
}

.frItemText h4 {
  font-size: 1.3rem;
  margin: 0 0 .5rem;
  color: var(--color-text);
}

.frItemText p {
  font-size: 1.2rem;
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.frItem.animate,
.frItem.active {
  opacity: 1;
  transform: translateY(0);
}

.frDots {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.frDots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background .3s;
}

.frDots button.active {
  background: var(--main-color);
}

@media (max-width: 1450px) {
  .security-wrapper {
    max-width: 1200px;
  }
  .frRoadSec {
    max-width: 1200px;
  }
  .downloads-box {
    max-width: 1200px;
  }
  .features-header {
    max-width: 1200px;
  }
}

.what-is-section {
  background: #333;
  color: #fff;
  padding: 6rem 1rem;
}

.what-is-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.what-is-text {
  flex: 1 1 600px;
}

.what-is-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--main-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.what-is-subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #eee;
}

.what-is-description {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ccc;
}

.what-is-image {
  flex: 1 1 500px;
  text-align: center;
}

.what-is-actual-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 1rem;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .what-is-container {
    flex-direction: column;
    text-align: center;
  }
  .what-is-text,
  .what-is-image {
    flex-basis: 100%;
  }
}

@media (max-width: 1450px) {
  .what-is-container {
    max-width: 1200px;
  }
}

.footer-section {
  background-color: rgb(25,25,25);
  color: #fff;
  padding: 4rem 2rem 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-left {
  position: relative;
  padding: 2rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-left-img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(1.4);
  max-height: 100%;
  max-width: 100%;
  margin-left: 70px;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.footer-left-content {
  position: relative;
  z-index: 1;
  padding: 2.4rem 4rem;
  border-radius: 2rem;
}

.footer-title {
  font-size: 2rem;
  color: var(--main-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.footer-slogan {
  font-size: 1.1rem;
  color: #ccc;
}

.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-right .footer-socials {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 1rem;
}

.footer-subtitle {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: inline-block;
}

.footer-socials svg {
  fill: #ccc;
  transition: fill 0.3s ease;
}

.footer-socials a:hover svg {
  fill: var(--main-color);
}

@media (max-width: 960px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .footer-left {
    justify-content: center;
    background-position: center;
  }
  .footer-left-content {
    margin: 0 auto;
  }
  .footer-socials {
    justify-content: center;
  }
}

.footer-bottom {
  background-color: rgb(10, 10, 10);
  padding: 1.2rem 2rem;
  color: #bbb;
  font-size: 0.9rem;
}

.footer-bottom-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-container a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-container a:hover {
  color: var(--main-color);
}

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



.site-header .main-nav a {
  color: var(--nav-link-color, #333);
  transition: color 0.3s ease;
}


.site-header.white-nav .main-nav a {
  color: #fff;
}
.site-header .logo {
  transition: color 0.3s ease;
}

.site-header.white-nav .logo {
  color: #e0dddd;
}