/* ===== RESET AND BASE STYLES ===== */
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container,
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER STYLES ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 10px 0px;
  transition: all 0.5s ease-in-out;

  &.dark {
    background: transparent;
    background-image: linear-gradient(
      88deg,
      rgba(26, 33, 43, 0),
      rgba(26, 33, 43, 0) 50%,
      rgba(159, 159, 159, 0.42)
    );
    box-shadow: none;
    padding: 25px 0;

    .brand-tagline {
      color: #ccc;
    }

    .nav-item-title {
      color: #ffffff;
    }

    .search-icon {
      filter: invert(1);
    }

    .menu-line {
      background: #ffffff;
    }

    .nav-dropdown-list {
      background: #1a212b;
      background-image: linear-gradient(
        180deg,
        rgba(26, 33, 43, 1) 0%,
        rgba(26, 33, 43, 0.89) 50%,
        rgba(26, 33, 43, 0.57) 100%
      );
      border-top: 1px solid #2a3541;
      border-bottom: 1px solid #2a3541;
    }

    .nav-dropdown-link:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .nav-dropdown-link p {
      color: #bdc3c7;
    }

    .lang-dropdown {
      .nav-item-title {
        color: #ffffff;
      }

      .nav-dropdown-icon {
        border-color: #ffffff;
      }

      .nav-dropdown-list {
        background: #1a1a1a;
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
      }

      .nav-dropdown-link:hover {
        background-color: #333333;
      }

      .nav-dropdown-link p {
        color: #ffffff;
      }
    }
  }
}

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

/* Brand Section */
.brand-section {
  display: flex;
  align-items: center;
  gap: 16px;

  .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;

    &:hover {
      opacity: 0.8;
    }

    .brand-logo {
      height: 35px;
      width: auto;
      display: block;
    }
  }

  .brand-tagline {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-left: 0;
    white-space: nowrap;
  }
}

/* Navigation Menu */
.nav-menu-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;

  .nav-menu-shadow-overlay {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

/* Mobile Menu Elements */
.tablet-menu {
  display: none;
}

.close-menu-button {
  display: none;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;

  .menu-line {
    width: 24px;
    height: 2px;
    background: #333333;
    transition: all 0.3s ease;
  }
}

/* Navigation Dropdowns */
.nav-dropdown {
  position: relative;

  &:hover {
    .nav-dropdown-icon {
      transform: rotate(225deg);
    }

    .nav-dropdown-list {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(10px);
    }
  }

  .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    text-decoration: none;

    &:hover {
      opacity: 0.8;
    }
  }

  .nav-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    transition: color 0.3s ease;
  }

  .nav-dropdown-icon {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .nav-dropdown-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-dropdown-link {
    padding: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;

    &:hover {
      background: #f8f9fa;
    }

    p {
      font-size: 14px;
      color: #666666;
      margin: 0;
      line-height: 1.4;
    }
  }
}

/* Right Elements */
.nav-right-elements {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  margin: 0px 10px 0px 0px;

  &.active {
    .nav-dropdown-icon {
      transform: rotate(-135deg);
    }

    .nav-dropdown-list {
      opacity: 1 !important;
      visibility: visible !important;
      transform: translateY(0) !important;
    }
  }

  .nav-dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .nav-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    padding: 0px;
    border-bottom: none;
    transition: color 0.3s ease;
    width: 45px;
    height: 25.5px;
    display: flex;
    align-items: center;
  }

  .nav-dropdown-icon {
    width: 8px;
    height: 8px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .nav-dropdown-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 120px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav-dropdown-link {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;

    &:hover {
      background-color: #f5f5f5;
    }

    p {
      font-size: 14px;
      font-weight: 500;
      color: #333333;
      margin: 0;
    }
  }
}

/* Contact Button */
.nav-contact {
  background: #ff0037 !important;
  color: #ffffff !important;
  padding: 15px 20px !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0px;
  transition: all 0.3s ease;
  box-shadow: rgba(247, 64, 112, 0.3) 0px 6px 10px 0px;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  width: 146.43px;
  height: 43.98px;
  display: flex;
  align-items: center;
  justify-content: center;

  &:hover {
    background: #e6003d !important;
    box-shadow: rgba(247, 64, 112, 0.4) 0px 8px 12px 0px;
    transform: translateY(-1px);
  }

  &:active {
    transform: translateY(0);
    box-shadow: rgba(247, 64, 112, 0.3) 0px 6px 10px 0px;
  }
}

/* ===== MAIN CONTENT STYLES ===== */
.main-content {
  padding-top: 80px;
}

/* ===== HERO INTRODUCTION SECTION ===== */
.hero-introduction {
  background: #04090d;
  padding: 6rem 0 4rem 0;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  padding-top: 8rem;
  min-height: 100vh;

  /* Hero overlay for better text readability */
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #04090d;
    z-index: 2;
  }
}

.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-message {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 800px;
  width: 100%;

  h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
}

.hero-description {
  font-size: 1.4rem;
  color: #bdc3c7;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.hero-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.1;

  .pixel-lines {
    width: 200px;
    height: auto;
  }
}

/* ===== ACTION BUTTON STYLES ===== */
.primary-action-btn,
.secondary-action-btn,
.demo-action-btn {
  max-width: 300px;
  display: inline-block;
  background: transparent;
  color: white;
  padding: 8px 32px;
  border: 2px solid #ffffff;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
  }

  &:hover {
    color: #1a212b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);

    &::before {
      left: 0;
    }
  }
}

.primary-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 0, 55);
  border-color: rgb(255, 0, 55);

  &::before {
    background: rgb(220, 0, 47);
  }

  &:hover {
    border-color: rgb(220, 0, 47);
    color: #ffffff;
  }
}

/* Legacy CTA button support */
.cta-button {
  max-width: 240px;
  display: inline-block;
  background: transparent;
  color: white;
  padding: 8px 32px;
  border: 2px solid #ffffff;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
  }

  &:hover {
    color: #1a212b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);

    &::before {
      left: 0;
    }
  }

  &.primary {
    background: rgb(255, 0, 55);
    border-color: rgb(255, 0, 55);

    &::before {
      background: rgb(220, 0, 47);
    }

    &:hover {
      border-color: rgb(220, 0, 47);
      color: #ffffff;
    }
  }
}

/* ===== SECURITY VULNERABILITY WARNING SECTION ===== */
.security-vulnerability-warning {
  padding: 6rem 0;
  background: rgb(242, 242, 242);
}

.warning-layout {
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 4rem;
  align-items: center;
}

.warning-message {
  padding-right: 2rem;

  h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
}

.vulnerability-description {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 2.5rem;

  a {
    color: #007acc;
    text-decoration: none;
    border-bottom: 2px solid #007acc;
    font-weight: 600;
    transition: all 0.3s ease;

    &:hover {
      color: #005999;
      border-bottom-color: #005999;
      background-color: rgba(0, 122, 204, 0.1);
    }
  }
}

.vulnerability-link {
  color: #007acc;
  text-decoration: underline;
  border-bottom: 1px solid #007acc;

  &:hover {
    color: #005999;
    border-bottom-color: #005999;
  }
}

.business-impact {
  h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
  }
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;

  li {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;

    &::before {
      content: '•';
      color: rgb(255, 0, 55);
      font-weight: bold;
      position: absolute;
      left: 0;
      font-size: 1.2rem;
    }
  }
}

.warning-illustration {
  display: flex;
  justify-content: center;
  align-items: center;

  img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  }
}

/* ===== SECURITY DEMONSTRATION SECTION ===== */
.security-demonstration {
  padding: 6rem 0;
  background: rgb(217, 217, 217);

  .demo-action-btn {
    background: transparent;
    color: #333333;
    border-color: #333333;

    &::before {
      background: #333333;
    }

    &:hover {
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(51, 51, 51, 0.2);
    }
  }

  .cta-button {
    background: transparent;
    color: #333333;
    border-color: #333333;

    &::before {
      background: #333333;
    }

    &:hover {
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(51, 51, 51, 0.2);
    }
  }
}

.demonstration-header {
  text-align: center;
  margin-bottom: 4rem;

  h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin: 0;
  }
}

.demonstration-content {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 4rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.demo-information {
  h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1rem;
  }
}

.demo-summary {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.demo-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  .demo-action-btn.active {
    background: #333333;
    color: #ffffff;

    &::before {
      left: 0;
    }
  }
}

.update-timestamp {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}

.demo-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-embed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;

  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

/* ===== PROTECTION LIFECYCLE SECTION ===== */
.protection-lifecycle {
  padding: 6rem 0;
  background: #e0e0e0;
}

.lifecycle-header {
  text-align: center;
  margin-bottom: 3rem;

  h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 2rem;
  }

  .lifecycle-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
  }
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.lifecycle-column {
  display: flex;
  flex-direction: column;

  .column-header {
    background: #1a5449;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem;
    text-align: center;
  }

  .column-content {
    background: #4a9d8f;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;

    h3 {
      color: #ffffff;
      font-size: 1.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
    }
  }

  .feature-box {
    background: #b3e0d9;
    padding: 1.5rem;
    border-radius: 4px;

    h4 {
      color: #1a1a1a;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;

      .subtitle {
        font-size: 0.9rem;
        font-weight: 600;
        display: inline;
      }
    }

    p {
      color: #333333;
      font-size: 1rem;
      line-height: 1.5;
      margin: 0;
    }
  }
}

.threat-intelligence-footer {
  background: #1a5449;
  color: #ffffff;
  padding: 2rem;
  text-align: center;

  h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  p {
    font-size: 1.1rem;
    margin: 0;
  }
}

/* ===== PARTNERSHIP ANNOUNCEMENT SECTION ===== */
.partnership-announcement {
  padding: 6rem 0;
  background: #e8e8e8;

  h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4rem;
  }
}

.partnership-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partnership-visual {
  img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

.partnership-details {
  h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 2rem 0;
  }
}

.partnership-button {
  display: inline-block;
  background: #ff0037;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0px;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  &:hover {
    background: #e6003d;
    transform: translateY(-1px);
  }

  &:active {
    transform: translateY(0);
  }
}

.press-release-link {
  color: rgb(255, 0, 55);
  font-weight: 600;
  text-decoration: none;

  &:hover {
    text-decoration: underline;
  }
}

/* ===== FREQUENTLY ASKED QUESTIONS SECTION ===== */
.frequently-asked-questions {
  padding: 6rem 0 4rem 0;
  background: rgb(242, 242, 242);

  h2 {
    text-align: left;
    font-size: 3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 3rem;
  }
}

.questions-list {
  margin-bottom: 3rem;
}

.question-item {
  margin-bottom: 1.5rem;
  background: #ffffff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;

  &:hover {
    background-color: #f8f8f8;
  }
}

.question-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  padding-right: 1rem;
}

.toggle-answer {
  background: none;
  border: none;
  font-size: 2rem;
  font-weight: 300;
  color: #333333;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;

  &:hover {
    transform: scale(1.1);
  }

  .icon-close {
    display: none;
    font-size: 2.5rem;
    line-height: 1;
  }

  .icon-plus {
    display: block;
    font-size: 2rem;
    line-height: 1;
  }
}

.answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.answer-text {
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  padding: 0;

  a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;

    &:hover {
      color: #0052a3;
      text-decoration: underline;
    }
  }

  strong {
    font-weight: 700;
  }

  ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style-type: disc;
  }

  li {
    margin-bottom: 0.75rem;
    line-height: 1.6;

    &:last-child {
      margin-bottom: 0;
    }
  }
}

/* Active state - when FAQ is expanded */
.question-item.active {
  .toggle-answer {
    .icon-plus {
      display: none;
    }

    .icon-close {
      display: block;
    }
  }

  .answer-content {
    max-height: 1000px;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
}

.faq-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-button {
  background: #ff0037;
  color: #ffffff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0px;
  transition: all 0.3s ease;
  display: inline-block;

  &:hover {
    background: #cc002c;
    transform: translateY(-2px);
  }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0 2rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 2rem;
  align-items: start;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;

  .footer-logo {
    height: 180px;
    width: auto;
    margin-bottom: 1.5rem;
  }

  .footer-tagline {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
  }
}

.footer-about-section {
  h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;

    strong {
      font-weight: 700;
    }

    a {
      color: #ffffff;
      text-decoration: underline;
      transition: color 0.3s ease;

      &:hover {
        color: #ff0037;
      }
    }
  }
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
  text-align: center;
  color: #cccccc;
}

/* ===== FLOATING FOOTER NAVIGATION ===== */
.floating-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(64, 64, 64, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.floating-nav-item {
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  padding: 0 1rem;
  position: relative;
  transition: color 0.3s ease;

  &:hover {
    color: #ff0037;
  }

  &.active {
    color: #ff0037;
    font-weight: 600;
  }

  &:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
  }
}

.nav-label {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== MEDIA QUERIES ===== */

/* Large screens and down */
@media (min-width: 1024px) {
  .nav-menu-wrapper {
    justify-content: flex-end;
  }
}

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
  .nav-menu-shadow-overlay {
    gap: 1rem;
  }

  .nav-dropdown-list {
    min-width: 250px;
    padding: 1.5rem;
  }

  .hero-layout {
    padding: 0 20px;
  }

  .hero-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;

    h1 {
      font-size: 3rem;
    }
  }

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

  .hero-visual {
    width: 100%;
    opacity: 0.2;
  }

  .hero-introduction::before {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(26, 33, 43, 0.9) 0%,
      rgba(26, 33, 43, 0.7) 70%,
      rgba(26, 33, 43, 0.4) 100%
    );
  }

  .demonstration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .warning-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .warning-message {
    padding-right: 0;
  }

  .lifecycle-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mobile and tablet */
@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .main-content {
    padding-top: 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 15px;
  }

  .nav-menu-wrapper {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .brand-section {
    gap: 12px;

    .brand-tagline {
      font-size: 12px;
    }
  }

  .nav-menu {
    gap: 1rem;
  }

  .hero-message h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .primary-action-btn,
  .secondary-action-btn,
  .demo-action-btn,
  .cta-button {
    width: 100%;
    text-align: center;
  }

  .security-vulnerability-warning,
  .security-demonstration,
  .frequently-asked-questions,
  .partnership-announcement,
  .protection-lifecycle {
    h2 {
      font-size: 2.5rem;
    }
  }

  .warning-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .warning-message {
    padding-right: 0;
  }

  .demonstration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .demo-links {
    flex-direction: column;
    align-items: center;
  }

  .partnership-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .lifecycle-grid {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;

    .footer-logo-section {
      order: 1;
    }

    .footer-about-section {
      order: 2;
    }
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .floating-footer {
    display: none;
  }

  .hero-message h1 {
    font-size: 2rem;
  }

  .security-vulnerability-warning,
  .security-demonstration,
  .frequently-asked-questions,
  .partnership-announcement,
  .protection-lifecycle {
    padding: 4rem 0;

    h2 {
      font-size: 2rem;
    }
  }

  .hero-introduction {
    padding: 4rem 0;
  }

  .content-wrapper {
    padding: 0 15px;
  }
}
