:root {
  --blue-900: #182b5a;
  --blue-800: #243b79;
  --blue-700: #3157a8;
  --blue-500: #5178d3;
  --blue-200: #dce7ff;
  --blue-100: #edf4ff;
  --text-soft: #5d6c91;
  --white-soft: rgba(255, 255, 255, 0.72);
  --card-line: rgba(86, 114, 180, 0.18);
  --shadow: 0 22px 60px rgba(54, 82, 145, 0.16);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--blue-900);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(239, 245, 255, 0.72), rgba(239, 245, 255, 0.82)),
    url("https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?auto=format&fit=crop&w=1800&q=80")
      center top / cover fixed;
  letter-spacing: 0;
}

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

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(122, 163, 255, 0.34),
      transparent 18%
    ),
    linear-gradient(
      180deg,
      rgba(235, 242, 255, 0.86) 0%,
      rgba(236, 242, 255, 0.82) 58%,
      rgba(230, 239, 255, 0.9) 100%
    );
}

.navbar {
  width: min(1120px, calc(100% - 44px));
  height: 56px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-800);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--blue-700);
  border-radius: 50% 50% 50% 12%;
  position: relative;
  transform: rotate(-28deg);
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--blue-700);
  border-bottom: 2px solid var(--blue-700);
  transform: rotate(-18deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  list-style: none;
}

.nav-menu a {
  color: #253867;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-demo,
.phone-btn {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(49, 87, 168, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--blue-800);
  font-size: 0.8rem;
  font-weight: 700;
}

.nav-demo {
  padding: 0 24px;
}

.phone-btn {
  width: 36px;
  font-size: 0.68rem;
}

.hamburger {
  display: none;
  width: 38px;
  height: 34px;
  border: 1px solid rgba(49, 87, 168, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.48);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue-800);
}

.hero {
  width: min(1120px, calc(100% - 44px));
  min-height: 610px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% -4% auto auto;
  width: 62%;
  height: 82%;
  background:
    radial-gradient(
      circle at 48% 47%,
      rgba(52, 89, 180, 0.98) 0 4%,
      transparent 4.5%
    ),
    radial-gradient(
      circle at 50% 50%,
      #244fba 0 31%,
      #1c397f 32% 45%,
      transparent 46%
    ),
    radial-gradient(
      circle at 48% 46%,
      rgba(255, 255, 255, 0.45),
      transparent 33%
    );
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.82;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -150px;
  height: 360px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.55)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80")
      center bottom / cover no-repeat;
  border-radius: 50% 50% 0 0;
  opacity: 0.48;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding-bottom: 72px;
}

.hero h1 {
  color: var(--blue-900);
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  line-height: 1.02;
  font-weight: 500;
}

.hero h1 span {
  color: var(--blue-700);
}

.hero p {
  max-width: 370px;
  margin-top: 24px;
  color: #52638d;
  font-size: 1rem;
  font-weight: 700;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: var(--blue-700);
  color: #ffffff;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(49, 87, 168, 0.22);
  cursor: pointer;
}

.hero-checks {
  display: grid;
  gap: 11px;
  margin-top: 28px;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--blue-800);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-checks li::before,
.card-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(-45deg);
}

.hero-visual {
  min-height: 560px;
  position: relative;
  z-index: 1;
}

.planet {
  position: absolute;
  right: 9%;
  top: 21%;
  width: min(420px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 28% 24%,
      rgba(255, 255, 255, 0.9),
      transparent 13%
    ),
    radial-gradient(circle at 58% 54%, #204cae 0 28%, #183777 57%, #0b1c4c 100%);
  box-shadow:
    inset -26px -18px 50px rgba(0, 0, 0, 0.24),
    0 0 68px rgba(73, 117, 216, 0.45);
}

.orbit {
  position: absolute;
  inset: -22px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transform: rotate(-18deg) scaleY(0.34);
}

.orbit-two {
  inset: -60px;
  opacity: 0.55;
  transform: rotate(24deg) scaleY(0.3);
}

.signal-bubble {
  position: absolute;
  z-index: 3;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(98, 143, 230, 0.28);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.bubble-one {
  left: -36px;
  top: 33%;
}

.bubble-two {
  right: 23%;
  top: 42%;
}

.drone {
  position: absolute;
  top: 13%;
  right: 5%;
  width: 96px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(49, 87, 168, 0.16);
}

.platform-section {
  width: min(1120px, calc(100% - 44px));
  margin: -38px auto 0;
  padding: 72px 0 58px;
  position: relative;
  z-index: 3;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2,
.detail-section h2,
.contact-section h2 {
  color: var(--blue-900);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.15;
  font-weight: 800;
}

.section-heading h2 span {
  color: var(--blue-700);
  font-weight: 400;
}

.section-heading p {
  max-width: 640px;
  margin: 16px auto 0;
  color: #54648d;
  font-size: 1.05rem;
  font-weight: 700;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.platform-card {
  min-height: 318px;
  padding: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 12px 34px rgba(72, 103, 174, 0.13);
  backdrop-filter: blur(12px);
}

.card-image {
  height: 136px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 16px;
  padding: 0 16px 18px;
  color: var(--blue-800);
  font-weight: 800;
  background-size: cover;
  background-position: center;
}

.network-image {
  background:
    linear-gradient(rgba(236, 244, 255, 0.2), rgba(236, 244, 255, 0.78)),
    url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=700&q=80");
}

.harsh-image {
  background:
    linear-gradient(rgba(236, 244, 255, 0.12), rgba(236, 244, 255, 0.8)),
    url("https://images.unsplash.com/photo-1508614999368-9260051292e5?auto=format&fit=crop&w=700&q=80");
}

.cloud-image {
  background:
    linear-gradient(rgba(236, 244, 255, 0.15), rgba(236, 244, 255, 0.78)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=700&q=80");
}

.platform-card h3 {
  width: min(250px, calc(100% - 36px));
  min-height: 54px;
  margin: 20px auto 0;
  color: var(--blue-900);
  font-size: 1.22rem;
  line-height: 1.12;
  text-align: center;
}

.card-kicker {
  position: relative;
  width: min(260px, calc(100% - 36px));
  margin: 14px auto 0;
  padding-left: 24px;
  color: var(--blue-500);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.platform-card p:not(.card-kicker) {
  width: min(260px, calc(100% - 36px));
  margin: 12px auto 0;
  color: #53648d;
  font-size: 0.9rem;
  font-weight: 700;
}

.purpose-band {
  margin-top: 24px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(207, 220, 255, 0.58);
  color: var(--blue-800);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-align: center;
  text-transform: uppercase;
}

.detail-section,
.contact-section {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: 64px 0;
}

.detail-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid rgba(86, 114, 180, 0.16);
}

.detail-alt {
  grid-template-columns: 1fr;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue-500);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-grid article,
.tech-list span {
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 28px rgba(72, 103, 174, 0.08);
}

.detail-grid article {
  padding: 22px;
}

.detail-grid h3 {
  color: var(--blue-900);
  font-size: 1.05rem;
}

.detail-grid p,
.company-copy {
  margin-top: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.tech-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.tech-list span {
  padding: 18px;
  color: var(--blue-800);
  font-weight: 800;
}

.company-copy {
  max-width: 640px;
  font-size: 1.04rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--card-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-800);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(49, 87, 168, 0.2);
  border-radius: 4px;
  padding: 12px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(81, 120, 211, 0.18);
  border-color: var(--blue-500);
}

.botcheck {
  display: none;
}

.form-status {
  min-height: 1.4em;
  color: var(--blue-800);
  font-size: 0.92rem;
  font-weight: 800;
}

.form-status.success {
  color: #137a4b;
}

.form-status.error {
  color: #b42318;
}

.form-status.pending {
  color: var(--blue-600);
}

.contact-form .primary-btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

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

@media (max-width: 900px) {
  .navbar {
    position: relative;
    height: 66px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 62px;
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--card-line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .hero,
  .detail-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 26px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .planet {
    right: 50%;
    transform: translateX(50%);
    top: 7%;
  }

  .platform-grid,
  .detail-grid,
  .tech-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .navbar,
  .hero,
  .platform-section,
  .detail-section,
  .contact-section {
    width: min(100% - 28px, 1120px);
  }

  .logo {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .hero p {
    font-size: 0.94rem;
  }

  .planet {
    width: 310px;
  }

  .signal-bubble {
    width: 68px;
    height: 68px;
  }

  .purpose-band {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
}

/* ============================================
   ECOM PAGE STYLES
   ============================================ */

/* ============================================
   GENERAL STYLES & VARIABLES
   ============================================ */
:root {
  --primary-color: #245984;
  --secondary-color: #ee9228;
  --dark-color: #050607;
  --light-color: #f4f7f8;
  --surface-color: #ffffff;
  --text-dark: #173047;
  --text-light: #52606a;
  --border-color: #d9e1e5;
  --primary-soft: rgba(36, 89, 132, 0.12);
  --secondary-soft: rgba(238, 146, 40, 0.14);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  letter-spacing: 0;
  background:
    linear-gradient(rgba(239, 245, 255, 0.72), rgba(239, 245, 255, 0.82)),
    url("https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?auto=format&fit=crop&w=1800&q=80")
      center top / cover fixed;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
  background: var(--surface-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-color);
}

.logo i,
.logo-mark {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0 auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 18px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background:
    linear-gradient(rgba(239, 245, 255, 0.72), rgba(239, 245, 255, 0.82)),
    url("https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?auto=format&fit=crop&w=1800&q=80") center top / cover fixed;
  color: var(--blue-900);
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(238, 146, 40, 0.24);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image i {
  font-size: 200px;
  opacity: 0.2;
}

.footer {
  padding: 60px 20px;
  background: #10283d;
  color: rgba(255, 255, 255, 0.9);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-section p,
.footer-section li a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

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

.footer-section li {
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 80px 20px;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
  text-decoration: none;
  margin-top: 20px;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  gap: 15px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-item:hover {
  box-shadow: 0 5px 20px rgba(36, 89, 132, 0.12);
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-item h3 {
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--text-light);
}

/* ============================================
   DETAIL SECTIONS (Page 1)
   ============================================ */
.detail-section {
  padding: 80px 20px;
  background: white;
}

.detail-alt {
  background: white;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 80px 20px;
  background: white;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 80px 20px;
  background: var(--surface-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(36, 89, 132, 0.14);
  transform: translateY(-10px);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-link {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  transform: translateX(5px);
}

/* ============================================
   CAPABILITIES SECTION
   ============================================ */
.capabilities {
  padding: 80px 20px;
  background: var(--surface-color);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.capability {
  padding: 30px;
  border-left: 4px solid var(--secondary-color);
  background: var(--light-color);
  border-radius: 5px;
}

.capability-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.capability h3 {
  margin-bottom: 10px;
}

.capability p {
  color: var(--text-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 80px 20px;
  background: var(--light-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-soft);
}

.contact-form button {
  width: 100%;
}

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

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.info-item h4 {
  margin-bottom: 5px;
}

.info-item p {
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-color);
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  margin-bottom: 15px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--surface-color);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-image i {
    font-size: 100px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

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

  .section-header h2 {
    font-size: 1.5rem;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
  }
}
