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

:root {
  --bg: #03101f;
  --bg-soft: #061b32;
  --paper: #082746;
  --paper-strong: #0b3157;
  --ink: #ffffff;
  --muted: #b9c8d8;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #5fd092;
  --brand-2: #37b978;
  --accent: #f0c400;
  --accent-soft: #dff7e9;
  --nav-ink: #07111f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 74% 12%, rgba(95, 208, 146, 0.24), transparent 27rem),
    radial-gradient(circle at 8% 6%, rgba(15, 74, 119, 0.72), transparent 26rem),
    radial-gradient(circle at 92% 72%, rgba(240, 196, 0, 0.1), transparent 22rem),
    linear-gradient(180deg, #03101f 0%, #05192e 42%, #03101f 100%);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  border-radius: 999px;
  content: "";
  filter: blur(18px);
  opacity: 0.42;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

body::before {
  animation: ambient-float 18s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(95, 208, 146, 0.28), transparent 68%);
  height: 34rem;
  right: -12rem;
  top: 12rem;
  width: 34rem;
}

body::after {
  animation: ambient-float 22s ease-in-out infinite alternate-reverse;
  background: radial-gradient(circle, rgba(4, 61, 105, 0.56), transparent 68%);
  bottom: 5rem;
  height: 28rem;
  left: -10rem;
  width: 28rem;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  overflow: hidden;
}

.container {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: 22px;
}

/* ========== SCROLL ANIMATIONS ========== */
.scroll-animate {
  opacity: 0;
  will-change: transform, opacity;
}

.slide-left {
  transform: translateX(-60px);
  transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 1.2s ease;
}

.slide-right {
  transform: translateX(60px);
  transition: transform 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 1.2s ease;
}

.fade-up {
  transform: translateY(50px);
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
}

.scale {
  transform: scale(0.9);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateX(0) translateY(0) scale(1);
}

[data-delay="0.1"] {
  transition-delay: 0.1s;
}

[data-delay="0.2"] {
  transition-delay: 0.2s;
}

[data-delay="0.3"] {
  transition-delay: 0.3s;
}

[data-delay="0.4"] {
  transition-delay: 0.4s;
}

[data-delay="0.5"] {
  transition-delay: 0.5s;
}

[data-delay="0.6"] {
  transition-delay: 0.6s;
}

@keyframes ambient-float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-3rem, 2rem, 0) scale(1.08);
  }
}

@keyframes pulse-glow {
  from {
    opacity: 0.34;
    transform: scale(0.96);
  }

  to {
    opacity: 0.68;
    transform: scale(1.06);
  }
}

/* ========== HEADER ========== */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(5, 25, 46, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.navbar {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

/* Logo Image */
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

/* Brand Text with Gradient Color */
.brand-text {
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(135deg, #027BB4 0%, #00C8BD 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #1a2c3e;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #5fd092, #37b978);
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.is-active {
  color: #5fd092;
}

/* Buttons */
.btn {
  border-radius: 60px;
  padding: 10px 24px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: #5fd092;
  color: #05202f;
  box-shadow: 0 4px 12px rgba(95, 208, 146, 0.3);
}

.btn-primary:hover {
  background: #7bddab;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(95, 208, 146, 0.4);
}

/* Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #1a2c3e;
  transition: 0.2s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid rgba(5, 25, 46, 0.08);
  padding: 20px 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu-inner a {
  color: #1a2c3e;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(5, 25, 46, 0.08);
}

/* Responsive */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .brand-text {
    font-size: 1.3rem;
  }
  
  .brand-logo {
    height: 34px;
  }
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 1.1rem;
  }
  
  .brand-logo {
    height: 28px;
  }
  
  .btn-primary {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

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

.nav-link {
  border-radius: 999px;
  color: #152135;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 13px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: rgba(95, 208, 146, 0.16);
  color: var(--brand-2);
  transform: translateY(-1px);
}

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

.menu-toggle {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(5, 25, 46, 0.12);
  border-radius: 14px;
  color: var(--brand);
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hamburger-line {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 20px;
}

.menu-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(5, 25, 46, 0.08);
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.mobile-menu.is-open {
  max-height: 78vh;
}

.mobile-menu-inner {
  display: grid;
  gap: 8px;
  max-height: 78vh;
  overflow: auto;
  padding-block: 16px 24px;
}

.mobile-menu a {
  border: 1px solid rgba(5, 25, 46, 0.1);
  border-radius: 16px;
  color: var(--brand);
  font-weight: 650;
  padding: 13px 15px;
}

/* ========== BUTTONS ========== */
.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  overflow: hidden;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.btn::after {
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
  height: 120%;
  left: -120%;
  position: absolute;
  top: -10%;
  transform: skewX(-18deg);
  transition: left 520ms ease;
  width: 70%;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  left: 135%;
}

.btn-primary {
  background: var(--brand);
  box-shadow: 0 18px 45px rgba(95, 208, 146, 0.25);
  color: #062033;
}

.btn-primary:hover {
  box-shadow: 0 24px 60px rgba(95, 208, 146, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: #fff;
}

/* ========== HERO ========== */
.hero {
  padding-block: 84px 70px;
  position: relative;
}

.hero::before {
  animation: pulse-glow 8s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(95, 208, 146, 0.18), transparent 65%);
  border-radius: 999px;
  content: "";
  height: 26rem;
  pointer-events: none;
  position: absolute;
  right: 9vw;
  top: 4rem;
  width: 26rem;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
}

.eyebrow {
  align-items: center;
  background: rgba(95, 208, 146, 0.12);
  border: 1px solid rgba(95, 208, 146, 0.28);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 9px;
  padding: 8px 13px;
}

.eyebrow::before {
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(95, 208, 146, 0.13);
  content: "";
  height: 8px;
  width: 8px;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(2.35rem, 4.6vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 22px 0 0;
  max-width: 1020px;
}

.title-accent {
  color: var(--brand);
}

.title-accent2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin-bottom: 60px;
  color: var(--brand);
  text-align: center;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
  margin: 22px 0 0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 650;
  padding: 8px 12px;
}

.hero-image-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  text-align: center;
}

.hero-image-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #03101f);
  pointer-events: none;
  border-radius: 0 0 32px 32px;
}

.hero-image-container img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

/* ========== TWO COLUMN ========== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 20px;
}

.image-card img {
  width: 100%;
  height: 530px;
  border-radius: 20px;
  margin-bottom: 15px;
  object-fit: cover;
}

.dashboard-card {
  background: rgba(8, 39, 70, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  padding: 18px;
}

.dashboard-card:hover {
  border-color: rgba(95, 208, 146, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px);
}

.dashboard-inner {
  background: linear-gradient(145deg, #0b3157, #061b32);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.dashboard-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.status-pill {
  background: rgba(95, 208, 146, 0.14);
  border-radius: 999px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 7px 10px;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.metric strong {
  color: var(--brand);
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 7px;
}

.progress-card {
  background: #06203a;
  border-radius: 20px;
  margin-top: 16px;
  padding: 20px;
}

.progress-track {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  height: 9px;
  margin-top: 12px;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: inherit;
  height: 100%;
  width: 94%;
}

.mini-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.mini-stats div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
}

/* ========== STATS ROW ========== */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
  text-align: center;
}

.stats-row div {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 20px;
  border: 1px solid var(--line);
}

.stats-row h3 {
  font-size: 2.2rem;
  color: var(--brand);
  margin-bottom: 5px;
}

/* ========== SECTIONS ========== */
.section {
  padding-block: 76px;
}

.section-muted {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid var(--line);
}

.section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

.section-copy {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: rgba(8, 39, 70, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 208, 146, 0.28);
}

.card-icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 16px;
  color: #062033;
  display: grid;
  font-weight: 800;
  height: 46px;
  place-items: center;
  width: 46px;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover .card-icon {
  box-shadow: 0 14px 32px rgba(95, 208, 146, 0.22);
  transform: translateY(-3px) rotate(-4deg) scale(1.04);
}

.card-title {
  font-size: 1.16rem;
  margin: 18px 0 8px;
}

.card-text {
  color: var(--muted);
}

/* Founder Story */
.founder-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.founder-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #64deb0, #5fd092);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.founder-text p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.founder-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 24px;
  margin: 0 auto;
  border: 2px solid var(--brand);
}

.founder-image .caption {
  text-align: center;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 500;
}

/* Platforms Grid */
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.platform-tag {
  background: rgba(95, 208, 146, 0.12);
  border: 1px solid rgba(95, 208, 146, 0.28);
  border-radius: 60px;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.platform-tag:hover {
  background: rgba(95, 208, 146, 0.25);
  transform: translateY(-2px);
  border-color: var(--brand);
}

/* ========== FAQ ========== */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(8, 39, 70, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 208, 146, 0.28);
}

.faq-item h3 {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0;
}

.faq-item h3::after {
  align-items: center;
  background: rgba(95, 208, 146, 0.14);
  border: 1px solid rgba(95, 208, 146, 0.24);
  border-radius: 999px;
  color: var(--brand);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.25rem;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
  width: 34px;
}

.faq-item.is-open h3::after {
  background: var(--brand);
  color: #062033;
  content: "-";
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--muted);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 260ms ease, margin 260ms ease, opacity 200ms ease;
}

.faq-item.is-open p {
  margin-top: 18px;
  max-height: 18rem;
  opacity: 1;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* ========== SHARED INNER PAGES ========== */
.page-hero {
  padding-block: 96px 74px;
  position: relative;
}

.page-hero::before {
  animation: pulse-glow 9s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(95, 208, 146, 0.18), transparent 66%);
  border-radius: 999px;
  content: "";
  height: 24rem;
  pointer-events: none;
  position: absolute;
  right: 10vw;
  top: 3rem;
  width: 24rem;
}

.breadcrumb {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 650;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--brand);
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: #7bddab;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 4.15rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 22px 0 0;
  max-width: 980px;
}

.page-hero .lead {
  max-width: 800px;
}

.reveal {
  animation: page-reveal 0.72s ease both;
}

@keyframes page-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-list {
  margin-top: 22px;
}

.error-page {
  min-height: calc(100vh - 76px);
}

.error-hero {
  padding-block: 92px 110px;
}

.error-hero-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
}

.error-panel {
  background: rgba(8, 39, 70, 0.86);
  border: 1px solid rgba(95, 208, 146, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.error-panel::before {
  background: linear-gradient(90deg, var(--brand), rgba(240, 196, 0, 0.7));
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.error-code {
  color: rgba(95, 208, 146, 0.14);
  display: block;
  font-size: clamp(4.8rem, 9vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
  margin-bottom: 22px;
}

.error-panel h2 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.error-panel p {
  color: var(--muted);
  margin: 0 0 18px;
}

.error-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.error-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  padding: 12px 14px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.error-links a::after {
  color: var(--brand);
  content: "→";
}

.error-links a:hover {
  background: rgba(95, 208, 146, 0.12);
  border-color: rgba(95, 208, 146, 0.3);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.site-footer {
  background: #020b15;
  color: #fff;
  margin-top: 76px;
  padding-block: 54px 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  text-align: center;
}

.cta-band {
  margin-bottom: 80px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .footer-grid,
  .two-column,
  .founder-story {
    grid-template-columns: 1fr;
  }

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

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

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .two-column {
    gap: 40px;
  }

  .image-card img {
    height: auto;
    max-height: 400px;
    object-fit: cover;
  }

  .founder-image {
    order: -1;
    text-align: center;
  }

  .error-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    padding-inline: 16px;
  }

  .hero {
    padding-block: 52px;
  }

  .hero-grid {
    gap: 34px;
  }

  .nav-actions .btn {
    display: none;
  }

  .stats-row {
    flex-direction: column;
  }

  .stats-row div {
    width: 100%;
  }

  .slide-left,
  .slide-right {
    transform: translateX(-30px);
  }

  .slide-right {
    transform: translateX(30px);
  }

  .fade-up {
    transform: translateY(30px);
  }

  .platforms-grid {
    gap: 8px;
  }

  .platform-tag {
    padding: 5px 14px;
    font-size: 0.8rem;
  }

  .page-hero {
    padding-block: 62px 46px;
  }

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

  .error-hero {
    padding-block: 62px 72px;
  }

  .error-panel {
    padding: 22px;
  }
}

/* ========== ABOUT PAGE STYLES (prefix: abt-) ========== */

/* Hero Section */
:root {
  --abt-bg: #03101f;
  --abt-bg-soft: #061b32;
  --abt-paper: #082746;
  --abt-paper-strong: #0b3157;
  --abt-ink: #ffffff;
  --abt-muted: #b9c8d8;
  --abt-line: rgba(255, 255, 255, 0.12);
  --abt-brand: #5fd092;
  --abt-brand-2: #37b978;
  --abt-accent: #f0c400;
  --abt-accent-soft: #dff7e9;
  --abt-nav-ink: #07111f;
  --abt-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --abt-radius: 24px;
  --abt-max: 1180px;
}

html {
  scroll-behavior: smooth;
}

.abt-container {
  margin-inline: auto;
  max-width: var(--abt-max);
  padding-inline: 22px;
}

/* ========================================
   About Us Page Styles - Only Additional Styles
   (Base styles are in main styles.css)
   ======================================== */

/* Hero Section */
.abt-page-hero {
  padding-block: 78px 58px;
  position: relative;
  overflow: hidden;
}

.abt-breadcrumb {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 8px;
  margin-bottom: 16px;
}

.abt-breadcrumb a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.abt-breadcrumb a:hover {
  color: #7bddab;
}

.abt-eyebrow {
  align-items: center;
  background: rgba(95, 208, 146, 0.12);
  border: 1px solid rgba(95, 208, 146, 0.28);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 20px;
}

.abt-eyebrow::before {
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(95, 208, 146, 0.13);
  content: "";
  height: 8px;
  width: 8px;
  animation: abtPulse 2s infinite;
}

@keyframes abtPulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 208, 146, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(95, 208, 146, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 208, 146, 0); }
}

.abt-page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 22px 0 0;
  max-width: 900px;
}

.abt-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 760px;
}

/* About Sections */
.abt-section {
  padding-block: 76px;
}

.abt-section-muted {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid var(--line);
}

.abt-section-head {
  margin-bottom: 34px;
}

.abt-section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.abt-section-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0;
}

/* About Grid - Responsive */
.abt-grid {
  display: grid;
  gap: 30px;
}

.abt-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* About Cards */
.abt-content-card {
  background: rgba(8, 39, 70, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.abt-content-card:hover {
  border-color: rgba(95, 208, 146, 0.35);
  transform: translateY(-6px);
}

.abt-content-card h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.8rem;
}

.abt-card-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Check List */
.abt-check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
}

.abt-check-list li {
  list-style: none;
  color: var(--muted);
  padding-left: 28px;
  position: relative;
}

.abt-check-list li::before {
  background: var(--brand);
  border-radius: 999px;
  color: #062033;
  content: "✓";
  display: grid;
  font-size: 0.7rem;
  height: 18px;
  left: 0;
  place-items: center;
  position: absolute;
  top: 3px;
  width: 18px;
}

/* Founder Section */
.abt-founder-section {
  margin-bottom: 60px;
}

.abt-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.abt-founder-content {
  order: 1;
}

.abt-founder-image {
  order: 2;
}

/* Founder Image Card - Square/Box Shape with Animation */
.abt-founder-card {
  background: linear-gradient(145deg, rgba(8, 39, 70, 0.95), rgba(5, 26, 44, 0.98));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
}

.abt-founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(95, 208, 146, 0.15), transparent);
  transition: left 0.6s ease;
}

.abt-founder-card:hover::before {
  left: 100%;
}

.abt-founder-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--brand);
}

.abt-founder-avatar-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.abt-founder-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.abt-founder-card:hover .abt-founder-avatar {
  transform: scale(1.05);
}

.abt-founder-name {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--brand);
}

.abt-founder-title {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.abt-founder-bio {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Team Cards Grid - Fixed size cards */
.abt-team-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

/* Fixed size cards for Ali and Adeel */
.abt-team-fixed-card {
  background: rgba(8, 39, 70, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.abt-team-fixed-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 208, 146, 0.35);
}

.abt-team-avatar-wrap-fixed {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(95, 208, 146, 0.2), rgba(95, 208, 146, 0.05));
  padding: 6px;
  flex-shrink: 0;
}

.abt-team-avatar-fixed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.abt-team-fixed-card h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.4rem;
}

.abt-team-title {
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.abt-team-bio {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 12px;
  flex-grow: 1;
}

/* CTA Band */
.abt-cta-band {
  background: linear-gradient(135deg, #052445, #0d3a63 55%, #37b978);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  padding: 42px;
  text-align: center;
}

.abt-cta-band .abt-section-kicker {
  color: var(--accent);
  margin-bottom: 15px;
}

.abt-cta-band .abt-section-title {
  color: white;
}

.abt-cta-band .abt-section-copy {
  color: rgba(255, 255, 255, 0.85);
  margin: 15px auto 0;
  max-width: 600px;
}

.abt-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

/* Scroll Reveal Animations */
.abt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.abt-reveal.abt-animated {
  opacity: 1;
  transform: translateY(0);
}

.abt-scroll-fade-up {
  transform: translateY(40px);
}

.abt-scroll-slide-left {
  transform: translateX(-40px);
}

.abt-scroll-slide-right {
  transform: translateX(40px);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .abt-section {
    padding-block: 60px;
  }
  
  .abt-founder-grid {
    gap: 32px;
  }
  
  .abt-team-cards-grid {
    gap: 24px;
  }
  
  .abt-team-avatar-wrap-fixed {
    width: 160px;
    height: 160px;
  }
  
  .abt-team-fixed-card {
    min-height: 360px;
    padding: 24px 20px;
  }
}

/* Mobile - Small Screen Fix (Cards become column) */
@media (max-width: 768px) {
  .abt-page-hero {
    padding-block: 52px 40px;
  }
  
  .abt-section {
    padding-block: 48px;
  }
  
  /* FIX: Two column cards become single column */
  .abt-grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* Founder section - column on mobile */
  .abt-founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .abt-founder-content {
    order: 2;
  }
  
  .abt-founder-image {
    order: 1;
  }
  
  .abt-founder-name {
    font-size: 1.8rem;
  }
  
  /* Team cards - single column on mobile */
  .abt-team-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .abt-team-fixed-card {
    min-height: auto;
    padding: 24px 20px;
  }
  
  .abt-team-avatar-wrap-fixed {
    width: 140px;
    height: 140px;
  }
  
  .abt-content-card {
    padding: 24px;
  }
  
  .abt-cta-band {
    padding: 32px 24px;
  }
  
  .abt-cta-band .abt-section-title {
    font-size: 1.6rem;
  }
  
  .abt-section-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .abt-page-hero h1 {
    font-size: 1.8rem;
  }
  
  .abt-lead {
    font-size: 1rem;
  }
  
  .abt-section-title {
    font-size: 1.6rem;
  }
  
  .abt-content-card {
    padding: 20px;
  }
  
  .abt-founder-name {
    font-size: 1.5rem;
  }
  
  .abt-team-avatar-wrap-fixed {
    width: 120px;
    height: 120px;
  }
  
  .abt-team-fixed-card h3 {
    font-size: 1.2rem;
  }
  
  .abt-cta-band {
    padding: 28px 20px;
  }
  
  .abt-cta-band .abt-section-title {
    font-size: 1.4rem;
  }
}
/* ========== SERVICES PAGE STYLES (prefix: svc-) ========== */

/* Hero Section */
.svc-page-hero {
  padding-block: 78px 58px;
}

.svc-breadcrumb {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 8px;
  margin-bottom: 16px;
}

.svc-breadcrumb a {
  color: var(--brand);
  font-weight: 700;
}

.svc-eyebrow {
  align-items: center;
  background: rgba(95, 208, 146, 0.12);
  border: 1px solid rgba(95, 208, 146, 0.28);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 20px;
}

.svc-eyebrow::before {
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(95, 208, 146, 0.13);
  content: "";
  height: 8px;
  width: 8px;
}

.svc-page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 22px 0 0;
  max-width: 900px;
}

.svc-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
  margin: 22px 0 0;
  max-width: 760px;
}

/* Services Sections */
.svc-section {
  padding-block: 76px;
}

.svc-section-muted {
  background: rgba(255, 255, 255, 0.035);
  border-block: 1px solid var(--line);
}

.svc-section-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.svc-section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.svc-section-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0;
}

.svc-section-copy {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 720px;
}

/* Services Grid */
.svc-grid {
  display: grid;
  gap: 30px;
}

.svc-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Services Feature Cards */
.svc-feature-card {
  background: rgba(8, 39, 70, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.svc-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 208, 146, 0.28);
}

.svc-card-icon {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 16px;
  color: #062033;
  display: grid;
  font-weight: 800;
  height: 46px;
  place-items: center;
  width: 46px;
  transition: transform 260ms ease, box-shadow 260ms ease;
  margin-bottom: 20px;
}

.svc-feature-card:hover .svc-card-icon {
  box-shadow: 0 14px 32px rgba(95, 208, 146, 0.22);
  transform: translateY(-3px) rotate(-4deg) scale(1.04);
}

.svc-card-title {
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: #fff;
}

.svc-card-text {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.svc-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* Services CTA Band */
.svc-cta-band {
  background: linear-gradient(135deg, #052445, #0d3a63 55%, #37b978);
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 42px;
  text-align: center;
}

.svc-cta-band .svc-section-kicker {
  color: var(--accent);
  margin-bottom: 15px;
}

.svc-cta-band .svc-section-title {
  color: white;
}

.svc-cta-band .svc-section-copy {
  color: rgba(255, 255, 255, 0.78);
  margin: 15px auto 0;
}

/* ========== SHARED SCROLL ANIMATIONS (for both pages) ========== */
.abt-reveal,
.svc-reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.abt-scroll-fade-up,
.svc-scroll-fade-up {
  transform: translateY(40px);
}

.abt-scroll-fade-up.abt-animated,
.svc-scroll-fade-up.svc-animated {
  opacity: 1;
  transform: translateY(0);
}

.abt-scroll-slide-left,
.svc-scroll-slide-left {
  transform: translateX(-50px);
}

.abt-scroll-slide-left.abt-animated,
.svc-scroll-slide-left.svc-animated {
  opacity: 1;
  transform: translateX(0);
}

.abt-scroll-slide-right,
.svc-scroll-slide-right {
  transform: translateX(50px);
}

.abt-scroll-slide-right.abt-animated,
.svc-scroll-slide-right.svc-animated {
  opacity: 1;
  transform: translateX(0);
}

.abt-scroll-scale,
.svc-scroll-scale {
  transform: scale(0.95);
}

.abt-scroll-scale.abt-animated,
.svc-scroll-scale.svc-animated {
  opacity: 1;
  transform: scale(1);
}

/* Shared Container */
.svc-container {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: 22px;
}

/* Responsive for Services Page */
@media (max-width: 1040px) {
  .svc-grid-3 {
    grid-template-columns: 1fr;
  }

  .svc-section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {

  .svc-page-hero,
  .svc-section {
    padding-block: 52px;
  }

  .svc-scroll-slide-left,
  .svc-scroll-slide-right,
  .svc-scroll-fade-up {
    transform: translateX(0) translateY(30px);
  }

  .svc-cta-band {
    border-radius: 24px;
    padding: 28px;
  }
}

/* ========== CONTACT PAGE STYLES (prefix: cnt-) ========== */

/* Hero Section */
.cnt-page-hero {
  padding-block: 78px 58px;
}

.cnt-breadcrumb {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 8px;
  margin-bottom: 16px;
}

.cnt-breadcrumb a {
  color: var(--brand);
  font-weight: 700;
}

.cnt-eyebrow {
  align-items: center;
  background: rgba(95, 208, 146, 0.12);
  border: 1px solid rgba(95, 208, 146, 0.28);
  border-radius: 999px;
  color: var(--brand);
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 700;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 20px;
}

.cnt-eyebrow::before {
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(95, 208, 146, 0.13);
  content: "";
  height: 8px;
  width: 8px;
}

.cnt-page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 22px 0 0;
  max-width: 900px;
}

.cnt-lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
  margin: 22px 0 0;
  max-width: 760px;
}

/* Contact Section */
.cnt-section {
  padding-block: 76px;
}

.cnt-section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.cnt-section-title {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 15px;
}

.cnt-section-copy {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 720px;
}

/* Contact Layout */
.cnt-contact-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1.2fr;
}

/* Check List */
.cnt-check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
}

.cnt-check-list li {
  list-style: none;
  color: var(--muted);
  padding-left: 28px;
  position: relative;
}

.cnt-check-list li::before {
  background: var(--brand);
  border-radius: 999px;
  color: #062033;
  content: "✓";
  display: grid;
  font-size: 0.7rem;
  height: 18px;
  left: 0;
  place-items: center;
  position: absolute;
  top: 3px;
  width: 18px;
}

/* Contact Form Card */
.cnt-form-card {
  background: rgba(8, 39, 70, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.cnt-form-card:hover {
  border-color: rgba(95, 208, 146, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px);
}

.cnt-form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.cnt-field {
  display: grid;
  gap: 8px;
  position: relative;
}

.cnt-field.cnt-full {
  grid-column: 1 / -1;
}

.cnt-field label {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.cnt-field input,
.cnt-field textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #fff;
  outline: none;
  padding: 14px 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.cnt-field input.is-invalid,
.cnt-field textarea.is-invalid {
  background: rgba(255, 80, 80, 0.08);
  border-color: rgba(255, 119, 119, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 80, 80, 0.12);
}

.cnt-field input.is-valid,
.cnt-field textarea.is-valid {
  border-color: rgba(95, 208, 146, 0.72);
  box-shadow: 0 0 0 4px rgba(95, 208, 146, 0.12);
}

.cnt-field-error {
  align-items: center;
  color: #ffb7b7;
  display: none;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 7px;
  line-height: 1.35;
}

.cnt-field-error::before {
  background: #ff7777;
  border-radius: 999px;
  content: "";
  height: 7px;
  width: 7px;
}

.cnt-field.has-error .cnt-field-error {
  display: inline-flex;
}

.cnt-form-summary {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 119, 119, 0.32);
  border-radius: 16px;
  color: #ffd0d0;
  display: none;
  font-weight: 750;
  margin-bottom: 18px;
  padding: 12px 16px;
}

.cnt-form-summary.is-visible {
  display: block;
}

.cnt-field input::placeholder,
.cnt-field textarea::placeholder {
  color: #86a0b8;
}

.cnt-field textarea {
  min-height: 120px;
  resize: vertical;
}

.cnt-field input:focus,
.cnt-field textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(95, 208, 146, 0.14);
}

.cnt-form-note {
  background: rgba(95, 208, 146, 0.12);
  border: 1px solid rgba(95, 208, 146, 0.25);
  border-radius: 16px;
  color: var(--brand);
  font-weight: 700;
  margin: 20px 0 0;
  padding: 12px 16px;
  text-align: center;
}

/* Container */
.cnt-container {
  margin-inline: auto;
  max-width: var(--max);
  padding-inline: 22px;
}

/* Scroll Animations for Contact Page */
.cnt-reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.cnt-scroll-fade-up {
  transform: translateY(40px);
}

.cnt-scroll-fade-up.cnt-animated {
  opacity: 1;
  transform: translateY(0);
}

.cnt-scroll-slide-left {
  transform: translateX(-50px);
}

.cnt-scroll-slide-left.cnt-animated {
  opacity: 1;
  transform: translateX(0);
}

.cnt-scroll-slide-right {
  transform: translateX(50px);
}

.cnt-scroll-slide-right.cnt-animated {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1040px) {
  .cnt-contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cnt-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cnt-page-hero,
  .cnt-section {
    padding-block: 52px;
  }
  
  .cnt-container {
    padding-inline: 16px;
  }
  
  .cnt-form-card {
    padding: 20px;
  }
  
  .cnt-scroll-slide-left,
  .cnt-scroll-slide-right,
  .cnt-scroll-fade-up {
    transform: translateX(0) translateY(30px);
  }
}

.svg-icon {
  display: inline-block;
  vertical-align: middle;
}

.card-icon .svg-icon,
.svc-card-icon .svg-icon {
  height: 27px;
  width: 27px;
}

.section-kicker:has(.svg-icon),
.sidebar a:has(.svg-icon) {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.sidebar a:has(.svg-icon) {
  display: flex;
}

.section-kicker .svg-icon,
.sidebar a .svg-icon {
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}
