:root {
  --bg: #ffffff;
  --fg: #0f1729;
  --muted: #5b6577;
  --border: #e6e8ee;
  --soft: #f4f6fa;
  --card: #ffffff;
  --primary: #101935;
  --accent: #3b6ff5;
  --accent-glow: #5aa7ff;
  --radius: 14px;
  --shadow-card:
    0 1px 2px rgba(0, 0, 0, 0.04), 0 10px 30px -12px rgba(20, 30, 70, 0.1);
  --shadow-elegant: 0 24px 60px -24px rgba(59, 111, 245, 0.45);
  --gradient-hero: linear-gradient(
    135deg,
    #0f1a3d 0%,
    #1c2a5e 55%,
    #3257b8 100%
  );
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-glow));
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  /* list-style: none; */
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}
h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
}
.h-sm {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}
.h-xl {
  font-size: clamp(2rem, 4vw, 3rem);
}
.center {
  text-align: center;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--border);
}
.bg-base {
  background: var(--bg);
}
.bg-soft {
  background: var(--soft);
}
.mt-xl {
  margin-top: 3.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 0.875rem;
}
.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 1.25rem;
  max-width: 36rem;
}
.lead-mid {
  font-size: 1.1rem;
  margin-top: 1rem;
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}
.centered {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 46px;
  padding: 0 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-dark {
  background: var(--fg);
  color: #fff;
}
.btn-dark:hover {
  opacity: 0.9;
}
.btn-accent {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-elegant);
}
.btn-accent:hover {
  filter: brightness(1.05);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.w-full {
  width: 100%;
}
.link-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gradient-accent);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
}
.nav-links {
  display: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding: 3rem 0 4rem;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(90, 167, 255, 0.35),
    transparent 60%
  );
  opacity: 0.8;
  pointer-events: none;
}
.hero-glow.alt {
  background: radial-gradient(
    ellipse at bottom left,
    rgba(90, 167, 255, 0.4),
    transparent 60%
  );
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.hero h1 {
  margin-top: 0rem;
  text-wrap: balance;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 28rem;
}
.stats dt {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
.stats dd {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}
.hero-media {
  position: relative;
}
.hero-media-glow {
  position: absolute;
  inset: -1rem;
  background: var(--gradient-accent);
  opacity: 0.3;
  filter: blur(40px);
  border-radius: 32px;
}
.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-elegant);
  outline: 1px solid rgba(255, 255, 255, 0.1);
  height: max-content;
}

/* CARDS / GRIDS */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}
.pad {
  padding: 1.5rem;
}
.pad-lg {
  padding: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.span-2 {
  grid-column: 1/-1;
}
@media (min-width: 640px) {
  .span-2 {
    grid-column: span 2;
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.row-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}
.max-md {
  max-width: 28rem;
}
.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--soft);
  color: var(--accent);
  margin-bottom: 1rem;
}
.icon-box.accent-fill {
  background: var(--gradient-accent);
  color: #fff;
  width: 48px;
  height: 48px;
}
.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-top: 2rem;
}
.check-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.check-row li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}
.bullets {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.bullets li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}
.card h3 {
  margin-top: 0.25rem;
}
.card .muted {
  margin-top: 0.5rem;
  font-size: 0.92rem;
}
.ind h3 {
  margin-top: 0.5rem;
}

/* SOLUTIONS */
.sol-card {
  display: flex;
  flex-direction: column;
}
.sol-img,
.case-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.case-img {
  aspect-ratio: 16/10;
}
.sol-img img,
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.sol-card:hover .sol-img img,
.case:hover .case-img img {
  transform: scale(1.05);
}

/* CASE */
.case-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.chip {
  background: var(--soft);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}
.stat-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* LOGOS */
.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 640px) {
  .logos {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .logos {
    grid-template-columns: repeat(6, 1fr);
  }
}
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  background: var(--card);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  transition: all 0.2s;
}
.logo-cell:hover {
  background: #fff;
  color: var(--fg);
}

/* CONTACT */
.contact {
  padding: 5.5rem 0;
}
.contact-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 111, 245, 0.15);
  color: var(--accent-glow);
  flex-shrink: 0;
}
.info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.info-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.info-text a {
  color: inherit;
  text-decoration: none;
}
.info-text a:hover {
  color: var(--accent-glow);
}

.form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.form h3 {
  color: #fff;
  font-size: 1.25rem;
}
.form-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
}
.form label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}
.form input,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  color: #fff;
  font: inherit;
  outline: none;
  transition: border 0.2s;
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form input:focus,
.form textarea:focus {
  border-color: var(--accent-glow);
}
.form textarea {
  resize: vertical;
}
.form .btn {
  margin-top: 0.5rem;
  height: 44px;
}

/* FOOTER */
.footer {
  padding: 3rem 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-links {
  display: flex;
  flex-direction: column;
  /* gap: rem; */
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--fg);
}

.max-width {
  max-width: 1280px;
  margin: auto;
}
.footer {
  background: white;
  color: #fff;
  padding: 30px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.2fr;
  gap: 60px;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 25px;
}

.footer-desc {
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.footer-links,
.contact-list {
  list-style: none;
  padding: 0;
}

.footer-links li,
.contact-list li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-links a,
.contact-list a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.contact-list a:hover {
  color: #d6d6d6;
}

.footer-links li::before {
  content: "»";
  margin-right: 12px;
}

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

.social-links img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-bottom {
  margin-top: 0px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  color: #ddd;
}

.footer-bottom a {
  color: #fff;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer {
  background: white;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 60px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 25px;
}

.footer-text {
  color: black;
  line-height: 1.9;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: black;
}

.footer-column h4 {
  margin-bottom: 15px;
  color: black;
}

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

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column a {
  color: black;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #00c6ff;
}

.office-box p {
  line-height: 1.8;
  color: black;
  margin-bottom: 18px;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-size: 14px;
}

.footer-social a:hover {
  background: #00c6ff;
  color: #fff;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 50px 0 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  font-size: 15px;
}

.footer-bottom a {
  color: black;
  text-decoration: none;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
