/* =====================================================
   GLOBAL
   ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

a {
  text-decoration: none;
}


/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 82px;

  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 55px;

  background: rgba(255, 255, 255, 0.97);

  border-bottom: 1px solid #e5e7eb;

  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}


/* =====================================================
   LOGO
   ===================================================== */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}


/* =====================================================
   NAVIGATION MENU
   ===================================================== */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu > a,
.dropdown-link {
  position: relative;

  color: #0f172a;

  font-size: 16px;
  font-weight: 600;

  transition:
    color 0.25s ease;
}

.nav-menu > a:hover,
.dropdown-link:hover {
  color: #2563eb;
}


/* Animated underline */

.nav-menu > a::after,
.dropdown-link::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: #2563eb;

  transition: width 0.25s ease;
}

.nav-menu > a:hover::after,
.dropdown-link:hover::after {
  width: 100%;
}


/* =====================================================
   PRODUCTS DROPDOWN
   ===================================================== */

.dropdown {
  position: relative;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}


/* Dropdown panel */

.dropdown-menu {

  position: absolute;

  top: calc(100% + 22px);
  left: -25px;

  width: 320px;

  padding: 10px;

  background: #ffffff;

  border: 1px solid #e2e8f0;

  border-radius: 10px;

  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.14);

  opacity: 0;
  visibility: hidden;

  transform: translateY(8px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}


/* Dropdown items */

.dropdown-menu a {

  display: flex;
  flex-direction: column;

  gap: 4px;

  padding: 13px 15px;

  margin: 0;

  border-radius: 7px;

  color: #0f172a;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.dropdown-menu a span {
  font-size: 14px;
  font-weight: 600;
}

.dropdown-menu a small {
  font-size: 12px;
  color: #64748b;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

.dropdown-menu a:hover small {
  color: #64748b;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {

  position: relative;

  min-height: 100vh;

  width: 100%;

  padding: 82px 8% 40px;

  display: flex;
  align-items: center;

  background-image: url("images/hero2.png");

  background-size: cover;
  background-position: center center;

  overflow: hidden;
}


/* =====================================================
   HERO OVERLAY
   ===================================================== */

.hero-overlay {

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(2, 8, 23, 0.88) 0%,
      rgba(2, 8, 23, 0.68) 32%,
      rgba(2, 8, 23, 0.15) 65%,
      rgba(2, 8, 23, 0.05) 100%
    );

  z-index: 1;
}


/* =====================================================
   HERO INNER
   ===================================================== */

.hero-inner {

  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1250px;

  margin: 0 auto;
}


/* =====================================================
   HERO CONTENT
   ===================================================== */

.hero-content {

  max-width: 650px;

  text-align: left;

  animation: heroFade 1s ease-out;
}


/* Small heading */

.hero-tag {

  display: inline-block;

  margin-bottom: 22px;

  padding: 7px 14px;

  border-left: 3px solid #2563eb;

  background: rgba(37, 99, 235, 0.12);

  color: #60a5fa;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}


/* =====================================================
   HERO HEADING
   ===================================================== */

.hero h1 {

  color: #ffffff;

  font-size: clamp(42px, 5vw, 68px);

  font-weight: 700;

  line-height: 1.08;

  letter-spacing: -1.5px;

  margin-bottom: 25px;
}

.hero h1 span {

  display: block;

  background:
    linear-gradient(
      90deg,
      #60a5fa,
      #38bdf8
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


/* =====================================================
   HERO PARAGRAPH
   ===================================================== */

.hero p {

  max-width: 620px;

  color: #dbeafe;

  font-size: 18px;

  line-height: 1.7;

  margin-bottom: 38px;
}


/* =====================================================
   HERO BUTTONS
   ===================================================== */

.hero-buttons {

  display: flex;

  align-items: center;

  gap: 15px;

  flex-wrap: wrap;
}


/* Common button */

.btn {

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  min-height: 52px;

  padding: 0 25px;

  border-radius: 6px;

  font-size: 15px;

  font-weight: 600;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}


/* Primary */

.btn-primary {

  background: #2563eb;

  color: #ffffff;

  box-shadow:
    0 8px 25px rgba(37, 99, 235, 0.30);
}

.btn-primary:hover {

  background: #1d4ed8;

  transform: translateY(-2px);
}

.btn-primary span {

  font-size: 20px;

  transition: transform 0.2s ease;
}

.btn-primary:hover span {

  transform: translateX(4px);
}


/* Secondary */

.btn-secondary {

  color: #ffffff;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(5px);
}

.btn-secondary:hover {

  background: rgba(255, 255, 255, 0.15);

  border-color: #ffffff;

  transform: translateY(-2px);
}


/* =====================================================
   HERO ANIMATION
   ===================================================== */

@keyframes heroFade {

  from {

    opacity: 0;

    transform: translateY(20px);
  }

  to {

    opacity: 1;

    transform: translateY(0);
  }
}


/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */

@media (max-width: 1100px) {

  .navbar {

    padding: 8px 30px;
  }

  .nav-menu {

    gap: 20px;
  }

  .nav-menu > a,
  .dropdown-link {

    font-size: 14px;
  }

  .hero {

    padding-left: 6%;
    padding-right: 6%;
  }
}


/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 800px) {

  .navbar {

    height: 72px;

    padding: 6px 20px;
  }

  .logo img {

    height: 55px;
  }

  /*
     Temporary mobile behavior.
     We can build a proper hamburger menu
     in the next stage.
  */

  .nav-menu {

    display: none;
  }

  .hero {

    min-height: 100vh;

    padding:
      100px 25px
      50px 25px;

    background-position:
      62% center;
  }

  .hero-overlay {

    background:
      linear-gradient(
        90deg,
        rgba(2, 8, 23, 0.90),
        rgba(2, 8, 23, 0.65)
      );
  }

  .hero-content {

    max-width: 100%;
  }

  .hero h1 {

    font-size: 42px;

    letter-spacing: -0.8px;
  }

  .hero p {

    font-size: 16px;

    line-height: 1.6;
  }

  .hero-buttons {

    flex-direction: column;

    align-items: flex-start;
  }

  .btn {

    width: auto;
  }
}

/* =====================================================
   TRUSTED COMPUTING SECTION
   ===================================================== */

.trusted-section {

  position: relative;

  padding: 110px 7% 115px;

  background: #ffffff;

  overflow: hidden;
}


/* Very subtle background decoration */

.trusted-section::before {

  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  top: -250px;
  right: -150px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.035);

  pointer-events: none;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.trusted-container {

  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: 0 auto;
}


/* =====================================================
   SECTION HEADING
   ===================================================== */

.section-heading {

  max-width: 760px;

  margin: 0 auto 65px;

  text-align: center;
}


.section-label {

  display: inline-block;

  margin-bottom: 16px;

  color: #2563eb;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}


.section-heading h2 {

  margin-bottom: 20px;

  color: #0f172a;

  font-size: clamp(36px, 4vw, 52px);

  line-height: 1.15;

  letter-spacing: -1px;
}


.section-heading h2 span {

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #0ea5e9
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.section-heading p {

  max-width: 650px;

  margin: 0 auto;

  color: #64748b;

  font-size: 18px;

  line-height: 1.7;
}


/* =====================================================
   TECHNOLOGY GRID
   ===================================================== */

.trusted-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 22px;
}


/* =====================================================
   TECHNOLOGY CARD
   ===================================================== */

.trusted-card {

  position: relative;

  display: flex;

  gap: 25px;

  min-height: 245px;

  padding: 32px;

  background: #ffffff;

  border: 1px solid #e2e8f0;

  border-radius: 12px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


/* Orange/blue accent line */

.trusted-card::before {

  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 3px;

  background:
    linear-gradient(
      180deg,
      #2563eb,
      #f97316
    );

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.3s ease;
}


.trusted-card:hover {

  transform: translateY(-6px);

  border-color: #bfdbfe;

  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.09);
}


.trusted-card:hover::before {

  transform: scaleY(1);
}


/* =====================================================
   CARD ICON
   ===================================================== */

.card-icon {

  flex-shrink: 0;

  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: #eff6ff;

  color: #2563eb;
}


.card-icon svg {

  width: 29px;
  height: 29px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.6;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* =====================================================
   CARD CONTENT
   ===================================================== */

.card-content {

  flex: 1;
}


.card-content h3 {

  margin-bottom: 12px;

  color: #0f172a;

  font-size: 21px;

  line-height: 1.3;
}


.card-content p {

  margin-bottom: 22px;

  color: #64748b;

  font-size: 15px;

  line-height: 1.65;
}


/* =====================================================
   CARD LINK
   ===================================================== */

.card-link {

  color: #2563eb;

  font-size: 14px;

  font-weight: 600;
}


.card-link b {

  display: inline-block;

  margin-left: 5px;

  font-size: 17px;

  transition: transform 0.2s ease;
}


.trusted-card:hover .card-link b {

  transform: translateX(5px);
}


/* =====================================================
   SECTION CTA
   ===================================================== */

.trusted-cta {

  margin-top: 50px;

  text-align: center;
}


.technology-link {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: #0f172a;

  font-size: 15px;

  font-weight: 600;

  border-bottom: 1px solid #cbd5e1;

  padding-bottom: 7px;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}


.technology-link span {

  color: #2563eb;

  font-size: 20px;

  transition: transform 0.2s ease;
}


.technology-link:hover {

  color: #2563eb;

  border-color: #2563eb;
}


.technology-link:hover span {

  transform: translateX(5px);
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 800px) {

  .trusted-section {

    padding: 80px 25px;
  }


  .section-heading {

    margin-bottom: 45px;
  }


  .section-heading p {

    font-size: 16px;
  }


  .trusted-grid {

    grid-template-columns: 1fr;
  }


  .trusted-card {

    min-height: auto;

    padding: 26px;

    gap: 18px;
  }


  .card-content h3 {

    font-size: 19px;
  }
}


@media (max-width: 500px) {

  .trusted-card {

    flex-direction: column;
  }


  .card-icon {

    width: 52px;
    height: 52px;
  }
}

/* =====================================================
   OUR TECHNOLOGY SECTION
   ===================================================== */

.technology-section {

  position: relative;

  padding: 115px 7% 110px;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(37, 99, 235, 0.15),
      transparent 35%
    ),
    #07101f;

  color: #ffffff;

  overflow: hidden;
}


/* Subtle technical grid */

.technology-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size: 50px 50px;

  pointer-events: none;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.technology-container {

  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: 0 auto;
}


/* =====================================================
   HEADING
   ===================================================== */

.technology-heading {

  max-width: 800px;

  margin: 0 auto 65px;

  text-align: center;
}


.technology-label {

  display: inline-block;

  margin-bottom: 17px;

  color: #60a5fa;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}


.technology-heading h2 {

  margin-bottom: 20px;

  color: #ffffff;

  font-size: clamp(36px, 4vw, 52px);

  line-height: 1.15;

  letter-spacing: -1px;
}


.technology-heading h2 span {

  display: block;

  background:
    linear-gradient(
      90deg,
      #60a5fa,
      #38bdf8
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.technology-heading p {

  max-width: 700px;

  margin: 0 auto;

  color: #94a3b8;

  font-size: 17px;

  line-height: 1.7;
}


/* =====================================================
   TECHNOLOGY GRID
   ===================================================== */

.technology-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 1px;

  background: rgba(148, 163, 184, 0.18);

  border: 1px solid rgba(148, 163, 184, 0.18);

  border-radius: 14px;

  overflow: hidden;
}


/* =====================================================
   TECHNOLOGY CARD
   ===================================================== */

.technology-card {

  position: relative;

  min-height: 330px;

  padding: 38px;

  background: rgba(7, 16, 31, 0.92);

  transition:
    background 0.3s ease;
}


.technology-card:hover {

  background: rgba(15, 32, 55, 0.96);
}


/* =====================================================
   CARD NUMBER
   ===================================================== */

.technology-number {

  position: absolute;

  top: 28px;

  right: 30px;

  color: rgba(148, 163, 184, 0.30);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;
}


/* =====================================================
   TECHNOLOGY ICON
   ===================================================== */

.technology-icon {

  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 23px;

  border-radius: 10px;

  background:
    rgba(37, 99, 235, 0.12);

  color: #60a5fa;
}


.technology-icon svg {

  width: 28px;
  height: 28px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* =====================================================
   CARD TITLE
   ===================================================== */

.technology-card h3 {

  margin-bottom: 12px;

  color: #ffffff;

  font-size: 21px;
}


/* =====================================================
   CARD DESCRIPTION
   ===================================================== */

.technology-card p {

  max-width: 470px;

  margin-bottom: 20px;

  color: #94a3b8;

  font-size: 15px;

  line-height: 1.65;
}


/* =====================================================
   TECHNOLOGY LIST
   ===================================================== */

.technology-card ul {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 9px 20px;

  padding: 0;

  list-style: none;
}


.technology-card li {

  position: relative;

  padding-left: 15px;

  color: #cbd5e1;

  font-size: 13px;
}


.technology-card li::before {

  content: "";

  position: absolute;

  left: 0;
  top: 7px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #2563eb;
}


/* =====================================================
   BOTTOM STATEMENT
   ===================================================== */

.technology-bottom {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 25px;

  margin-top: 55px;
}


.technology-bottom p {

  color: #94a3b8;

  font-size: 15px;

  letter-spacing: 0.3px;

  white-space: nowrap;
}


.technology-bottom strong {

  color: #ffffff;
}


.technology-line {

  width: 100px;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #2563eb
    );
}


.technology-line:last-child {

  background:
    linear-gradient(
      90deg,
      #f97316,
      transparent
    );
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 800px) {

  .technology-section {

    padding:
      80px 25px;
  }


  .technology-heading {

    margin-bottom: 45px;
  }


  .technology-heading p {

    font-size: 16px;
  }


  .technology-grid {

    grid-template-columns: 1fr;
  }


  .technology-card {

    min-height: auto;

    padding: 30px;
  }


  .technology-bottom {

    gap: 12px;
  }


  .technology-bottom p {

    font-size: 13px;

    text-align: center;

    white-space: normal;
  }


  .technology-line {

    display: none;
  }
}


@media (max-width: 500px) {

  .technology-card ul {

    grid-template-columns: 1fr;
  }
}


/* =====================================================
   SOLUTIONS SECTION
   ===================================================== */

.solutions-section {

  position: relative;

  padding: 115px 7% 120px;

  background: #ffffff;

  overflow: hidden;
}


/* Subtle background element */

.solutions-section::after {

  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -300px;
  bottom: -300px;

  border-radius: 50%;

  background:
    rgba(37, 99, 235, 0.035);

  pointer-events: none;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.solutions-container {

  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: 0 auto;
}


/* =====================================================
   HEADING
   ===================================================== */

.solutions-heading {

  max-width: 800px;

  margin: 0 auto 65px;

  text-align: center;
}


.solutions-label {

  display: inline-block;

  margin-bottom: 17px;

  color: #2563eb;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}


.solutions-heading h2 {

  margin-bottom: 20px;

  color: #0f172a;

  font-size: clamp(36px, 4vw, 52px);

  line-height: 1.15;

  letter-spacing: -1px;
}


.solutions-heading h2 span {

  display: block;

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #0ea5e9
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.solutions-heading p {

  max-width: 720px;

  margin: 0 auto;

  color: #64748b;

  font-size: 17px;

  line-height: 1.7;
}


/* =====================================================
   SOLUTIONS GRID
   ===================================================== */

.solutions-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}


/* =====================================================
   SOLUTION CARD
   ===================================================== */

.solution-card {

  position: relative;

  display: flex;

  flex-direction: column;

  min-height: 315px;

  padding: 30px;

  background: #ffffff;

  border: 1px solid #e2e8f0;

  border-radius: 12px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}


.solution-card::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #f97316
    );

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.3s ease;
}


.solution-card:hover {

  transform: translateY(-6px);

  border-color: #bfdbfe;

  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.09);
}


.solution-card:hover::after {

  transform: scaleX(1);
}


/* =====================================================
   SOLUTION ICON
   ===================================================== */

.solution-icon {

  width: 56px;
  height: 56px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  border-radius: 10px;

  background: #eff6ff;

  color: #2563eb;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}


.solution-card:hover .solution-icon {

  background: #2563eb;

  color: #ffffff;
}


.solution-icon svg {

  width: 27px;
  height: 27px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;
}


/* =====================================================
   SOLUTION CONTENT
   ===================================================== */

.solution-content {

  display: flex;

  flex-direction: column;

  height: 100%;
}


.solution-content h3 {

  margin-bottom: 12px;

  color: #0f172a;

  font-size: 20px;

  line-height: 1.3;
}


.solution-content p {

  margin-bottom: 22px;

  color: #64748b;

  font-size: 14px;

  line-height: 1.65;
}


/* =====================================================
   SOLUTION LINK
   ===================================================== */

.solution-link {

  margin-top: auto;

  color: #2563eb;

  font-size: 14px;

  font-weight: 600;
}


.solution-link b {

  display: inline-block;

  margin-left: 5px;

  font-size: 17px;

  transition:
    transform 0.2s ease;
}


.solution-card:hover .solution-link b {

  transform: translateX(5px);
}


/* =====================================================
   CTA
   ===================================================== */

.solutions-cta {

  margin-top: 55px;

  text-align: center;
}


.solutions-button {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  min-height: 52px;

  padding: 0 25px;

  background: #0f172a;

  color: #ffffff;

  border-radius: 6px;

  font-size: 15px;

  font-weight: 600;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.solutions-button span {

  color: #60a5fa;

  font-size: 20px;

  transition:
    transform 0.2s ease;
}


.solutions-button:hover {

  background: #1e293b;

  transform: translateY(-2px);
}


.solutions-button:hover span {

  transform: translateX(5px);
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 950px) {

  .solutions-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }
}


@media (max-width: 800px) {

  .solutions-section {

    padding:
      80px 25px 90px;
  }


  .solutions-heading {

    margin-bottom: 45px;
  }


  .solutions-heading p {

    font-size: 16px;
  }


  .solutions-grid {

    grid-template-columns: 1fr;
  }


  .solution-card {

    min-height: 280px;
  }
}


@media (max-width: 500px) {

  .solution-card {

    padding: 26px;

    min-height: 270px;
  }
}


/* =====================================================
   ABOUT MALLIVEX
   ===================================================== */

.about-section {

  position: relative;

  padding: 120px 7% 100px;

  background: #ffffff;

  overflow: hidden;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.about-container {

  max-width: 1200px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 90px;

  align-items: center;
}


/* =====================================================
   LEFT CONTENT
   ===================================================== */

.about-content {

  max-width: 600px;
}


.about-label {

  margin-bottom: 18px;

  color: #2563eb;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}


.about-content h2 {

  margin-bottom: 25px;

  color: #0f172a;

  font-size: clamp(36px, 4vw, 52px);

  line-height: 1.13;

  letter-spacing: -1px;
}


.about-content h2 span {

  display: block;

  background:
    linear-gradient(
      90deg,
      #2563eb,
      #0ea5e9
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.about-content p {

  margin-bottom: 18px;

  color: #64748b;

  font-size: 16px;

  line-height: 1.75;
}


.about-content .about-intro {

  color: #334155;

  font-size: 18px;

  line-height: 1.7;

  font-weight: 500;
}


/* =====================================================
   ABOUT BUTTON
   ===================================================== */

.about-button {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 18px;

  min-height: 50px;

  padding: 0 23px;

  border-radius: 6px;

  background: #0f172a;

  color: #ffffff;

  font-size: 15px;

  font-weight: 600;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.about-button span {

  color: #60a5fa;

  font-size: 20px;

  transition:
    transform 0.2s ease;
}


.about-button:hover {

  background: #1e293b;

  transform: translateY(-2px);
}


.about-button:hover span {

  transform: translateX(5px);
}


/* =====================================================
   ABOUT VISUAL
   ===================================================== */

.about-visual {

  position: relative;

  width: 500px;

  height: 500px;

  margin: auto;
}


/* =====================================================
   ORBITS
   ===================================================== */

.about-orbit {

  position: absolute;

  left: 50%;
  top: 50%;

  border: 1px solid #dbeafe;

  border-radius: 50%;

  transform:
    translate(-50%, -50%)
    rotate(-20deg);
}


.orbit-one {

  width: 390px;
  height: 220px;
}


.orbit-two {

  width: 450px;
  height: 270px;

  transform:
    translate(-50%, -50%)
    rotate(35deg);

  border-color: #e2e8f0;
}


/* =====================================================
   CORE
   ===================================================== */

.about-core {

  position: absolute;

  left: 50%;
  top: 50%;

  width: 210px;
  height: 210px;

  display: flex;

  align-items: center;
  justify-content: center;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #eff6ff 0%,
      #dbeafe 45%,
      #ffffff 70%
    );

  box-shadow:
    0 25px 60px rgba(37, 99, 235, 0.15);
}


/* =====================================================
   CHIP
   ===================================================== */

.core-chip {

  position: relative;

  width: 125px;
  height: 125px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 5px;

  background:
    linear-gradient(
      145deg,
      #172033,
      #07101f
    );

  border-radius: 8px;

  color: #ffffff;

  box-shadow:
    0 15px 35px rgba(15, 23, 42, 0.25);
}


.core-chip::before,
.core-chip::after {

  content: "";

  position: absolute;

  left: -10px;
  right: -10px;

  height: 1px;

  background: #60a5fa;
}


.core-chip::before {
  top: 25px;
}

.core-chip::after {
  bottom: 25px;
}


.core-chip span {

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;
}


.core-chip small {

  color: #60a5fa;

  font-size: 7px;

  letter-spacing: 1.5px;
}


.chip-line {

  position: absolute;

  top: -10px;
  bottom: -10px;

  width: 1px;

  background: #60a5fa;
}


.chip-line:nth-child(1) {
  left: 25px;
}

.chip-line:nth-child(2) {
  left: 50%;
}

.chip-line:nth-child(3) {
  right: 25px;
}


/* =====================================================
   TECHNOLOGY POINTS
   ===================================================== */

.about-point {

  position: absolute;

  display: flex;

  align-items: center;

  gap: 9px;

  padding: 8px 12px;

  background: #ffffff;

  border: 1px solid #e2e8f0;

  border-radius: 6px;

  box-shadow:
    0 8px 25px rgba(15, 23, 42, 0.07);

  color: #334155;

  font-size: 12px;

  font-weight: 600;

  white-space: nowrap;
}


.about-point span {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #2563eb;
}


.point-security {

  top: 80px;
  left: 10px;
}


.point-crypto {

  top: 105px;
  right: 5px;
}


.point-trust {

  bottom: 95px;
  left: 0;
}


.point-pqc {

  bottom: 75px;
  right: 0;
}


/* =====================================================
   VALUES
   ===================================================== */

.about-values {

  max-width: 1200px;

  margin: 110px auto 0;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid #e2e8f0;
}


.about-value {

  position: relative;

  padding: 38px 35px 20px;

  border-right: 1px solid #e2e8f0;
}


.about-value:last-child {

  border-right: none;
}


.value-number {

  margin-bottom: 15px;

  color: #2563eb;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;
}


.about-value h3 {

  margin-bottom: 12px;

  color: #0f172a;

  font-size: 20px;
}


.about-value p {

  color: #64748b;

  font-size: 14px;

  line-height: 1.65;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 950px) {

  .about-container {

    grid-template-columns: 1fr;

    gap: 60px;
  }


  .about-content {

    max-width: 750px;

    margin: auto;

    text-align: center;
  }


  .about-visual {

    width: 450px;

    height: 450px;
  }


  .about-values {

    margin-top: 80px;
  }
}


@media (max-width: 700px) {

  .about-section {

    padding:
      80px 25px;
  }


  .about-content h2 {

    font-size: 38px;
  }


  .about-content .about-intro {

    font-size: 16px;
  }


  .about-visual {

    width: 350px;

    height: 350px;
  }


  .orbit-one {

    width: 290px;

    height: 165px;
  }


  .orbit-two {

    width: 330px;

    height: 200px;
  }


  .about-core {

    width: 160px;
    height: 160px;
  }


  .core-chip {

    width: 100px;
    height: 100px;
  }


  .point-security {

    top: 40px;
    left: -5px;
  }


  .point-crypto {

    top: 55px;
    right: -5px;
  }


  .point-trust {

    bottom: 60px;
    left: -10px;
  }


  .point-pqc {

    bottom: 45px;
    right: -10px;
  }


  .about-values {

    grid-template-columns: 1fr;

    margin-top: 60px;
  }


  .about-value {

    border-right: none;

    border-bottom: 1px solid #e2e8f0;

    padding: 28px 0;
  }


  .about-value:last-child {

    border-bottom: none;
  }
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {

  position: relative;

  padding: 115px 7% 120px;

  background:
    radial-gradient(
      circle at 10% 80%,
      rgba(37, 99, 235, 0.14),
      transparent 35%
    ),
    #07101f;

  color: #ffffff;

  overflow: hidden;
}


/* Subtle grid */

.contact-section::before {

  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  pointer-events: none;
}


/* =====================================================
   CONTAINER
   ===================================================== */

.contact-container {

  position: relative;

  z-index: 2;

  max-width: 1150px;

  margin: 0 auto;
}


/* =====================================================
   HEADING
   ===================================================== */

.contact-heading {

  max-width: 780px;

  margin: 0 auto 65px;

  text-align: center;
}


.contact-label {

  display: inline-block;

  margin-bottom: 17px;

  color: #60a5fa;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 2px;
}


.contact-heading h2 {

  margin-bottom: 20px;

  color: #ffffff;

  font-size: clamp(36px, 4vw, 52px);

  line-height: 1.15;

  letter-spacing: -1px;
}


.contact-heading h2 span {

  display: block;

  background:
    linear-gradient(
      90deg,
      #60a5fa,
      #38bdf8
    );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
}


.contact-heading p {

  max-width: 700px;

  margin: 0 auto;

  color: #94a3b8;

  font-size: 17px;

  line-height: 1.7;
}


/* =====================================================
   CONTACT GRID
   ===================================================== */

.contact-grid {

  display: grid;

  grid-template-columns:
    0.85fr 1.15fr;

  gap: 70px;

  align-items: start;
}


/* =====================================================
   CONTACT INFO
   ===================================================== */

.contact-info {

  padding-top: 10px;
}


.contact-info h3 {

  margin-bottom: 15px;

  color: #ffffff;

  font-size: 25px;
}


.contact-info > p {

  margin-bottom: 35px;

  color: #94a3b8;

  font-size: 15px;

  line-height: 1.7;
}


/* =====================================================
   CONTACT ITEM
   ===================================================== */

.contact-item {

  display: flex;

  align-items: center;

  gap: 17px;

  margin-bottom: 27px;
}


.contact-icon {

  flex-shrink: 0;

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(96, 165, 250, 0.25);

  border-radius: 8px;

  background: rgba(37, 99, 235, 0.08);

  color: #60a5fa;
}


.contact-icon svg {

  width: 22px;
  height: 22px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.5;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.contact-item span {

  display: block;

  margin-bottom: 4px;

  color: #64748b;

  font-size: 12px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 1px;
}


.contact-item a,
.contact-item p {

  margin: 0;

  color: #e2e8f0;

  font-size: 15px;

  font-weight: 500;
}


.contact-item a {

  transition: color 0.2s ease;
}


.contact-item a:hover {

  color: #60a5fa;
}


/* =====================================================
   CONTACT FORM
   ===================================================== */

.contact-form-wrapper {

  padding: 35px;

  background:
    rgba(15, 32, 55, 0.65);

  border: 1px solid rgba(148, 163, 184, 0.18);

  border-radius: 12px;

  backdrop-filter: blur(8px);
}


.contact-form {

  display: flex;

  flex-direction: column;

  gap: 20px;
}


.form-row {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}


.form-group {

  display: flex;

  flex-direction: column;

  gap: 8px;
}


.form-group label {

  color: #cbd5e1;

  font-size: 13px;

  font-weight: 600;
}


.form-group input,
.form-group textarea {

  width: 100%;

  padding: 13px 15px;

  background:
    rgba(2, 8, 23, 0.65);

  border: 1px solid rgba(148, 163, 184, 0.25);

  border-radius: 6px;

  outline: none;

  color: #ffffff;

  font-family: inherit;

  font-size: 14px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.form-group textarea {

  resize: vertical;

  min-height: 130px;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

  color: #64748b;
}


.form-group input:focus,
.form-group textarea:focus {

  border-color: #3b82f6;

  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.12);
}


/* =====================================================
   CONTACT BUTTON
   ===================================================== */

.contact-button {

  align-self: flex-start;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-height: 50px;

  padding: 0 25px;

  border: none;

  border-radius: 6px;

  background: #2563eb;

  color: #ffffff;

  font-family: inherit;

  font-size: 15px;

  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.contact-button span {

  font-size: 20px;

  transition:
    transform 0.2s ease;
}


.contact-button:hover {

  background: #1d4ed8;

  transform: translateY(-2px);
}


.contact-button:hover span {

  transform: translateX(5px);
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 900px) {

  .contact-grid {

    grid-template-columns: 1fr;

    gap: 50px;
  }


  .contact-info {

    max-width: 650px;

    margin: auto;
  }
}


@media (max-width: 700px) {

  .contact-section {

    padding:
      80px 25px 90px;
  }


  .contact-heading {

    margin-bottom: 45px;
  }


  .contact-heading p {

    font-size: 16px;
  }


  .contact-form-wrapper {

    padding: 25px;
  }


  .form-row {

    grid-template-columns: 1fr;
  }
}