@charset "UTF-8";
:root {
  --card-surface: #0f0f12;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --border: rgba(255, 255, 255, 0.05);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --page-accent: #00ffe7;
  --page-max-width: 1355px;
  --page-padding-x: 40px;
  --page-padding-y: 80px;
  --page-background-1: #030712;
  --page-background-2: #050505;
  --h1-font-size: clamp(28px, 4.5vw, 62px);
  --p-font-size: 19px;
  --p2-font-size: calc(var(--p-font-size) - 1px);
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial;
  background: var(--page-background-1);
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

h1 {
  font-size: var(--h1-font-size);
  margin-bottom: 37px;
  line-height: 1.2;
  letter-spacing: -1.5px;
}

h2 {
  font-size: clamp(28px, 4.5vw, 47px);
  line-height: 1.21;
}

p {
  font-size: var(--p-font-size);
}

body::before, body::after {
  content: "";
  position: fixed;
  width: 600px;
  height: 600px;
  filter: blur(120px);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

body::before {
  background: #38bdf8;
  top: -200px;
  right: -100px;
  display: block;
}

body::after {
  --accent-secondary: #818cf8;
  background: var(--accent-secondary);
  bottom: -200px;
  left: -100px;
}

body > header.dark-mode {
  position: fixed;
  z-index: 10;
  background: #061924;
  border-bottom: 1px solid black;
}
body > header.dark-mode .nav-links > li {
  color: rgba(218, 233, 255, 0.77);
  font-weight: 500;
}
body > header.dark-mode .nav-cta {
  background: #0ff !important;
}

section, body > footer {
  padding: var(--page-padding-y) var(--page-padding-x) !important;
}

header nav {
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}

section .section-container {
  max-width: var(--page-max-width);
  margin: auto;
}

/* --- Header & Hero --- */
section.hero {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  height: auto;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
  box-sizing: border-box;
  align-items: center;
  display: flex;
}
section.hero .section-container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 85px;
}
section.hero .section-container .text-container {
  flex-shrink: 0;
}
section.hero .section-container .text-container p {
  margin-bottom: 0;
}
section.hero .section-container > img {
  width: 100%;
  max-width: 650px;
}
section.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.2;
  pointer-events: none;
}
section.hero .hero-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid #22d3ee;
  color: #22d3ee;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 38px;
}
section.hero p {
  color: #94a3b8;
  max-width: 516px;
  margin-bottom: 40px;
}

section.services {
  background-color: var(--page-background-2);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
section.services .intro {
  margin-bottom: 60px;
  max-width: 600px;
}
section.services .intro h2 {
  margin-bottom: 20px;
}
section.services .intro p {
  color: var(--text-secondary);
}
section.services {
  /* Bento Grid Layout */
}
section.services .bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 20px;
}
section.services .bento-card {
  background: var(--card-surface);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
  border-radius: 22px;
}
section.services .bento-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}
section.services {
  /* Span 2 columns for the first card */
}
section.services .card-large {
  background: linear-gradient(135deg, #0f0f12 0%, #16161a 100%);
}
section.services .card-large::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: var(--accent-glow);
  filter: blur(80px);
}
section.services .card-number {
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: "Plus Jakarta Sans";
  font-weight: 800;
  font-size: 1rem;
  color: var(--page-accent);
  opacity: 0.8;
}
section.services .bento-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  z-index: 1;
}
section.services .bento-card p {
  font-size: var(--p2-font-size);
  color: var(--text-secondary);
  margin: 0;
  z-index: 1;
}

section.why {
  --text-light: #f5f5f5;
  --border: rgba(192, 192, 192, 0.1);
  background: #000;
  background-color: var(--page-background-2);
  color: var(--text-light);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  /* --- WHY START: CINEMATIC SPLIT --- */
}
section.why .why-outer {
  display: flex;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}
section.why .why-img {
  max-width: 631px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 43% 0%;
     object-position: 43% 0%;
}
section.why .why-content {
  padding: 80px 115px;
}
section.why .why-content h2 {
  font-size: clamp(28px, 4.5vw, 35px);
  margin-bottom: 30px;
}
section.why .why-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6901960784);
}
section.why .why-content p:last-of-type {
  font-size: 17px;
  font-style: italic;
}
section.why .benefit-list {
  margin: 40px 0;
  list-style: none;
}
section.why .benefit-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--p2-font-size);
  display: flex;
  gap: 18px;
  font-size: 18px;
}
section.why .benefit-list li::before {
  content: "✓";
  color: var(--page-accent);
}

section.process {
  --accent-primary: #38bdf8;
  --accent-secondary: #818cf8;
  --text-white: #f8fafc;
  --text-dim: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
section.process .section-header {
  text-align: center;
  margin-bottom: 60px;
}
section.process .section-header h2 {
  margin-bottom: 24px;
}
section.process .section-header p {
  margin: 0 auto;
  margin-bottom: 0px;
  color: var(--text-dim);
  margin-bottom: 88px;
}
section.process .process-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
section.process .process-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}
section.process .process-item p {
  font-size: var(--p2-font-size);
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7490196078);
}
section.process .process-icon {
  min-width: 60px;
  height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-secondary);
}

/* --- Footer CTA --- */
section.cta-footer {
  text-align: center;
  color: #fff;
}
section.cta-footer h2 {
  margin-bottom: 40px;
  font-size: var(--h1-font-size);
}
section.cta-footer p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 29px;
  color: #d2e2ff;
}
section.cta-footer .container {
  border-radius: 48px;
  border: 1px solid rgba(255, 255, 255, 0.0901960784);
  background: #4a00cf;
  max-width: 1180px;
  min-height: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 50px;
  box-sizing: border-box;
}
section.cta-footer .contact-btn {
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 3.7rem;
  padding: 34px 60px;
  background: white;
  color: #000;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
}
section.cta-footer .contact-btn:hover {
  transform: translateY(-5px);
}

body > footer.dark-mode, body > footer.dark-mode .footer-bottom {
  background: var(--page-background-1) !important;
}

@media (max-width: 1275px) {
  :root {
    --page-padding-y: 43px;
  }
  section.hero .section-container {
    flex-direction: column;
    gap: 2px;
  }
  section.hero .section-container img {
    max-width: unset;
    margin-bottom: 30px;
  }
  section.hero .text-container p {
    max-width: unset;
  }
  section.why .why-outer {
    flex-direction: column;
  }
  section.why .why-outer .why-img {
    max-width: 100%;
  }
  section.why .why-outer .why-content {
    padding: 39px 28px;
  }
}
@media (max-width: 500px) {
  :root {
    --page-padding-y: 42px;
    --page-padding-x: 22px;
    --p-font-size: 18px;
  }
  section.services .bento-grid {
    grid-auto-rows: auto;
    gap: 43px;
  }
  section.services .bento-card {
    padding: 0;
    background: none !important;
    border: none !important;
    border-radius: 0px;
  }
  section.services .bento-card h3 {
    font-size: 1.3rem;
  }
  section.services .card-number {
    margin-bottom: 14px;
    position: static;
  }
  section.services .card-large::before {
    background: none;
  }
  section.why .why-outer {
    background: none;
    border: none;
    border-radius: 5px;
  }
  section.why .why-outer .why-content {
    padding: 39px 0px;
    padding-bottom: 0px;
    background: none;
  }
  section.why .benefit-list li {
    border-bottom: 0;
    padding: 8px 0;
  }
  section.process .section-header {
    text-align: left;
  }
  section.process .process-icon {
    display: none;
  }
  section.cta-footer {
    padding: 0 !important;
  }
  section.cta-footer .container {
    padding: var(--page-padding-x);
    border-radius: 0;
    min-height: 532px;
  }
}
@media (max-width: 910px) {
  section.services .bento-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}