:root {
  --navy: #0f172a;
  --navy-2: #1e293b;
  --teal: #14b8a6;
  --teal-light: #2dd4bf;
  --cyan: #38bdf8;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: #334155;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--navy);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.desktop-nav {
  height: 92px;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 42px;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 34px;
  width: 42%;
}

.nav-left {
  justify-content: flex-end;
  padding-right: 90px;
}

.nav-right {
  justify-content: flex-start;
  padding-left: 90px;
}

.desktop-nav a,
.nav-link-btn {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  background: none;
  border: 0;
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.nav-link-btn:hover {
  color: var(--teal-light);
}

.logo,
.mobile-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.85rem;
  letter-spacing: -1px;
  font-weight: 700;
}

.logo span,
.mobile-logo span {
  color: var(--text);
}

.logo strong,
.mobile-logo strong {
  color: var(--teal-light);
}

.nav-item-mega {
  position: relative;
  height: 92px;
  display: flex;
  align-items: center;
}

.mega-menu {
  position: fixed;
  top: 82px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding: 32px;
  background: rgba(30, 41, 59, 0.98);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
}

.nav-item-mega:hover .mega-menu,
.nav-item-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

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

.nav-item-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.7);
  transition: transform 0.25s ease, background 0.25s ease;
}

.mega-menu div:hover {
  transform: translateY(-6px);
  background: rgba(20, 184, 166, 0.12);
}

.mega-menu h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--teal-light);
}

.mega-menu p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.mobile-nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 22px;
}

.burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  height: 100vh;
  background: var(--navy-2);
  z-index: 1100;
  padding: 96px 24px 30px;
  transition: left 0.35s ease;
  overflow-y: auto;
}

.mobile-panel.active {
  left: 0;
}

.mobile-panel a,
.mobile-dropdown-btn {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: var(--text);
  background: none;
  border: 0;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-dropdown {
  display: none;
  padding-left: 14px;
}

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

.mobile-dropdown a {
  color: var(--muted);
  font-size: 0.95rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 90px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.hero-glow-one {
  background: var(--teal);
  top: 15%;
  left: -120px;
}

.hero-glow-two {
  background: var(--cyan);
  bottom: 8%;
  right: -120px;
}

.eyebrow {
  color: var(--teal-light) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.78rem !important;
  margin-bottom: 18px !important;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  line-height: 1.3;
  letter-spacing: -0.06em;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.hero-text,
.section-heading p,
.section-intro,
.ai-panel p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.btn-primary-custom,
.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #04111f;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(20,184,166,0.3);
}

.btn-secondary-custom {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary-custom:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card,
.feature-card,
.service-tile {
  background: linear-gradient(180deg, rgba(30,41,59,0.92), rgba(15,23,42,0.95));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.interactive-card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.interactive-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45,212,191,0.45);
  box-shadow: 0 32px 90px rgba(20,184,166,0.12);
  border-radius: 20px;
}

.card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.card-top span {
  width: 12px;
  height: 12px;
  background: var(--border);
  border-radius: 50%;
}

.hero-card h3,
.feature-card h3,
.service-tile h3 {
  margin-bottom: 14px;
}

.hero-card p,
.feature-card p,
.service-tile p {
  color: var(--muted);
}

.scan-list {
  margin: 28px 0;
}

.scan-list div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.scan-list span {
  color: var(--teal-light);
  font-weight: 800;
  margin-right: 12px;
}

.card-link {
  color: var(--teal-light);
  font-weight: 700;
}

.section-padding {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.feature-card {
  height: 100%;
}

.services-section {
  background: radial-gradient(circle at top right, rgba(20,184,166,0.12), transparent 34%);
}

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

.service-tile span {
  color: var(--teal-light);
  font-weight: 800;
  margin-bottom: 22px;
  display: block;
}

.ai-panel {
  padding: 64px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(20,184,166,0.18), rgba(56,189,248,0.08)),
    rgba(30,41,59,0.88);
  border: 1px solid rgba(45,212,191,0.22);
}

.ai-orbit {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.orbit-core {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  color: #04111f;
  font-size: 2.5rem;
  font-weight: 900;
  box-shadow: 0 0 80px rgba(20,184,166,0.35);
}

.ai-orbit span {
  position: absolute;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(15,23,42,0.85);
  border: 1px solid var(--border);
  color: var(--text);
  animation: float 4s ease-in-out infinite;
}

.ai-orbit span:nth-child(2) { top: 20px; left: 80px; }
.ai-orbit span:nth-child(3) { top: 80px; right: 40px; animation-delay: .4s; }
.ai-orbit span:nth-child(4) { bottom: 70px; left: 30px; animation-delay: .8s; }
.ai-orbit span:nth-child(5) { bottom: 25px; right: 95px; animation-delay: 1.2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}


.growth-scan-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 620px;
  padding: 34px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(56, 189, 248, 0.14),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(30, 41, 59, 0.96),
      rgba(15, 23, 42, 0.98)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.35),
    0 0 50px rgba(20, 184, 166, 0.06);
}

/*
Use your own background image here.

Good options:
- digital-grid.webp
- scanner-grid.webp
- technology-network.webp
- ai-dashboard.webp
*/

.scan-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../images/digital-scan-background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.06;
  filter: grayscale(1) contrast(1.15);
  pointer-events: none;
}

.growth-scan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    transparent 90%
  );
  pointer-events: none;
}

.growth-scan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(20, 184, 166, 0.11),
      transparent 42%
    );
  pointer-events: none;
}

.scan-beam {
  position: absolute;
  top: -35%;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 0;
  opacity: 0.45;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(45, 212, 191, 0.03),
    rgba(45, 212, 191, 0.18),
    rgba(45, 212, 191, 0.03),
    transparent
  );
  animation: scanCardBeam 5.5s linear infinite;
  pointer-events: none;
}

@keyframes scanCardBeam {
  from {
    transform: translateY(-150px);
  }

  to {
    transform: translateY(900px);
  }
}

.scan-card-content {
  position: relative;
  z-index: 2;
}

.scan-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-controls span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
}

.scan-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.08);
  color: var(--teal-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.8);
  animation: statusPulse 1.8s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.scan-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.scan-icon {
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.18),
      rgba(56, 189, 248, 0.08)
    );
  color: var(--teal-light);
  font-size: 1.75rem;
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.1);
}

.scan-label {
  margin: 0 0 4px;
  color: var(--teal-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scan-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.scan-intro {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.scan-results {
  display: grid;
  gap: 20px;
}

.scan-result {
  padding-bottom: 4px;
}

.scan-result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.scan-result-heading span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
}

.scan-result-heading span i {
  width: 18px;
  color: var(--teal-light);
}

.scan-result-heading strong {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 650;
  text-align: right;
}

.scan-progress {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
}

.scan-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--teal),
    var(--teal-light),
    var(--cyan)
  );
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.25);
  animation: loadScanProgress 1.4s ease forwards;
}

@keyframes loadScanProgress {
  from {
    width: 0;
  }

  to {
    width: var(--progress);
  }
}

.scan-summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 30px 0 24px;
  padding: 18px;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: 18px;
  background: rgba(20, 184, 166, 0.07);
}

.scan-summary i {
  margin-top: 4px;
  color: var(--teal-light);
  font-size: 1.15rem;
}

.scan-summary strong,
.scan-summary span {
  display: block;
}

.scan-summary strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: 0.92rem;
}

.scan-summary span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.scan-cta {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--teal),
    var(--teal-light),
    var(--cyan)
  );
  color: #04111f;
  font-weight: 800;
  box-shadow: 0 18px 45px rgba(20, 184, 166, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.scan-cta:hover {
  color: #04111f;
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(20, 184, 166, 0.28);
}

.scan-cta i {
  transition: transform 0.25s ease;
}

.scan-cta:hover i {
  transform: translateX(5px);
}

.scan-smallprint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 28px;
    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#14b8a6 0%,#38bdf8 100%);
    box-shadow:
        0 18px 40px rgba(20,184,166,.25),
        inset 0 1px 0 rgba(255,255,255,.25);

    transition:all .35s ease;
}

.service-icon i{
    font-size:40px;
    color:#fff;
    transition:all .35s ease;
}

.feature-card:hover .service-icon{
    transform:translateY(-6px) scale(1.05);
    box-shadow:
        0 28px 60px rgba(20,184,166,.35),
        inset 0 1px 0 rgba(255,255,255,.35);
}

.feature-card:hover .service-icon i{
    transform:scale(1.08);
}

.service-icon{
    width:80px;
    height:80px;
    margin:0 auto 28px;
    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(20,184,166,.08);
    border:1px solid rgba(56,189,248,.15);

    transition:.35s;
}

.service-icon i{
    font-size:38px;
    background:linear-gradient(135deg,#14b8a6,#38bdf8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.feature-card:hover .service-icon{
    background:rgba(20,184,166,.14);
    transform:translateY(-6px);
    border-color:rgba(56,189,248,.35);
}

.service-tile{
    position:relative;
}

.service-number{
    position:absolute;
    top:28px;
    right:28px;

    font-size:.8rem;
    font-weight:700;
    letter-spacing:2px;

    color:rgba(255,255,255,.18);
}

.service-tile .service-icon{
    width:90px;
    height:90px;
    margin-bottom:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    background:rgba(20,184,166,.08);
    border:1px solid rgba(56,189,248,.15);

    transition:.35s ease;
}

.service-tile .service-icon i{

    font-size:42px;

    background:linear-gradient(135deg,#14b8a6,#38bdf8);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.service-tile:hover .service-icon{

    transform:translateY(-8px);

    background:rgba(20,184,166,.14);

    border-color:rgba(56,189,248,.35);

}

.service-tile a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#38bdf8;

    text-decoration:none;

    transition:.3s;

}

.service-tile a i{

    transition:.3s;

}

.service-tile:hover a i{

    transform:translateX(6px);

}

.location-strip{
    padding:30px 0;
}

.location-strip-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    padding:28px 34px;

    border-radius:22px;
    background:
        linear-gradient(
            135deg,
            rgba(20,184,166,.08),
            rgba(56,189,248,.05)
        );

    border:1px solid rgba(56,189,248,.14);
}

.location-strip-content{
    display:flex;
    align-items:center;
    gap:20px;
}

.location-icon{
    width:58px;
    height:58px;
    flex:0 0 58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;
    background:rgba(20,184,166,.1);
}

.location-icon i{
    font-size:25px;

    background:linear-gradient(135deg,#14b8a6,#38bdf8);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.location-label{
    display:block;
    margin-bottom:5px;

    color:#f8fafc;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
}

.location-strip p{
    margin:0;
    color:#94a3b8;
}

.location-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;

    color:#38bdf8;
    font-weight:600;
    text-decoration:none;
}

.location-link i{
    transition:transform .3s ease;
}

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

.ai-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 30%,
      rgba(20, 184, 166, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 60%,
      rgba(56, 189, 248, 0.08),
      transparent 34%
    ),
    #0f172a;
}

.ai-section-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.35;
}

.ai-glow-one {
  width: 350px;
  height: 350px;
  top: 8%;
  left: -150px;
  background: rgba(20, 184, 166, 0.25);
}

.ai-glow-two {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: -100px;
  background: rgba(56, 189, 248, 0.18);
}

.ai-panel {
  position: relative;
  padding: clamp(40px, 6vw, 85px);
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(30, 41, 59, 0.92),
      rgba(15, 23, 42, 0.96)
    );
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow:
    0 40px 100px rgba(2, 6, 23, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ai-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 35%,
    black 100%
  );
}

.ai-content {
  position: relative;
  z-index: 2;
}

.ai-content h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.ai-content h2 span {
  display: block;
  background: linear-gradient(135deg, #14b8a6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-content > p {
  max-width: 610px;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.8;
}

.ai-content .ai-lead {
  margin-bottom: 12px;
  color: #e2e8f0;
  font-size: 1.12rem;
  line-height: 1.75;
}

.ai-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.ai-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.11);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.ai-benefit-item:hover {
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.78);
  border-color: rgba(56, 189, 248, 0.26);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.24);
}

.ai-benefit-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.16),
      rgba(56, 189, 248, 0.12)
    );
  border: 1px solid rgba(56, 189, 248, 0.16);
}

.ai-benefit-icon i {
  font-size: 18px;
  background: linear-gradient(135deg, #14b8a6, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ai-benefit-item h3 {
  margin: 1px 0 6px;
  color: #f8fafc;
  font-size: 1rem;
}

.ai-benefit-item p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.55;
}

.ai-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.ai-actions .btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ai-actions .btn-primary-custom i {
  transition: transform 0.3s ease;
}

.ai-actions .btn-primary-custom:hover i {
  transform: translateX(5px);
}

.ai-text-link {
  color: #cbd5e1;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(203, 213, 225, 0.3);
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.ai-text-link:hover {
  color: #38bdf8;
  border-color: #38bdf8;
}

.ai-dashboard-wrap {
  position: relative;
  z-index: 2;
  max-width: 610px;
  margin-left: auto;
}

.ai-dashboard {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(15, 23, 42, 0.96),
      rgba(30, 41, 59, 0.88)
    );
  border: 1px solid rgba(56, 189, 248, 0.16);
  box-shadow:
    0 36px 90px rgba(2, 6, 23, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.ai-dashboard:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow:
    0 44px 110px rgba(2, 6, 23, 0.6),
    0 0 50px rgba(20, 184, 166, 0.07);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.dashboard-dots {
  display: flex;
  gap: 7px;
}

.dashboard-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.42);
}

.dashboard-dots span:first-child {
  background: #14b8a6;
}

.dashboard-dots span:nth-child(2) {
  background: #38bdf8;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 600;
}

.dashboard-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.1);
  animation: dashboardPulse 2s infinite;
}

.dashboard-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 26px;
}

.dashboard-heading p {
  margin: 0 0 6px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-heading h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.4rem;
}

.dashboard-score {
  width: 86px;
  height: 76px;
  flex: 0 0 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.14),
      rgba(56, 189, 248, 0.1)
    );
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.dashboard-score span {
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 0.66rem;
}

.dashboard-score strong {
  color: #f8fafc;
  font-size: 1.65rem;
  line-height: 1;
}

.dashboard-progress-wrap {
  margin-bottom: 24px;
}

.dashboard-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #94a3b8;
  font-size: 0.78rem;
}

.dashboard-progress-label strong {
  color: #2dd4bf;
}

.dashboard-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(148, 163, 184, 0.1);
}

.dashboard-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #14b8a6, #38bdf8);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dashboard-metrics {
  display: grid;
  gap: 12px;
}

.dashboard-metric {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.09);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.dashboard-metric:hover {
  transform: translateX(6px);
  background: rgba(30, 41, 59, 0.78);
  border-color: rgba(56, 189, 248, 0.22);
}

.metric-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(20, 184, 166, 0.1);
}

.metric-icon i {
  color: #2dd4bf;
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.metric-content span {
  color: #94a3b8;
  font-size: 0.76rem;
}

.metric-content strong {
  color: #f8fafc;
  font-size: 1.05rem;
}

.metric-trend {
  color: #14b8a6;
}

.dashboard-chart {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.48);
  border: 1px solid rgba(148, 163, 184, 0.09);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 14px;
}

.chart-header span {
  display: block;
  color: #64748b;
  font-size: 0.72rem;
}

.chart-header strong {
  display: block;
  margin-top: 3px;
  color: #e2e8f0;
  font-size: 0.88rem;
}

.chart-badge {
  padding: 6px 10px;
  border-radius: 100px;
  color: #2dd4bf !important;
  background: rgba(20, 184, 166, 0.1);
  font-weight: 700;
}

.chart-area {
  position: relative;
  height: 155px;
  overflow: hidden;
}

.chart-grid-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid-lines span {
  display: block;
  width: 100%;
  border-top: 1px dashed rgba(148, 163, 184, 0.11);
}

.chart-area svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;
  stroke: url(#aiChartGradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: drawAiChart 2.2s ease forwards;
}

.chart-fill {
  fill: url(#aiChartFill);
  opacity: 0;
  animation: fadeAiChart 1.2s 0.8s ease forwards;
}

.chart-point {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #38bdf8;
  border: 2px solid #0f172a;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.12);
}

.chart-point-one {
  left: 28%;
  top: 47%;
}

.chart-point-two {
  left: 58%;
  top: 31%;
}

.chart-point-three {
  right: 4%;
  top: 8%;
}

.dashboard-footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 15px;
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.08),
      rgba(56, 189, 248, 0.05)
    );
  border: 1px solid rgba(56, 189, 248, 0.12);
}

.dashboard-footer-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
}

.dashboard-footer p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.78rem;
  line-height: 1.5;
}

.dashboard-scan-line {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  opacity: 0.35;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(56, 189, 248, 0.12),
      transparent
    );
  animation: dashboardScan 6s linear infinite;
}

.floating-insight {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 180px;
  padding: 13px 15px;
  border-radius: 15px;
  background: rgba(15, 23, 42, 0.93);
  border: 1px solid rgba(56, 189, 248, 0.18);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(15px);
  animation: floatingInsight 5s ease-in-out infinite;
}

.floating-insight i {
  color: #2dd4bf;
}

.floating-insight span {
  display: block;
  color: #64748b;
  font-size: 0.68rem;
}

.floating-insight strong {
  display: block;
  margin-top: 2px;
  color: #f8fafc;
  font-size: 0.83rem;
}

.floating-insight-one {
  top: 23%;
  right: -55px;
}

.floating-insight-two {
  left: -55px;
  bottom: 12%;
  animation-delay: -2.5s;
}

.dashboard-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, 0.1);
  pointer-events: none;
}

.dashboard-orbit-one {
  width: 470px;
  height: 470px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.dashboard-orbit-two {
  width: 590px;
  height: 590px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(20, 184, 166, 0.07);
}

@keyframes dashboardPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.1);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(20, 184, 166, 0);
  }
}

@keyframes dashboardScan {
  from {
    transform: translateY(-120%);
  }

  to {
    transform: translateY(720%);
  }
}

@keyframes drawAiChart {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeAiChart {
  to {
    opacity: 1;
  }
}

@keyframes floatingInsight {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(20, 184, 166, 0.07),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(56, 189, 248, 0.06),
      transparent 34%
    );
}

.process-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.process-experience {
  position: relative;
}

.process-steps {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Vertical connecting line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 47px;
  bottom: 47px;
  left: 34px;
  width: 2px;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 184, 166, 0.55),
      rgba(56, 189, 248, 0.18),
      rgba(51, 65, 85, 0.3)
    );
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 135px;
  padding: 22px 20px 22px 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 22px;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.process-step + .process-step {
  margin-top: 7px;
}

.process-step:hover,
.process-step:focus-visible,
.process-step.is-active {
  transform: translateX(8px);
  background:
    linear-gradient(
      90deg,
      rgba(20, 184, 166, 0.1),
      rgba(56, 189, 248, 0.04),
      transparent
    );
}

.process-step:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.7);
  outline-offset: 4px;
}

.process-step-marker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 21px;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.25);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.process-step-icon i {
  font-size: 25px;
  color: #64748b;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

.process-step:hover .process-step-icon,
.process-step.is-active .process-step-icon {
  transform: scale(1.06);
  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.17),
      rgba(56, 189, 248, 0.13)
    );
  border-color: rgba(56, 189, 248, 0.32);
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.32),
    0 0 30px rgba(20, 184, 166, 0.1);
}

.process-step:hover .process-step-icon i,
.process-step.is-active .process-step-icon i {
  color: #2dd4bf;
  transform: scale(1.08);
}

.process-step-content {
  display: block;
}

.process-step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.process-step-number {
  color: #475569;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  transition: color 0.35s ease;
}

.process-step-title {
  color: #cbd5e1;
  font-size: 1.35rem;
  font-weight: 700;
  transition: color 0.35s ease;
}

.process-step-description {
  display: block;
  max-width: 390px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.65;
  transition: color 0.35s ease;
}

.process-step:hover .process-step-number,
.process-step.is-active .process-step-number {
  color: #2dd4bf;
}

.process-step:hover .process-step-title,
.process-step.is-active .process-step-title {
  color: #f8fafc;
}

.process-step:hover .process-step-description,
.process-step.is-active .process-step-description {
  color: #94a3b8;
}

.process-step-arrow {
  color: #475569;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    color 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.process-step:hover .process-step-arrow,
.process-step.is-active .process-step-arrow {
  color: #38bdf8;
  opacity: 1;
  transform: translateX(0);
}

/* Right image panel */
.process-visual-wrap {
  position: relative;
  height: 100%;
  min-height: 590px;
}

.process-visual {
  position: sticky;
  top: 110px;
  height: 590px;
  overflow: hidden;
  border-radius: 32px;
  background: #0f172a;
  border: 1px solid rgba(56, 189, 248, 0.16);
  box-shadow:
    0 35px 90px rgba(2, 6, 23, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  isolation: isolate;
  transform-style: preserve-3d;
  transition:
    transform 0.2s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.process-visual:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow:
    0 45px 110px rgba(2, 6, 23, 0.5),
    0 0 50px rgba(20, 184, 166, 0.06);
}

.process-main-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.03);
  transition:
    opacity 0.32s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-main-image.is-changing {
  opacity: 0;
  transform: scale(1.09);
}

.process-visual:hover .process-main-image {
  transform: scale(1.07);
}

.process-image-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.25) 0%,
      rgba(15, 23, 42, 0.1) 35%,
      rgba(15, 23, 42, 0.92) 100%
    ),
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.38),
      transparent 70%
    );
}

.process-visual-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.65),
      transparent 70%
    );
}

.process-visual-glow {
  position: absolute;
  z-index: -2;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.2);
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
}

.process-visual-top {
  position: absolute;
  top: 26px;
  right: 26px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process-visual-badge,
.process-visual-status {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 100px;
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.process-visual-status {
  gap: 8px;
}

.process-visual-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.11);
  animation: processPulse 2s infinite;
}

.process-visual-content {
  position: absolute;
  right: 38px;
  bottom: 48px;
  left: 38px;
  max-width: 500px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.process-visual-content.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.process-visual-number {
  display: block;
  margin-bottom: 10px;
  color: #2dd4bf;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-visual-content h3 {
  margin: 0 0 9px;
  color: #f8fafc;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.process-visual-content p {
  margin: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.process-visual-progress {
  position: absolute;
  right: 30px;
  bottom: 31px;
  display: flex;
  gap: 8px;
}

.process-progress-dot {
  position: relative;
  width: 24px;
  height: 8px;
  padding: 0;
  overflow: hidden;

  border: 0;
  border-radius: 100px;

  background: rgba(255, 255, 255, 0.25);

  cursor: pointer;

  transition:
    width 0.35s ease,
    background 0.35s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.process-progress-dot:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.45);
}

.process-progress-dot.is-active {
  width: 46px;

  background: linear-gradient(
    90deg,
    #14b8a6,
    #38bdf8
  );

  box-shadow: 0 0 18px rgba(56, 189, 248, 0.3);
}

.process-progress-dot:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 4px;
}


.process-corner-card {
  position: absolute;
  top: 100px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 255px;
  padding: 14px 16px;
  border-radius: 17px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.3);
  animation: processFloat 5s ease-in-out infinite;
}

.process-corner-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #2dd4bf;
  background: rgba(20, 184, 166, 0.11);
}

.process-corner-card span {
  display: block;
  margin-bottom: 2px;
  color: #64748b;
  font-size: 0.68rem;
}

.process-corner-card strong {
  display: block;
  color: #e2e8f0;
  font-size: 0.8rem;
}

@keyframes processPulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.11);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(20, 184, 166, 0);
  }
}

@keyframes processFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.nav-logo{
  width: 160px;
  height:auto;
}


.why-item{
    position:relative;
    transition:.35s ease;
}

.why-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.why-header h3{
    margin:0;
    color:#f8fafc;
    font-size:1.3rem;
    font-weight:700;
    line-height:1.3;
}

.why-icon{

    width:60px;
    height:60px;

    flex:0 0 60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:rgba(20,184,166,.08);

    border:1px solid rgba(56,189,248,.15);

    transition:.35s ease;

}

.why-icon i{

    font-size:26px;

    background:linear-gradient(
        135deg,
        #14b8a6,
        #38bdf8
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    transition:.35s ease;

}

.why-item:hover .why-icon{

    transform:translateY(-3px);

    background:rgba(20,184,166,.14);

    border-color:rgba(56,189,248,.35);

    box-shadow:0 16px 35px rgba(20,184,166,.12);

}

.why-item:hover .why-icon i{

    transform:scale(1.08);

}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 28%,
      rgba(20, 184, 166, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 72%,
      rgba(56, 189, 248, 0.07),
      transparent 32%
    ),
    #0f172a;
}

.testimonial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.testimonial-glow-one {
  top: 20%;
  left: -180px;
  width: 380px;
  height: 380px;
  background: rgba(20, 184, 166, 0.14);
}

.testimonial-glow-two {
  right: -180px;
  bottom: 5%;
  width: 420px;
  height: 420px;
  background: rgba(56, 189, 248, 0.11);
}

.testimonials-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.testimonials-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.testimonials-heading p:last-child {
  max-width: 680px;
}

.testimonial-navigation {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.testimonial-nav {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  border-radius: 16px;

  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);

  cursor: pointer;

  transition:
    color 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-nav:hover {
  color: #f8fafc;
  transform: translateY(-3px);

  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.17),
      rgba(56, 189, 248, 0.12)
    );

  border-color: rgba(56, 189, 248, 0.32);

  box-shadow:
    0 14px 32px rgba(2, 6, 23, 0.32),
    0 0 24px rgba(20, 184, 166, 0.08);
}

.testimonial-nav:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 4px;
}

.testimonial-carousel .owl-stage {
  display: flex;
  padding: 14px 0 35px;
}

.testimonial-carousel .owl-item {
  display: flex;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 440px;
  padding: 30px;

  overflow: hidden;
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.82),
      rgba(15, 23, 42, 0.95)
    );

  border: 1px solid rgba(148, 163, 184, 0.12);

  box-shadow:
    0 24px 55px rgba(2, 6, 23, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;

  width: 190px;
  height: 190px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(56, 189, 248, 0.12),
      transparent 68%
    );

  pointer-events: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: 3px;

  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;

  background: linear-gradient(90deg, #14b8a6, #38bdf8);

  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-9px);

  border-color: rgba(56, 189, 248, 0.29);

  box-shadow:
    0 34px 75px rgba(2, 6, 23, 0.38),
    0 0 35px rgba(20, 184, 166, 0.06);
}

.testimonial-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.testimonial-card-top {
  position: relative;
  z-index: 1;

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

  margin-bottom: 28px;
}

.testimonial-quote-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.15),
      rgba(56, 189, 248, 0.1)
    );

  border: 1px solid rgba(56, 189, 248, 0.18);
}

.testimonial-quote-icon i {
  font-size: 23px;

  background: linear-gradient(135deg, #14b8a6, #38bdf8);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars i {
  color: #2dd4bf;
  font-size: 0.84rem;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;

  flex: 1;

  margin: 0 0 30px;
  padding: 0;

  color: #cbd5e1;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
}

.testimonial-client {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  gap: 14px;

  padding-top: 22px;

  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.22),
      rgba(56, 189, 248, 0.18)
    );

  border: 1px solid rgba(56, 189, 248, 0.2);
}

.testimonial-avatar span {
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.testimonial-client-details {
  min-width: 0;
}

.testimonial-client-details strong {
  display: block;
  margin-bottom: 3px;

  color: #f8fafc;
  font-size: 0.94rem;
}

.testimonial-client-details span {
  display: block;

  overflow: hidden;

  color: #64748b;
  font-size: 0.78rem;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-service {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;

  margin-top: 20px;
  padding: 8px 11px;

  border-radius: 100px;

  color: #94a3b8;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.1);

  font-size: 0.7rem;
  font-weight: 600;
}

.testimonial-service i {
  color: #2dd4bf;
}

/* Owl pagination */
.testimonial-carousel.owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: 8px;
}

.testimonial-carousel.owl-theme .owl-dots .owl-dot span {
  width: 24px;
  height: 6px;

  margin: 5px;

  border-radius: 100px;

  background: rgba(148, 163, 184, 0.25);

  transition:
    width 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-carousel.owl-theme .owl-dots .owl-dot.active span {
  width: 46px;

  background: linear-gradient(90deg, #14b8a6, #38bdf8);

  box-shadow: 0 0 16px rgba(56, 189, 248, 0.26);
}

.testimonial-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: rgba(56, 189, 248, 0.52);
}

/* Bottom trust strip */
.testimonial-trust-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;

  margin-top: 48px;
  padding: 25px 30px;

  border-radius: 22px;

  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.07),
      rgba(56, 189, 248, 0.04)
    );

  border: 1px solid rgba(56, 189, 248, 0.12);
}

.testimonial-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-trust-item > i {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  color: #2dd4bf;
  background: rgba(20, 184, 166, 0.09);
  border: 1px solid rgba(20, 184, 166, 0.14);
}

.testimonial-trust-item strong {
  display: block;
  margin-bottom: 3px;

  color: #e2e8f0;
  font-size: 0.88rem;
}

.testimonial-trust-item span {
  display: block;

  color: #64748b;
  font-size: 0.72rem;
}

.testimonial-trust-divider {
  width: 1px;
  height: 38px;

  background: rgba(148, 163, 184, 0.14);
}


h1 span,
h2 span {

    background: linear-gradient(
        135deg,
        #14b8a6 0%,
        #38bdf8 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    display: inline-block;

    filter: drop-shadow(
        0 0 12px rgba(56,189,248,.15)
    );

}

.projects-section{

    position:relative;

    overflow:hidden;

}

.projects-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    opacity:.3;

}

.projects-glow-one{

    width:350px;
    height:350px;

    left:-180px;
    top:10%;

    background:rgba(20,184,166,.18);

}

.projects-glow-two{

    width:450px;
    height:450px;

    right:-220px;
    bottom:-120px;

    background:rgba(56,189,248,.12);

}

.project-card{

    overflow:hidden;

    border-radius:24px;

    height:100%;

    transition:.35s;

}

.project-image{

    position:relative;

    display:block;

    overflow:hidden;

}

.project-image img{

    width:100%;

    display:block;

    transition:.7s;

}

.project-card:hover img{

    transform:scale(1.06);

}

.project-category{

    position:absolute;

    top:20px;
    left:20px;

    padding:8px 16px;

    border-radius:100px;

    background:rgba(15,23,42,.85);

    backdrop-filter:blur(10px);

    color:white;

    font-size:.75rem;

    font-weight:600;

}

.project-content{

    padding:30px;

}

.project-content h3{

    margin-bottom:15px;

    font-size:1.45rem;

}

.project-content h3 a{

    color:white;

    text-decoration:none;

}

.project-content p{

    color:#94A3B8 !important;

    margin-bottom:25px;

}

.project-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#38bdf8;

    font-weight:600;

    text-decoration:none;

}

.project-link i{

    transition:.3s;

}

.project-card:hover .project-link i{

    transform:translateX(6px);

}

.project-card:hover{

    transform:translateY(-10px);

}


/* ==========================================================
   CASE STUDY PAGES
   Reusable styles for all Primal42 case studies
========================================================== */

.case-study-page {
  position: relative;
  overflow: hidden;
}

.case-study-page p {
  color: var(--muted);
  line-height: 1.75;
}

.case-study-section {
  position: relative;
  padding: 110px 0;
}

.case-study-lead {
  color: #e2e8f0 !important;
  font-size: 1.15rem;
}


/* ==========================================================
   HERO
========================================================== */

.case-study-hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  padding: 145px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(20, 184, 166, 0.08),
      transparent 32%
    ),
    radial-gradient(
      circle at 90% 55%,
      rgba(56, 189, 248, 0.08),
      transparent 34%
    );
}

.case-study-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.case-study-glow-one {
  top: 12%;
  left: -180px;
  width: 400px;
  height: 400px;
  background: rgba(20, 184, 166, 0.17);
}

.case-study-glow-two {
  right: -220px;
  bottom: 5%;
  width: 480px;
  height: 480px;
  background: rgba(56, 189, 248, 0.13);
}

.case-study-breadcrumbs {
  margin-bottom: 65px;
}

.case-study-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-study-breadcrumbs li {
  color: #64748b;
  font-size: 0.82rem;
}

.case-study-breadcrumbs li:not(:last-child)::after {
  margin-left: 10px;
  color: #475569;
  content: "/";
}

.case-study-breadcrumbs a {
  transition: color 0.25s ease;
}

.case-study-breadcrumbs a:hover {
  color: var(--cyan);
}

.case-study-industry {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 9px 14px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.07);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-hero h1 {
  max-width: 850px;
  margin-bottom: 27px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.98;
}

.case-study-hero-text {
  max-width: 690px;
  margin-bottom: 14px;
  color: #e2e8f0 !important;
  font-size: 1.15rem;
}

.case-study-hero-secondary {
  max-width: 690px;
  font-size: 0.98rem;
}

.case-study-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 35px 0;
}

.case-study-actions a,
.case-study-final-actions a {
  gap: 10px;
}

.case-study-hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.case-study-hero-details span,
.case-study-hero-details strong {
  display: block;
}

.case-study-hero-details span {
  margin-bottom: 5px;
  color: #64748b;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-hero-details strong {
  color: #e2e8f0;
  font-size: 0.9rem;
}

.case-study-hero-visual {
  position: relative;
  padding-left: 20px;
}

.case-study-browser,
.case-study-desktop-showcase {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.88),
      rgba(15, 23, 42, 0.96)
    );
  box-shadow:
    0 40px 100px rgba(2, 6, 23, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.case-study-browser {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition:
    transform 0.5s ease,
    border-color 0.4s ease;
}

.case-study-browser:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-8px);
  border-color: rgba(56, 189, 248, 0.34);
}

.case-study-browser-top {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.case-study-browser-controls {
  display: flex;
  gap: 6px;
}

.case-study-browser-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475569;
}

.case-study-browser-controls span:first-child {
  background: var(--teal);
}

.case-study-browser-controls span:nth-child(2) {
  background: var(--cyan);
}

.case-study-browser-address {
  flex: 1;
  max-width: 280px;
  padding: 7px 14px;
  overflow: hidden;
  border-radius: 100px;
  color: #64748b;
  background: rgba(15, 23, 42, 0.65);
  font-size: 0.7rem;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-study-browser-image img {
  width: 100%;
  min-height: 570px;
  display: block;
  object-fit: cover;
  object-position: top;
}

.case-study-floating-note {
  position: absolute;
  right: -32px;
  bottom: 45px;
  display: flex;
  gap: 13px;
  align-items: center;
  max-width: 255px;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.4);
  backdrop-filter: blur(15px);
  animation: caseStudyFloat 5s ease-in-out infinite;
}

.case-study-floating-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.1);
}

.case-study-floating-note span,
.case-study-floating-note strong {
  display: block;
}

.case-study-floating-note span {
  margin-bottom: 3px;
  color: #64748b;
  font-size: 0.67rem;
}

.case-study-floating-note strong {
  color: #e2e8f0;
  font-size: 0.78rem;
  line-height: 1.4;
}


/* ==========================================================
   OVERVIEW
========================================================== */

.case-study-overview h2,
.case-study-success h2 {
  margin-bottom: 25px;
}

.case-study-overview p {
  max-width: 760px;
}

.case-study-facts {
  overflow: hidden;
  padding: 8px 30px;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.82),
      rgba(15, 23, 42, 0.95)
    );
  box-shadow: 0 28px 70px rgba(2, 6, 23, 0.3);
}

.case-study-fact {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.case-study-fact:last-child {
  border-bottom: 0;
}

.case-study-fact span {
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.case-study-fact strong {
  color: #e2e8f0;
  font-size: 0.9rem;
}

.case-study-fact a {
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 600;
}

.case-study-fact a i {
  margin-left: 5px;
  font-size: 0.7rem;
}


/* ==========================================================
   BRIEF CARDS
========================================================== */

.case-study-brief,
.case-study-showcase,
.case-study-results,
.case-study-gallery,
.case-study-related-services {
  background:
    radial-gradient(
      circle at top right,
      rgba(56, 189, 248, 0.045),
      transparent 32%
    ),
    rgba(30, 41, 59, 0.2);
}

.case-study-brief-card,
.case-study-feature-card,
.case-study-result-card {
  position: relative;
  height: 100%;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 25px;
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.78),
      rgba(15, 23, 42, 0.94)
    );
  box-shadow: 0 22px 55px rgba(2, 6, 23, 0.24);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.case-study-brief-card:hover,
.case-study-feature-card:hover,
.case-study-result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow:
    0 32px 72px rgba(2, 6, 23, 0.35),
    0 0 30px rgba(20, 184, 166, 0.05);
}

.case-study-card-number {
  position: absolute;
  top: 26px;
  right: 27px;
  color: rgba(148, 163, 184, 0.25);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.case-study-card-icon,
.case-study-feature-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.14),
      rgba(56, 189, 248, 0.09)
    );
}

.case-study-card-icon i,
.case-study-feature-icon i {
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-study-brief-card h3,
.case-study-feature-card h3 {
  margin-bottom: 12px;
  color: #f8fafc;
  font-size: 1.2rem;
}

.case-study-brief-card p,
.case-study-feature-card p {
  margin: 0;
  font-size: 0.9rem;
}


/* ==========================================================
   PROCESS
========================================================== */

.case-study-process {
  position: relative;
}

.case-study-process-line {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 28px;
  width: 1px;
  background:
    linear-gradient(
      to bottom,
      var(--teal),
      var(--cyan),
      rgba(51, 65, 85, 0.2)
    );
}

.case-study-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  margin-bottom: 12px;
  padding: 20px;
  border: 1px solid transparent;
  border-radius: 21px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.case-study-process-step:hover {
  transform: translateX(7px);
  border-color: rgba(56, 189, 248, 0.17);
  background:
    linear-gradient(
      90deg,
      rgba(20, 184, 166, 0.075),
      rgba(56, 189, 248, 0.025),
      transparent
    );
}

.case-study-process-icon {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 17px;
  color: var(--teal-light);
  background: var(--navy);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.25);
}

.case-study-process-step span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-study-process-step h3 {
  margin-bottom: 8px;
  color: #f8fafc;
  font-size: 1.16rem;
}

.case-study-process-step p {
  max-width: 570px;
  margin: 0;
  font-size: 0.88rem;
}

.case-study-approach-visual {
  position: sticky;
  top: 120px;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 30px;
  background: var(--navy-2);
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.4);
}

.case-study-approach-visual > img {
  width: 100%;
  height: 680px;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.case-study-approach-visual:hover > img {
  transform: scale(1.045);
}

.case-study-approach-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(15, 23, 42, 0.92),
      transparent 60%
    );
}

.case-study-image-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 32px;
  left: 30px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(15px);
}

.case-study-image-caption span,
.case-study-image-caption strong {
  display: block;
}

.case-study-image-caption span {
  margin-bottom: 5px;
  color: var(--teal-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-image-caption strong {
  color: #f8fafc;
  font-size: 0.92rem;
  line-height: 1.5;
}


/* ==========================================================
   SHOWCASE
========================================================== */

.case-study-desktop-showcase > img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.case-study-desktop-showcase:hover > img {
  transform: scale(1.012);
}

.case-study-device-row {
  margin-top: 35px;
}

.case-study-device-card {
  height: 100%;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 25px;
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.82),
      rgba(15, 23, 42, 0.95)
    );
  box-shadow: 0 25px 65px rgba(2, 6, 23, 0.28);
}

.case-study-device-card > img {
  width: 100%;
  height: 490px;
  display: block;
  border-radius: 17px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.case-study-device-card:hover > img {
  transform: scale(1.025);
}

.case-study-mobile-card > img {
  object-fit: contain;
  background: rgba(15, 23, 42, 0.6);
}

.case-study-device-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 10px 5px;
}

.case-study-device-label span {
  color: #94a3b8;
  font-size: 0.8rem;
}

.case-study-device-label i {
  color: var(--cyan);
}


/* ==========================================================
   FEATURES AND RESULTS
========================================================== */

.case-study-feature-card {
  min-height: 285px;
}

.case-study-result-card strong {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-study-result-card h3 {
  margin-bottom: 10px;
  color: #f8fafc;
  font-size: 1.05rem;
}

.case-study-result-card p {
  margin: 0;
  font-size: 0.86rem;
}


/* ==========================================================
   TESTIMONIAL
========================================================== */

.case-study-testimonial-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(56, 189, 248, 0.07),
      transparent 36%
    );
}

.case-study-testimonial {
  position: relative;
  padding: clamp(38px, 7vw, 80px);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.82),
      rgba(15, 23, 42, 0.96)
    );
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.35);
}

.case-study-testimonial::before {
  position: absolute;
  top: -75px;
  right: 35px;
  color: rgba(56, 189, 248, 0.06);
  content: "“";
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
}

.case-study-testimonial-stars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 5px;
  margin-bottom: 27px;
}

.case-study-testimonial-stars i {
  color: var(--teal-light);
}

.case-study-testimonial blockquote {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 0 35px;
  color: #e2e8f0;
  font-size: clamp(1.35rem, 2.7vw, 2.5rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.case-study-testimonial-client {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: center;
}

.case-study-testimonial-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #04111f;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-size: 0.8rem;
  font-weight: 800;
}

.case-study-testimonial-client strong,
.case-study-testimonial-client span {
  display: block;
}

.case-study-testimonial-client strong {
  margin-bottom: 3px;
  color: #f8fafc;
}

.case-study-testimonial-client span {
  color: #64748b;
  font-size: 0.78rem;
}


/* ==========================================================
   TECHNOLOGY
========================================================== */

.case-study-technology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.case-study-technology-item {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.74),
      rgba(15, 23, 42, 0.93)
    );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.case-study-technology-item:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.32);
}

.case-study-technology-item i {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-study-technology-item span {
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}


/* ==========================================================
   GALLERY
========================================================== */

.case-study-gallery-item {
  position: relative;
  height: 100%;
  min-height: 340px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 25px;
  background: var(--navy-2);
}

.case-study-gallery-item > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: transform 0.65s ease;
}

.case-study-gallery-item:hover > img {
  transform: scale(1.05);
}

.case-study-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 25px;
  background:
    linear-gradient(
      to top,
      rgba(15, 23, 42, 0.92),
      transparent 65%
    );
}

.case-study-gallery-overlay strong {
  color: #f8fafc;
  font-size: 0.92rem;
}

.case-study-gallery-overlay i {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}


/* ==========================================================
   WHY IT WORKED
========================================================== */

.case-study-success-list {
  margin-top: 35px;
}

.case-study-success-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.11);
}

.case-study-success-item:last-child {
  border-bottom: 0;
}

.case-study-success-item > div:first-child {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 184, 166, 0.16);
  border-radius: 15px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
}

.case-study-success-item h3 {
  margin-bottom: 7px;
  color: #f8fafc;
  font-size: 1.1rem;
}

.case-study-success-item p {
  margin: 0;
  font-size: 0.88rem;
}

.case-study-success-image {
  position: sticky;
  top: 120px;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 30px;
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.4);
}

.case-study-success-image > img {
  width: 100%;
  height: 680px;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.case-study-success-image:hover > img {
  transform: scale(1.045);
}

.case-study-success-badge {
  position: absolute;
  right: 27px;
  bottom: 27px;
  left: 27px;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.case-study-success-badge i {
  color: var(--teal-light);
}


/* ==========================================================
   RELATED SERVICES
========================================================== */

.case-study-service-card {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(30, 41, 59, 0.78),
      rgba(15, 23, 42, 0.95)
    );
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.case-study-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 28px 65px rgba(2, 6, 23, 0.32);
}

.case-study-service-card > i {
  margin-bottom: 50px;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-study-service-card h3 {
  margin-bottom: 11px;
  color: #f8fafc;
  font-size: 1.24rem;
}

.case-study-service-card p {
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.case-study-service-card span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
}

.case-study-service-card span i {
  transition: transform 0.3s ease;
}

.case-study-service-card:hover span i {
  transform: translateX(5px);
}


/* ==========================================================
   FINAL CTA
========================================================== */

.case-study-final-cta {
  position: relative;
  padding: 80px 0 130px;
}

.case-study-final-cta-inner {
  position: relative;
  padding: clamp(45px, 8vw, 95px);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(
      135deg,
      rgba(20, 184, 166, 0.12),
      rgba(56, 189, 248, 0.06)
    ),
    rgba(30, 41, 59, 0.75);
  box-shadow: 0 40px 100px rgba(2, 6, 23, 0.4);
  text-align: center;
}

.case-study-cta-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 500px;
  height: 400px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.13);
  filter: blur(100px);
  transform: translateX(-50%);
  pointer-events: none;
}

.case-study-final-cta-inner h2 {
  position: relative;
  max-width: 920px;
  margin: 0 auto 25px;
}

.case-study-final-cta-inner > p:not(.eyebrow) {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.case-study-final-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 35px;
}

.case-study-contact-options {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.case-study-contact-options a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #94a3b8;
  font-size: 0.87rem;
  transition: color 0.25s ease;
}

.case-study-contact-options a:hover {
  color: var(--cyan);
}

.case-study-contact-options i {
  color: var(--teal-light);
}


/* ==========================================================
   ANIMATION
========================================================== */

@keyframes caseStudyFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}


.web-design-page { overflow: hidden; }
.web-design-page p { line-height: 1.75; }

.web-service-hero {
  position: relative;
  min-height: 920px;
  display: flex;
  align-items: center;
  padding: 145px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 22%, rgba(20,184,166,.09), transparent 31%),
    radial-gradient(circle at 90% 58%, rgba(56,189,248,.09), transparent 35%);
}

.web-service-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(105px);
  pointer-events: none;
}
.web-service-glow-one { width: 430px; height: 430px; left: -210px; top: 12%; background: rgba(20,184,166,.18); }
.web-service-glow-two { width: 500px; height: 500px; right: -240px; bottom: 2%; background: rgba(56,189,248,.14); }

.service-breadcrumbs { margin-bottom: 65px; }
.service-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.service-breadcrumbs li { color: #64748b; font-size: .82rem; }
.service-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 10px; color: #475569; }
.service-breadcrumbs a:hover { color: var(--cyan); }

.web-service-hero h1 { max-width: 810px; font-size: clamp(3rem, 6vw, 6.2rem); }
.web-service-hero-lead { max-width: 690px; margin-bottom: 13px; color: #e2e8f0; font-size: 1.16rem; }
.web-service-hero-secondary { max-width: 690px; color: var(--muted); }

.web-hero-trust { display: flex; flex-wrap: wrap; gap: 13px; }
.web-hero-trust span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(56,189,248,.14); border-radius: 100px; color: #cbd5e1; background: rgba(30,41,59,.52); font-size: .78rem; font-weight: 650; }
.web-hero-trust i { color: var(--teal-light); }

.website-browser-visual {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(56,189,248,.2);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(30,41,59,.92), rgba(15,23,42,.98));
  box-shadow: 0 45px 110px rgba(2,6,23,.52);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.website-browser-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 4px 4px 16px; }
.website-browser-dots { display: flex; gap: 7px; }
.website-browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #475569; }
.website-browser-dots span:first-child { background: var(--teal); }
.website-browser-dots span:nth-child(2) { background: var(--cyan); }
.website-browser-url { max-width: 270px; width: 100%; justify-self: center; padding: 8px 14px; border-radius: 100px; color: #64748b; background: rgba(15,23,42,.72); font-size: .72rem; text-align: center; }
.website-browser-live { color: var(--teal-light); font-size: .7rem; font-weight: 700; }
.website-browser-live i { margin-right: 6px; font-size: .48rem; }
.website-browser-body { min-height: 560px; padding: 30px; overflow: hidden; border-radius: 22px; background: radial-gradient(circle at 80% 16%, rgba(56,189,248,.14), transparent 30%), linear-gradient(135deg, #111c31, #0f172a); }
.website-preview-nav { display: flex; align-items: center; justify-content: space-between; color: #f8fafc; font-size: .72rem; }
.website-preview-nav div { display: flex; gap: 12px; }
.website-preview-nav div span { width: 42px; height: 6px; border-radius: 100px; background: rgba(148,163,184,.2); }
.website-preview-content { max-width: 490px; margin-top: 105px; }
.website-preview-content > p { margin-bottom: 14px; color: var(--teal-light); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.website-preview-content h2 { margin-bottom: 26px; font-size: clamp(2.1rem, 4vw, 3.75rem); line-height: 1.3; }
.website-preview-actions { display: flex; gap: 12px; }
.website-preview-actions span { width: 135px; height: 40px; border-radius: 100px; background: linear-gradient(135deg, var(--teal), var(--cyan)); }
.website-preview-actions span:last-child { width: 105px; background: transparent; border: 1px solid var(--border); }
.website-preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 95px; }
.website-preview-metrics > div { padding: 16px; border: 1px solid rgba(148,163,184,.11); border-radius: 16px; background: rgba(15,23,42,.62); }
.website-preview-metrics i { display: block; margin-bottom: 15px; color: var(--teal-light); }
.website-preview-metrics span, .website-preview-metrics strong { display: block; }
.website-preview-metrics span { color: #64748b; font-size: .68rem; }
.website-preview-metrics strong { margin-top: 4px; color: #e2e8f0; font-size: .78rem; }
.website-floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; min-width: 215px; padding: 14px 16px; border: 1px solid rgba(56,189,248,.18); border-radius: 17px; background: rgba(15,23,42,.9); box-shadow: 0 20px 48px rgba(2,6,23,.45); backdrop-filter: blur(14px); animation: webFloat 5s ease-in-out infinite; }
.website-floating-card > i { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; color: var(--teal-light); background: rgba(20,184,166,.1); }
.website-floating-card span, .website-floating-card strong { display: block; }
.website-floating-card span { color: #64748b; font-size: .66rem; }
.website-floating-card strong { margin-top: 2px; color: #e2e8f0; font-size: .77rem; }
.website-floating-card-one { top: 24%; right: -55px; }
.website-floating-card-two { left: -55px; bottom: 13%; animation-delay: -2.5s; }
@keyframes webFloat { 50% { transform: translateY(-9px); } }

.sticky-service-heading { position: sticky; top: 125px; }
.service-copy-large p { color: var(--muted); }
.service-copy-large .service-lead, .service-lead { color: #e2e8f0; font-size: 1.14rem; }
.service-inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding: 22px; border: 1px solid rgba(56,189,248,.14); border-radius: 20px; background: linear-gradient(135deg, rgba(20,184,166,.08), rgba(56,189,248,.04)); }
.service-inline-cta strong, .service-inline-cta span { display: block; }
.service-inline-cta strong { margin-bottom: 5px; color: #f8fafc; }
.service-inline-cta span { color: var(--muted); font-size: .84rem; }
.service-inline-cta a { flex: 0 0 auto; }

.web-problem-card { min-height: 345px; }
.web-problem-card .service-icon { margin-left: 0; }

.web-benefits-section { background: radial-gradient(circle at left center, rgba(20,184,166,.05), transparent 35%); }
.web-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.web-benefit-card { position: relative; min-height: 300px; padding: 30px; overflow: hidden; border: 1px solid rgba(148,163,184,.12); border-radius: 25px; background: linear-gradient(145deg, rgba(30,41,59,.78), rgba(15,23,42,.95)); transition: .35s ease; }
.web-benefit-card:hover { transform: translateY(-8px); border-color: rgba(56,189,248,.3); box-shadow: 0 28px 65px rgba(2,6,23,.3); }
.web-benefit-card > span { position: absolute; top: 25px; right: 26px; color: rgba(148,163,184,.22); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.web-benefit-card > i { margin-bottom: 55px; font-size: 2rem; background: linear-gradient(135deg,var(--teal),var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.web-benefit-card h3 { margin-bottom: 12px; color: #f8fafc; font-size: 1.2rem; }
.web-benefit-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.web-included-section { background: rgba(30,41,59,.18); }
.web-included-section .service-tile { height: 100%; min-height: 375px; }
.web-included-section .service-tile .service-icon { margin-left: 0; }

.web-seo-ai-panel { position: relative; padding: clamp(40px,7vw,85px); overflow: hidden; border: 1px solid rgba(56,189,248,.16); border-radius: 36px; background: linear-gradient(135deg, rgba(20,184,166,.1), rgba(56,189,248,.05)), rgba(30,41,59,.72); box-shadow: 0 40px 100px rgba(2,6,23,.35); }
.web-seo-ai-list { display: grid; gap: 12px; margin-top: 28px; }
.web-seo-ai-list span { display: flex; gap: 11px; align-items: flex-start; color: #cbd5e1; font-size: .9rem; }
.web-seo-ai-list i { margin-top: 4px; color: var(--teal-light); }
.search-architecture-visual { position: relative; min-height: 530px; display: grid; place-items: center; }
.search-core { position: relative; z-index: 3; width: 175px; height: 175px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg,var(--teal),var(--cyan)); color: #04111f; box-shadow: 0 0 85px rgba(20,184,166,.28); }
.search-core i { margin-bottom: 11px; font-size: 2.25rem; }
.search-core strong, .search-core span { display: block; text-align: center; }
.search-core span { margin-top: 4px; font-size: .67rem; }
.search-node { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 12px 17px; border: 1px solid rgba(56,189,248,.18); border-radius: 100px; color: #e2e8f0; background: rgba(15,23,42,.88); box-shadow: 0 15px 35px rgba(2,6,23,.35); font-size: .78rem; animation: webFloat 5s ease-in-out infinite; }
.search-node i { color: var(--teal-light); }
.node-one { top: 9%; left: 10%; }.node-two { top: 17%; right: 4%; animation-delay: -.8s; }.node-three { bottom: 19%; left: 2%; animation-delay: -1.6s; }.node-four { right: 5%; bottom: 12%; animation-delay: -2.4s; }.node-five { top: 48%; right: -2%; animation-delay: -3.2s; }
.search-orbit { position: absolute; border: 1px solid rgba(56,189,248,.1); border-radius: 50%; }
.search-orbit-one { width: 380px; height: 380px; }.search-orbit-two { width: 515px; height: 515px; border-color: rgba(20,184,166,.07); }

.web-business-types-section { background: radial-gradient(circle at 85% 50%, rgba(56,189,248,.06), transparent 32%); }
.business-type-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.business-type-grid span { display: flex; align-items: center; gap: 13px; min-height: 78px; padding: 18px; border: 1px solid rgba(148,163,184,.11); border-radius: 18px; color: #cbd5e1; background: rgba(30,41,59,.52); font-size: .86rem; }
.business-type-grid i { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 13px; color: var(--teal-light); background: rgba(20,184,166,.09); }

.web-faq-section { background: rgba(30,41,59,.16); }
.web-faq-accordion .accordion-item { margin-bottom: 13px; overflow: hidden; border: 1px solid rgba(148,163,184,.12); border-radius: 18px !important; background: linear-gradient(145deg, rgba(30,41,59,.76), rgba(15,23,42,.94)); }
.web-faq-accordion .accordion-button { padding: 22px 24px; color: #f8fafc; background: transparent; box-shadow: none; font-weight: 700; }
.web-faq-accordion .accordion-button:not(.collapsed) { color: var(--teal-light); background: rgba(20,184,166,.055); }
.web-faq-accordion .accordion-button::after { filter: invert(1) brightness(2); opacity: .65; }
.web-faq-accordion .accordion-body { padding: 0 24px 24px; color: var(--muted); line-height: 1.75; }

/* Force FAQ accordion arrows to Primal42 cyan */
.web-faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.5 5.5 8 11l5.5-5.5'/%3E%3C/svg%3E") !important;
  background-size: 16px 16px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: none !important;
}

/* Keep the same blue arrow when the accordion is open */
.web-faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2338bdf8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.5 5.5 8 11l5.5-5.5'/%3E%3C/svg%3E") !important;
  transform: rotate(-180deg);
}


.seo-service-page .seo-dashboard-visual {
  overflow: hidden;
}

.seo-preview-content {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.seo-growth-chart {
  position: relative;
  width: 100%;
  height: 150px;
  margin-top: 2rem;
  border-left: 1px solid rgba(148, 163, 184, 0.22);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.seo-chart-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(148, 163, 184, 0.12);
}

.seo-chart-line-one {
  top: 25%;
}

.seo-chart-line-two {
  top: 50%;
}

.seo-chart-line-three {
  top: 75%;
}

.seo-chart-path {
  position: absolute;
  left: 4%;
  bottom: 17%;
  width: 88%;
  height: 68%;
  border-top: 4px solid #38bdf8;
  border-radius: 60% 40% 0 0;
  transform: skewY(-12deg);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.55));
}

.seo-chart-path::after {
  content: "";
  position: absolute;
  inset: 6px 0 auto;
  height: 100%;
  border-top: 3px solid rgba(20, 184, 166, 0.9);
  border-radius: inherit;
}

.seo-chart-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid #0f172a;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.15);
}

.seo-chart-point.point-one {
  left: 8%;
  bottom: 21%;
}

.seo-chart-point.point-two {
  left: 34%;
  bottom: 39%;
}

.seo-chart-point.point-three {
  left: 63%;
  bottom: 59%;
}

.seo-chart-point.point-four {
  right: 5%;
  top: 12%;
}

.seo-pillars-section .seo-pillar-card {
  height: 100%;
  position: relative;
  padding-top: 3.75rem;
}

.seo-pillar-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.seo-pillar-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.seo-pillar-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--teal);
}

.seo-topic-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 2rem 0;
}

.seo-topic-map > span,
.seo-topic-core {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.55);
  color: var(--text);
}

.seo-topic-map > span i,
.seo-topic-core i {
  color: var(--cyan);
}

.seo-topic-core {
  grid-column: 1 / -1;
  min-height: 92px;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.13), rgba(56, 189, 248, 0.11)),
    rgba(15, 23, 42, 0.72);
}

.seo-topic-core strong,
.seo-topic-core span {
  display: block;
}

.seo-topic-core strong {
  font-size: 1.05rem;
}

.seo-topic-core span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.86rem;
}

.seo-channel-visual .search-node,
.seo-local-section .search-node {
  min-width: 112px;
}

.seo-content-authority-section .service-inline-cta {
  margin-top: 2rem;
}

.seo-service-page .business-type-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ppc-dashboard-visual {
  overflow: hidden;
}

.ppc-preview-content {
  max-width: none;
  margin-top: 80px;
}

.ppc-funnel-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.2fr auto 1.2fr;
  align-items: center;
  gap: 10px;
  margin-top: 42px;
}

.ppc-funnel-visual > div {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 8px;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  color: #cbd5e1;
  text-align: center;
}

.ppc-funnel-visual > div i {
  color: var(--teal-light);
  font-size: 1.15rem;
}

.ppc-funnel-visual > div span {
  font-size: 0.66rem;
  font-weight: 700;
}

.ppc-funnel-visual > i {
  color: rgba(56, 189, 248, 0.55);
  font-size: 0.7rem;
}

.ppc-conversion-path {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.58);
}

.ppc-path-step {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.92));
}

.ppc-path-step > span {
  color: #64748b;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.ppc-path-step > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.1);
}

.ppc-path-step strong,
.ppc-path-step small {
  display: block;
}

.ppc-path-step strong {
  margin-bottom: 4px;
  color: #f8fafc;
}

.ppc-path-step small {
  color: #64748b;
  line-height: 1.45;
}

.ppc-path-line {
  width: 2px;
  height: 28px;
  margin-left: 85px;
  background: linear-gradient(to bottom, var(--teal), rgba(56, 189, 248, 0.25));
}

.ppc-process-visual-wrap {
  min-height: 760px;
}

.ppc-process-visual-wrap .process-visual {
  height: 720px;
}

.ppc-platform-card {
  position: relative;
  min-height: 330px;
  padding-top: 32px;
}

.ppc-platform-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(56, 189, 248, 0.17);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.13), rgba(56, 189, 248, 0.08));
}

.ppc-platform-icon i {
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ppc-platform-use {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
}

.ppc-tracking-dashboard {
  max-width: 560px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.72));
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.32);
}

.ppc-tracking-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.ppc-tracking-header span,
.ppc-tracking-header strong {
  display: block;
}

.ppc-tracking-header span {
  color: var(--teal-light);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ppc-tracking-header strong {
  color: #cbd5e1;
  font-size: 0.82rem;
  text-align: right;
}

.ppc-tracking-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 17px;
  background: rgba(15, 23, 42, 0.56);
}

.ppc-tracking-row > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.09);
}

.ppc-tracking-row span,
.ppc-tracking-row strong {
  display: block;
}

.ppc-tracking-row span {
  margin-bottom: 3px;
  color: #64748b;
  font-size: 0.72rem;
}

.ppc-tracking-row strong {
  color: #e2e8f0;
  font-size: 0.88rem;
}

.ppc-tracking-row em {
  padding: 6px 9px;
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
}

.ppc-landing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 28px 0;
}

.ppc-landing-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 16px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.45);
  font-size: 0.82rem;
}

.ppc-landing-grid i {
  color: var(--teal-light);
}

.ppc-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.ppc-comparison-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.92));
}

.ppc-comparison-grid article > span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 7px 11px;
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
}

.ppc-comparison-grid h3 {
  color: #f8fafc;
  font-size: 1.06rem;
}

.ppc-comparison-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.social-dashboard-visual {
  overflow: hidden;
}

.social-preview-content {
  max-width: none;
  margin-top: 75px;
}

.social-content-calendar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.social-content-calendar > div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 17px;
  background: rgba(15, 23, 42, 0.62);
  text-align: center;
}

.social-content-calendar span {
  color: #64748b;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.social-content-calendar i {
  color: var(--teal-light);
  font-size: 1.2rem;
}

.social-content-calendar small {
  color: #cbd5e1;
  font-size: 0.68rem;
}

.social-service-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 28px 0;
}

.social-service-definition-grid article {
  display: flex;
  gap: 13px;
  min-height: 115px;
  padding: 17px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.45);
}

.social-service-definition-grid article > i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.09);
}

.social-service-definition-grid h3 {
  margin: 0 0 5px;
  color: #f8fafc;
  font-size: 0.95rem;
}

.social-service-definition-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.social-system-flow {
  max-width: 550px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.58);
}

.social-system-step {
  display: grid;
  grid-template-columns: 38px 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.92));
}

.social-system-step > span {
  color: #64748b;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.social-system-step > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.1);
}

.social-system-step strong,
.social-system-step small {
  display: block;
}

.social-system-step strong {
  margin-bottom: 4px;
  color: #f8fafc;
}

.social-system-step small {
  color: #64748b;
  line-height: 1.45;
}

.social-system-connector {
  height: 30px;
  display: grid;
  place-items: center;
  color: rgba(56, 189, 248, 0.5);
  font-size: 0.7rem;
}

.social-process-visual-wrap {
  min-height: 760px;
}

.social-process-visual-wrap .process-visual {
  height: 720px;
}

.social-platform-card {
  position: relative;
  min-height: 330px;
}

.social-platform-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(56, 189, 248, 0.17);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.13), rgba(56, 189, 248, 0.08));
}

.social-platform-icon i {
  font-size: 1.9rem;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-platform-use {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.07);
  font-size: 0.68rem;
  font-weight: 700;
}

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

.social-content-format-grid span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 16px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.82rem;
}

.social-content-format-grid i {
  color: var(--teal-light);
}

.social-repurpose-map {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.social-repurpose-core {
  position: relative;
  z-index: 4;
  width: 175px;
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #04111f;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 0 80px rgba(20, 184, 166, 0.28);
  text-align: center;
}

.social-repurpose-core i {
  margin-bottom: 10px;
  font-size: 2rem;
}

.social-repurpose-core strong,
.social-repurpose-core span {
  display: block;
}

.social-repurpose-core span {
  margin-top: 4px;
  font-size: 0.66rem;
}

.repurpose-node {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 100px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 15px 35px rgba(2, 6, 23, 0.35);
  font-size: 0.75rem;
  animation: webFloat 5s ease-in-out infinite;
}

.repurpose-node i {
  color: var(--teal-light);
}

.repurpose-one { top: 8%; left: 8%; }
.repurpose-two { top: 13%; right: 0; animation-delay: -0.7s; }
.repurpose-three { bottom: 27%; left: 0; animation-delay: -1.4s; }
.repurpose-four { right: 2%; bottom: 26%; animation-delay: -2.1s; }
.repurpose-five { left: 13%; bottom: 7%; animation-delay: -2.8s; }
.repurpose-six { right: 13%; bottom: 5%; animation-delay: -3.5s; }

.repurpose-orbit {
  position: absolute;
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 50%;
}

.repurpose-orbit-one {
  width: 370px;
  height: 370px;
}

.repurpose-orbit-two {
  width: 510px;
  height: 510px;
  border-color: rgba(20, 184, 166, 0.07);
}

.social-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-comparison-card {
  min-height: 500px;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.95));
}

.social-comparison-combined {
  border-color: rgba(56, 189, 248, 0.22);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(56, 189, 248, 0.04)),
    linear-gradient(145deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.96));
}

.social-comparison-label {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 7px 11px;
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
}

.social-comparison-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 20px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.09);
  font-size: 1.6rem;
}

.social-comparison-card h3 {
  color: #f8fafc;
}

.social-comparison-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.social-comparison-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.social-comparison-card li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal-light);
  font-family: "Font Awesome 6 Free";
  font-size: 0.75rem;
  font-weight: 900;
}

.social-ad-dashboard {
  max-width: 540px;
  margin-left: auto;
  padding: 26px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.78));
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.34);
}

.social-ad-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.social-ad-header span {
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-ad-header strong {
  color: #cbd5e1;
  font-size: 0.82rem;
}

.social-ad-preview {
  padding: 19px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.6);
}

.social-ad-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.social-ad-brand > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
}

.social-ad-brand strong,
.social-ad-brand small {
  display: block;
}

.social-ad-brand strong {
  color: #f8fafc;
  font-size: 0.82rem;
}

.social-ad-brand small {
  color: #64748b;
  font-size: 0.66rem;
}

.social-ad-image {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--teal-light);
  background:
    radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.15), transparent 35%),
    linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(30, 41, 59, 0.8));
}

.social-ad-image i {
  font-size: 2.2rem;
}

.social-ad-image span {
  color: #94a3b8;
  font-size: 0.72rem;
}

.social-ad-preview h3 {
  color: #f8fafc;
  font-size: 1rem;
}

.social-ad-preview p {
  color: var(--muted);
  font-size: 0.78rem;
}

.social-ad-preview button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: #04111f;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  font-size: 0.78rem;
  font-weight: 800;
}

.social-ad-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.social-ad-metrics span {
  padding: 13px;
  border: 1px solid rgba(148, 163, 184, 0.09);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.5);
}

.social-ad-metrics small,
.social-ad-metrics strong {
  display: block;
}

.social-ad-metrics small {
  color: #64748b;
  font-size: 0.64rem;
}

.social-ad-metrics strong {
  margin-top: 4px;
  color: #e2e8f0;
  font-size: 0.75rem;
}

.social-community-grid,
.social-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.social-community-grid article,
.social-ai-grid article {
  min-height: 185px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.92));
}

.social-community-grid i {
  margin-bottom: 28px;
  color: var(--teal-light);
  font-size: 1.5rem;
}

.social-community-grid h3,
.social-ai-grid h3 {
  color: #f8fafc;
  font-size: 1rem;
}

.social-community-grid p,
.social-ai-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.social-ai-grid article > span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 6px 9px;
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.66rem;
  font-weight: 800;
}

.social-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.social-metrics-grid article {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.92));
}

.social-metrics-grid article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--teal-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-metrics-grid i {
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 1.7rem;
}

.social-metrics-grid h3 {
  color: #f8fafc;
  font-size: 1rem;
}

.social-metrics-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}



.email-dashboard-visual {
  overflow: hidden;
}

.email-preview-content {
  max-width: none;
  margin-top: 80px;
}

.email-journey-preview {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 38px;
}

.email-journey-preview > div {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 8px;
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.62);
  color: #cbd5e1;
  text-align: center;
}

.email-journey-preview > div i {
  color: var(--teal-light);
  font-size: 1.15rem;
}

.email-journey-preview > div span {
  font-size: 0.67rem;
  font-weight: 700;
}

.email-journey-preview > i {
  color: rgba(56, 189, 248, 0.52);
  font-size: 0.68rem;
}

.email-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 28px 0;
}

.email-definition-grid article {
  display: flex;
  gap: 13px;
  min-height: 115px;
  padding: 17px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.45);
}

.email-definition-grid article > i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.09);
}

.email-definition-grid h3 {
  margin: 0 0 5px;
  color: #f8fafc;
  font-size: 0.95rem;
}

.email-definition-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.email-lifecycle-flow {
  max-width: 560px;
  margin-left: auto;
  padding: 28px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.58);
}

.email-lifecycle-step {
  display: grid;
  grid-template-columns: 38px 52px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.92));
}

.email-lifecycle-step > span {
  color: #64748b;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.email-lifecycle-step > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.1);
}

.email-lifecycle-step strong,
.email-lifecycle-step small {
  display: block;
}

.email-lifecycle-step strong {
  margin-bottom: 4px;
  color: #f8fafc;
}

.email-lifecycle-step small {
  color: #64748b;
  line-height: 1.45;
}

.email-lifecycle-line {
  width: 2px;
  height: 27px;
  margin-left: 85px;
  background: linear-gradient(to bottom, var(--teal), rgba(56, 189, 248, 0.25));
}

.email-process-visual-wrap {
  min-height: 760px;
}

.email-process-visual-wrap .process-visual {
  height: 720px;
}

.email-comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.email-comparison-card {
  min-height: 500px;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.95));
}

.email-comparison-combined {
  border-color: rgba(56, 189, 248, 0.22);
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(56, 189, 248, 0.04)),
    linear-gradient(145deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.96));
}

.email-comparison-label {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 7px 11px;
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
}

.email-comparison-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 20px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.09);
  font-size: 1.6rem;
}

.email-comparison-card h3 {
  color: #f8fafc;
}

.email-comparison-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.email-comparison-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.email-comparison-card li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal-light);
  font-family: "Font Awesome 6 Free";
  font-size: 0.75rem;
  font-weight: 900;
}

.email-flow-card {
  height: 100%;
  min-height: 300px;
  padding: 25px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.92));
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.email-flow-card:hover {
  transform: translateY(-7px);
  border-color: rgba(56, 189, 248, 0.28);
}

.email-flow-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 18px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.09);
  font-size: 1.3rem;
}

.email-flow-card h3 {
  color: #f8fafc;
  font-size: 1.05rem;
}

.email-flow-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.email-list-growth-grid,
.email-ecommerce-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin: 28px 0;
}

.email-list-growth-grid span,
.email-ecommerce-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 16px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.45);
  font-size: 0.82rem;
}

.email-list-growth-grid i,
.email-ecommerce-grid i {
  color: var(--teal-light);
}

.email-segment-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.email-segment-core {
  position: relative;
  z-index: 4;
  width: 175px;
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #04111f;
  background: linear-gradient(135deg, var(--teal), var(--cyan));
  box-shadow: 0 0 80px rgba(20, 184, 166, 0.28);
  text-align: center;
}

.email-segment-core i {
  margin-bottom: 10px;
  font-size: 2rem;
}

.email-segment-core strong,
.email-segment-core span {
  display: block;
}

.email-segment-core span {
  margin-top: 4px;
  font-size: 0.66rem;
}

.email-segment-node {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 100px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 15px 35px rgba(2, 6, 23, 0.35);
  font-size: 0.75rem;
  animation: webFloat 5s ease-in-out infinite;
}

.email-segment-node i {
  color: var(--teal-light);
}

.segment-one { top: 9%; left: 8%; }
.segment-two { top: 15%; right: 3%; animation-delay: -0.8s; }
.segment-three { bottom: 24%; left: 0; animation-delay: -1.6s; }
.segment-four { right: 2%; bottom: 21%; animation-delay: -2.4s; }
.segment-five { bottom: 5%; left: 34%; animation-delay: -3.2s; }

.email-segment-orbit {
  position: absolute;
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 50%;
}

.email-segment-orbit-one {
  width: 370px;
  height: 370px;
}

.email-segment-orbit-two {
  width: 510px;
  height: 510px;
  border-color: rgba(20, 184, 166, 0.07);
}

.email-design-grid,
.email-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.email-design-grid article,
.email-ai-grid article {
  min-height: 185px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.92));
}

.email-design-grid i {
  margin-bottom: 28px;
  color: var(--teal-light);
  font-size: 1.5rem;
}

.email-design-grid h3,
.email-ai-grid h3 {
  color: #f8fafc;
  font-size: 1rem;
}

.email-design-grid p,
.email-ai-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.email-ai-grid article > span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 6px 9px;
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.66rem;
  font-weight: 800;
}

.email-use-case-dashboard {
  max-width: 550px;
  margin-left: auto;
  padding: 27px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.78));
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.34);
}

.email-use-case-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.email-use-case-header span {
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.email-use-case-header strong {
  color: #cbd5e1;
  font-size: 0.82rem;
}

.email-use-case-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 17px;
  background: rgba(15, 23, 42, 0.56);
}

.email-use-case-row > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.09);
}

.email-use-case-row span,
.email-use-case-row strong {
  display: block;
}

.email-use-case-row span {
  margin-bottom: 3px;
  color: #64748b;
  font-size: 0.72rem;
}

.email-use-case-row strong {
  color: #e2e8f0;
  font-size: 0.88rem;
}

.email-deliverability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.email-deliverability-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.92));
}

.email-deliverability-grid article > span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 100px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
}

.email-deliverability-grid h3 {
  color: #f8fafc;
  font-size: 1rem;
}

.email-deliverability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.email-compliance-card {
  max-width: 520px;
  margin-left: auto;
  padding: 36px;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(56, 189, 248, 0.04)),
    rgba(15, 23, 42, 0.7);
}

.email-compliance-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 22px;
  color: var(--teal-light);
  background: rgba(20, 184, 166, 0.1);
  font-size: 1.8rem;
}

.email-compliance-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-compliance-card h3 {
  color: #f8fafc;
  font-size: 1.45rem;
}

.email-compliance-card p {
  color: var(--muted);
}

.email-compliance-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin-top: 25px;
}

.email-compliance-checks strong {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 14px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.5);
  font-size: 0.76rem;
}

.email-compliance-checks i {
  color: var(--teal-light);
}

.email-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.email-metrics-grid article {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(148, 163, 184, 0.11);
  border-radius: 21px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.92));
}

.email-metrics-grid article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--teal-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-metrics-grid i {
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 1.7rem;
}

.email-metrics-grid h3 {
  color: #f8fafc;
  font-size: 1rem;
}

.email-metrics-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.ai-growth-page { overflow: hidden; }
.ai-growth-hero { min-height: 940px; }

.ai-growth-dashboard {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.98));
  box-shadow: 0 45px 110px rgba(2, 6, 23, 0.52);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.ai-growth-dashboard-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 4px 4px 16px; }
.ai-growth-dashboard-title { justify-self: center; width: min(100%, 280px); padding: 8px 14px; border-radius: 100px; color: #64748b; background: rgba(15, 23, 42, .72); font-size: .72rem; text-align: center; }
.ai-growth-dashboard-body { min-height: 575px; padding: 30px; overflow: hidden; border-radius: 22px; background: radial-gradient(circle at 82% 12%, rgba(56, 189, 248, .14), transparent 31%), linear-gradient(135deg, #111c31, #0f172a); }
.ai-growth-score-row { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-bottom: 24px; border-bottom: 1px solid rgba(148, 163, 184, .1); }
.ai-growth-score-row span, .ai-growth-score-row strong { display: block; }
.ai-growth-score-row span { margin-bottom: 5px; color: #64748b; font-size: .69rem; text-transform: uppercase; letter-spacing: .08em; }
.ai-growth-score-row strong { color: #f8fafc; font-size: 1rem; }
.ai-growth-score { flex: 0 0 auto; padding: 12px 16px; border: 1px solid rgba(20, 184, 166, .18); border-radius: 16px; background: rgba(20, 184, 166, .08); text-align: center; }
.ai-growth-score strong { color: var(--teal-light); }
.ai-growth-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; margin: 34px 0; }
.ai-growth-flow > i { color: rgba(56, 189, 248, .55); font-size: .7rem; }
.ai-growth-flow-node { min-height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 14px 10px; border: 1px solid rgba(56, 189, 248, .13); border-radius: 18px; background: rgba(15, 23, 42, .62); text-align: center; }
.ai-growth-flow-node i { color: var(--teal-light); font-size: 1.35rem; }
.ai-growth-flow-node span { color: #e2e8f0; font-size: .78rem; font-weight: 700; }
.ai-growth-flow-node small { color: #64748b; font-size: .64rem; line-height: 1.4; }
.ai-growth-metric-list { display: grid; gap: 10px; }
.ai-growth-metric-list > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 16px; border: 1px solid rgba(148, 163, 184, .09); border-radius: 15px; background: rgba(15, 23, 42, .54); }
.ai-growth-metric-list span { color: #94a3b8; font-size: .76rem; }
.ai-growth-metric-list span i { width: 22px; color: var(--teal-light); }
.ai-growth-metric-list strong { color: #e2e8f0; font-size: .75rem; }
.ai-growth-dashboard-note { display: flex; align-items: flex-start; gap: 13px; margin-top: 21px; padding: 16px; border: 1px solid rgba(20, 184, 166, .15); border-radius: 17px; background: linear-gradient(135deg, rgba(20, 184, 166, .08), rgba(56, 189, 248, .04)); }
.ai-growth-dashboard-note > i { margin-top: 3px; color: var(--teal-light); }
.ai-growth-dashboard-note strong, .ai-growth-dashboard-note span { display: block; }
.ai-growth-dashboard-note strong { margin-bottom: 4px; color: #e2e8f0; font-size: .78rem; }
.ai-growth-dashboard-note span { color: #64748b; font-size: .68rem; line-height: 1.5; }

.ai-human-section { background: radial-gradient(circle at 12% 40%, rgba(20, 184, 166, .06), transparent 32%); }
.ai-human-panel { position: relative; padding: clamp(40px, 7vw, 85px); overflow: hidden; border: 1px solid rgba(56, 189, 248, .16); border-radius: 36px; background: linear-gradient(135deg, rgba(20, 184, 166, .1), rgba(56, 189, 248, .05)), rgba(30, 41, 59, .72); box-shadow: 0 40px 100px rgba(2, 6, 23, .35); }
.ai-assist-visual { max-width: 540px; margin-left: auto; padding: 28px; border: 1px solid rgba(56, 189, 248, .15); border-radius: 28px; background: rgba(15, 23, 42, .58); }
.ai-assist-stage { display: grid; grid-template-columns: 38px 52px 1fr; align-items: center; gap: 14px; padding: 17px; border: 1px solid rgba(148, 163, 184, .11); border-radius: 18px; background: linear-gradient(135deg, rgba(30, 41, 59, .78), rgba(15, 23, 42, .92)); }
.ai-assist-stage > span { color: #64748b; font-size: .69rem; font-weight: 800; letter-spacing: .1em; }
.ai-assist-stage > i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--teal-light); background: rgba(20, 184, 166, .1); }
.ai-assist-stage strong, .ai-assist-stage small { display: block; }
.ai-assist-stage strong { margin-bottom: 4px; color: #f8fafc; }
.ai-assist-stage small { color: #64748b; line-height: 1.45; }
.ai-assist-stage.is-ai { border-color: rgba(56, 189, 248, .22); }
.ai-assist-stage.is-human { border-color: rgba(20, 184, 166, .24); background: linear-gradient(135deg, rgba(20, 184, 166, .09), rgba(15, 23, 42, .92)); }
.ai-assist-connector { height: 30px; display: grid; place-items: center; color: rgba(56, 189, 248, .5); font-size: .7rem; }

.ai-opportunity-section { background: rgba(30, 41, 59, .16); }
.ai-opportunity-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.ai-opportunity-card { min-height: 465px; padding: 28px; border: 1px solid rgba(148, 163, 184, .12); border-radius: 26px; background: linear-gradient(145deg, rgba(30, 41, 59, .78), rgba(15, 23, 42, .95)); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.ai-opportunity-card:hover { transform: translateY(-8px); border-color: rgba(56, 189, 248, .3); box-shadow: 0 28px 65px rgba(2, 6, 23, .32); }
.ai-opportunity-heading { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.ai-opportunity-heading > i { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; border-radius: 18px; color: var(--teal-light); background: linear-gradient(135deg, rgba(20, 184, 166, .15), rgba(56, 189, 248, .09)); border: 1px solid rgba(56, 189, 248, .16); font-size: 1.25rem; }
.ai-opportunity-heading span { display: block; margin-bottom: 5px; color: var(--teal-light); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ai-opportunity-heading h3 { margin: 0; color: #f8fafc; font-size: 1.08rem; line-height: 1.4; }
.ai-opportunity-card ul { display: grid; gap: 12px; margin: 0 0 28px; padding: 0; list-style: none; }
.ai-opportunity-card li { position: relative; padding-left: 23px; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.ai-opportunity-card li::before { content: "\f00c"; position: absolute; left: 0; top: 2px; color: var(--teal-light); font-family: "Font Awesome 6 Free"; font-size: .72rem; font-weight: 900; }
.ai-opportunity-card > a { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-size: .8rem; font-weight: 700; }
.ai-opportunity-card > a i { transition: transform .3s ease; }
.ai-opportunity-card:hover > a i { transform: translateX(5px); }

.ai-growth-process-visual-wrap { min-height: 720px; }
.ai-growth-process-visual-wrap .process-visual { height: 690px; }

.ai-solution-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.ai-solution-tags span { padding: 9px 13px; border: 1px solid rgba(56, 189, 248, .14); border-radius: 100px; color: #cbd5e1; background: rgba(15, 23, 42, .5); font-size: .76rem; }
.ai-decision-visual { max-width: 560px; margin-left: auto; padding: 28px; border: 1px solid rgba(56, 189, 248, .15); border-radius: 28px; background: rgba(15, 23, 42, .58); }
.ai-decision-question { display: flex; flex-direction: column; align-items: center; padding: 25px; border: 1px solid rgba(20, 184, 166, .18); border-radius: 20px; background: linear-gradient(135deg, rgba(20, 184, 166, .1), rgba(56, 189, 248, .05)); text-align: center; }
.ai-decision-question i { margin-bottom: 13px; color: var(--teal-light); font-size: 1.65rem; }
.ai-decision-question strong { color: #f8fafc; }
.ai-decision-question span { margin-top: 5px; color: #64748b; font-size: .72rem; }
.ai-decision-branches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 22px 0; }
.ai-decision-branches > div { min-height: 135px; display: flex; flex-direction: column; justify-content: center; padding: 17px; border: 1px solid rgba(148, 163, 184, .1); border-radius: 17px; background: rgba(15, 23, 42, .55); }
.ai-decision-branches i { margin-bottom: 15px; color: var(--teal-light); }
.ai-decision-branches strong, .ai-decision-branches span { display: block; }
.ai-decision-branches strong { margin-bottom: 4px; color: #e2e8f0; font-size: .82rem; }
.ai-decision-branches span { color: #64748b; font-size: .7rem; }
.ai-decision-result { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid rgba(56, 189, 248, .16); border-radius: 18px; background: linear-gradient(135deg, rgba(56, 189, 248, .08), rgba(20, 184, 166, .06)); }
.ai-decision-result > i { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 14px; color: var(--cyan); background: rgba(56, 189, 248, .1); }
.ai-decision-result strong, .ai-decision-result span { display: block; }
.ai-decision-result strong { margin-bottom: 3px; color: #f8fafc; font-size: .86rem; }
.ai-decision-result span { color: #64748b; font-size: .72rem; }

.custom-software-page { overflow: hidden; }
.custom-software-hero { min-height: 930px; }
.software-dashboard { position: relative; padding: 16px; border: 1px solid rgba(56,189,248,.2); border-radius: 32px; background: linear-gradient(145deg,rgba(30,41,59,.94),rgba(15,23,42,.99)); box-shadow: 0 45px 110px rgba(2,6,23,.52); transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.software-dashboard-top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 4px 4px 16px; }
.software-dashboard-title { justify-self: center; width: min(100%,280px); padding: 8px 14px; border-radius: 100px; color: #64748b; background: rgba(15,23,42,.72); font-size: .72rem; text-align: center; }
.software-dashboard-body { min-height: 570px; padding: 28px; overflow: hidden; border-radius: 22px; background: radial-gradient(circle at 82% 12%,rgba(56,189,248,.14),transparent 31%),linear-gradient(135deg,#111c31,#0f172a); }
.software-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.software-stat-row article { position: relative; min-height: 112px; padding: 18px; border: 1px solid rgba(148,163,184,.11); border-radius: 17px; background: rgba(30,41,59,.58); }
.software-stat-row span,.software-stat-row strong { display: block; }.software-stat-row span { color:#64748b;font-size:.65rem;text-transform:uppercase;letter-spacing:.07em; }.software-stat-row strong { margin-top:8px;color:#f8fafc;font-size:.95rem; }.software-stat-row i { position:absolute;right:16px;bottom:15px;color:#2dd4bf; }
.software-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 9px; margin: 26px 0; }
.software-flow > div { min-height: 112px; display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;padding:13px 8px;border:1px solid rgba(56,189,248,.13);border-radius:16px;background:rgba(15,23,42,.65);text-align:center; }
.software-flow > div i { color:var(--teal-light);font-size:1.2rem; }.software-flow strong { color:#e2e8f0;font-size:.77rem; }.software-flow small { color:#64748b;font-size:.61rem;line-height:1.35; }.software-flow > i { color:rgba(56,189,248,.48);font-size:.65rem; }
.software-module-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:10px; }.software-module-grid span { display:flex;align-items:center;gap:9px;padding:12px;border:1px solid rgba(148,163,184,.1);border-radius:13px;color:#cbd5e1;background:rgba(30,41,59,.42);font-size:.68rem; }.software-module-grid i { color:#38bdf8; }
.software-dashboard-note { display:flex;align-items:flex-start;gap:13px;margin-top:20px;padding:16px;border:1px solid rgba(20,184,166,.16);border-radius:16px;background:linear-gradient(135deg,rgba(20,184,166,.08),rgba(56,189,248,.05)); }.software-dashboard-note > i { color:#2dd4bf;margin-top:3px; }.software-dashboard-note strong,.software-dashboard-note span { display:block; }.software-dashboard-note strong { margin-bottom:4px;color:#e2e8f0;font-size:.8rem; }.software-dashboard-note span { color:#64748b;font-size:.68rem;line-height:1.45; }

.software-solutions-section { background: radial-gradient(circle at 90% 12%,rgba(56,189,248,.06),transparent 30%); }
.salvo-case-study-section { position:relative;background:radial-gradient(circle at 10% 50%,rgba(20,184,166,.08),transparent 34%); }
.salvo-case-study-panel { padding: clamp(32px,5vw,70px); border:1px solid rgba(56,189,248,.15);border-radius:34px;background:linear-gradient(145deg,rgba(30,41,59,.66),rgba(15,23,42,.94));box-shadow:0 35px 85px rgba(2,6,23,.3); }
.salvo-feature-list { display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:28px; }.salvo-feature-list span { display:grid;grid-template-columns:42px 1fr;column-gap:12px;padding:16px;border:1px solid rgba(148,163,184,.1);border-radius:16px;background:rgba(15,23,42,.48); }.salvo-feature-list i { grid-row:1/3;width:42px;height:42px;display:grid;place-items:center;border-radius:13px;color:var(--teal-light);background:rgba(20,184,166,.09); }.salvo-feature-list strong { color:#e2e8f0;font-size:.79rem; }.salvo-feature-list small { color:#64748b;font-size:.67rem;line-height:1.4; }
.salvo-product-visual { padding:22px;border:1px solid rgba(56,189,248,.18);border-radius:27px;background:linear-gradient(145deg,#111c31,#0f172a);box-shadow:0 30px 70px rgba(2,6,23,.42); }
.salvo-product-head { display:flex;align-items:center;justify-content:space-between;padding-bottom:18px;border-bottom:1px solid rgba(148,163,184,.1); }.salvo-product-head span,.salvo-product-head strong { display:block; }.salvo-product-head span { color:var(--teal-light);font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em; }.salvo-product-head strong { margin-top:4px;color:#f8fafc;font-size:1rem; }.salvo-product-head > i { width:48px;height:48px;display:grid;place-items:center;border-radius:15px;color:#38bdf8;background:rgba(56,189,248,.09); }
.salvo-search-bar { display:grid;grid-template-columns:1fr 1fr auto;gap:9px;margin:20px 0; }.salvo-search-bar span { display:flex;align-items:center;gap:8px;padding:12px;border:1px solid rgba(148,163,184,.12);border-radius:12px;color:#94a3b8;background:rgba(30,41,59,.5);font-size:.67rem; }.salvo-search-bar i{color:var(--teal-light)}.salvo-search-bar button{padding:0 15px;border:0;border-radius:12px;color:#06202a;background:linear-gradient(135deg,#14b8a6,#38bdf8);font-size:.7rem;font-weight:800;}
.salvo-results { display:grid;gap:10px; }.salvo-results article { display:grid;grid-template-columns:48px 1fr auto;align-items:center;gap:13px;padding:14px;border:1px solid rgba(148,163,184,.1);border-radius:15px;background:rgba(30,41,59,.45); }.salvo-score { width:44px;height:44px;display:grid;place-items:center;border-radius:13px;color:#38bdf8;background:rgba(56,189,248,.09);font-weight:800; }.salvo-score.score-high{color:#2dd4bf;background:rgba(20,184,166,.1)}.salvo-results strong,.salvo-results span,.salvo-results small{display:block}.salvo-results strong{color:#e2e8f0;font-size:.77rem}.salvo-results span{margin:2px 0;color:#94a3b8;font-size:.65rem}.salvo-results small{color:#64748b;font-size:.59rem}.salvo-results article>i{color:#475569;font-size:.65rem}
.salvo-outcome { display:flex;gap:13px;margin-top:18px;padding:16px;border-radius:16px;background:rgba(20,184,166,.06); }.salvo-outcome>i{color:#2dd4bf;margin-top:3px}.salvo-outcome strong,.salvo-outcome span{display:block}.salvo-outcome strong{color:#e2e8f0;font-size:.78rem}.salvo-outcome span{margin-top:4px;color:#64748b;font-size:.66rem;line-height:1.45}

.software-process-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:15px; }.software-process-grid article { display:grid;grid-template-columns:58px 1fr;gap:18px;min-height:150px;padding:24px;border:1px solid rgba(148,163,184,.11);border-radius:20px;background:linear-gradient(145deg,rgba(30,41,59,.62),rgba(15,23,42,.92)); }.software-process-grid article>span{width:54px;height:54px;display:grid;place-items:center;border-radius:16px;color:var(--teal-light);background:rgba(20,184,166,.09);font-weight:800}.software-process-grid h3{color:#f8fafc;font-size:1rem}.software-process-grid p{margin:0;color:var(--muted);font-size:.8rem;line-height:1.65}
.software-choice-section { background:radial-gradient(circle at 85% 50%,rgba(56,189,248,.06),transparent 34%); }.software-choice-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.software-choice-grid article{position:relative;min-height:190px;padding:24px;border:1px solid rgba(148,163,184,.11);border-radius:20px;background:rgba(30,41,59,.5)}.software-choice-grid article.is-featured{border-color:rgba(56,189,248,.28);background:linear-gradient(145deg,rgba(20,184,166,.1),rgba(56,189,248,.07))}.software-choice-grid i{width:48px;height:48px;display:grid;place-items:center;margin-bottom:20px;border-radius:14px;color:var(--teal-light);background:rgba(20,184,166,.09)}.software-choice-grid h3{color:#f8fafc;font-size:.95rem}.software-choice-grid p{margin:0;color:var(--muted);font-size:.78rem;line-height:1.6}

.contact-page .contact-form-card {
    position: relative;
    padding: clamp(28px, 5vw, 48px);
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(17, 32, 54, 0.96),
        rgba(10, 21, 39, 0.98)
    );
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading h2 {
    margin-bottom: 12px;
}

.contact-form-heading p {
    margin-bottom: 0;
    color: #94a3b8;
}

.primal-contact-form .form-label {
    display: block;
    margin-bottom: 9px;
    color: #e5edf8;
    font-weight: 700;
}

.primal-contact-form .form-label span {
    color: #2dd4bf;
}

.primal-contact-form .form-control,
.primal-contact-form .form-select {
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 13px;
    color: #f8fafc;
    background-color: rgba(5, 15, 29, 0.72);
    box-shadow: none;
}

.primal-contact-form textarea.form-control {
    min-height: 170px;
    resize: vertical;
}

.primal-contact-form .form-control::placeholder {
    color: rgba(148, 163, 184, 0.72);
}

.primal-contact-form .form-control:focus,
.primal-contact-form .form-select:focus {
    border-color: rgba(45, 212, 191, 0.75);
    background-color: rgba(5, 15, 29, 0.9);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.1);
}

.primal-contact-form .form-select option {
    color: #0f172a;
    background: #ffffff;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-consent .form-check-input {
    flex: 0 0 auto;
    margin-top: 4px;
    border-color: rgba(148, 163, 184, 0.35);
    background-color: rgba(5, 15, 29, 0.72);
}

.contact-consent .form-check-input:checked {
    border-color: #14b8a6;
    background-color: #14b8a6;
}

.contact-consent .form-check-label {
    color: #aab8ca;
    line-height: 1.6;
}

.contact-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 6px;
}

.contact-submit-row p {
    max-width: 300px;
    margin: 0;
    color: #8190a6;
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-direct-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 18px;
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 16px;
    color: inherit;
    text-decoration: none;
    background: rgba(14, 28, 49, 0.52);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

a.contact-direct-item:hover {
    transform: translateY(-2px);
    border-color: rgba(45, 212, 191, 0.4);
    color: inherit;
}

.contact-direct-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 13px;
    color: #2dd4bf;
    background: rgba(20, 184, 166, 0.1);
}

.contact-direct-item > span:last-child {
    display: grid;
    gap: 3px;
}

.contact-direct-item small {
    color: #7f91a9;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-direct-item strong {
    color: #f8fafc;
}

.contact-form-message {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 16px;
}

.contact-form-message h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
}

.contact-form-success {
    border: 1px solid rgba(45, 212, 191, 0.3);
    color: #bff8ee;
    background: rgba(20, 184, 166, 0.1);
}

.contact-form-error {
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fecaca;
    background: rgba(239, 68, 68, 0.09);
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* lighter dark */

.section-dark-soft {
    position: relative;
    background:
        linear-gradient(
            135deg,
            rgba(15, 30, 48, 0.98) 0%,
            rgba(12, 24, 40, 0.98) 55%,
            rgba(9, 19, 33, 0.98) 100%
        );
}

/* Light bg */

.section-light {
    position: relative;
    background:
        radial-gradient(circle at 10% 15%, rgba(20, 184, 166, 0.10), transparent 28%),
        radial-gradient(circle at 90% 80%, rgba(56, 189, 248, 0.10), transparent 30%),
        linear-gradient(135deg, #f8fbfd 0%, #eef6fa 100%);
    color: #0f172a;
}

.section-light h2,
.section-light h3,
.section-light p {
    color: #0f172a;
}

.section-light .section-label {
    color: #0f766e;
}

.section-light .project-card,
.section-light .testimonial-card {
    background: #07111f;
    color: #ffffff;
    border: 1px solid rgba(56, 189, 248, 0.18);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.testimonial-trust-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    margin-top: 50px;
    padding: 28px 35px;

    background: linear-gradient(
        135deg,
        #08111f 0%,
        #0d1728 55%,
        #111f35 100%
    );

    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 20px;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.testimonial-trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
}

.testimonial-trust-item i {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #38bdf8;

    background: rgba(56,189,248,.08);
    border: 1px solid rgba(56,189,248,.18);
    border-radius: 50%;
}

.testimonial-trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.testimonial-trust-item span {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
    line-height: 1.5;
}

.testimonial-trust-divider {
    width: 1px;
    margin: 0 28px;

    background: linear-gradient(
        transparent,
        rgba(56,189,248,.25),
        transparent
    );
}

@media (max-width: 991px) {

    .testimonial-trust-row {
        flex-direction: column;
        gap: 25px;
    }

    .testimonial-trust-divider {
        width: 100%;
        height: 1px;
        margin: 0;

        background: linear-gradient(
            90deg,
            transparent,
            rgba(56,189,248,.25),
            transparent
        );
    }
}


/* Vector bg */

.section-vector-bg {
    position: relative;
    overflow: hidden;
}

.section-vector-bg {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.section-vector-bg::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("/assets/img/vector2.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;

    opacity: 0.04;
    pointer-events: none;
    z-index: -1;

    animation: vectorGlow 7s ease-in-out infinite;
}

.section-vector-bg > .container {
    position: relative;
    z-index: 1;
}

@keyframes vectorGlow {
    0%,
    100% {
        opacity: 0.035;
        filter: brightness(0.9);
    }

    50% {
        opacity: 0.10;
        filter: brightness(1.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-vector-bg::before {
        animation: none;
        opacity: 0.06;
    }
}

/* Moving bg */

.floating-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.14) 0%,
        rgba(20, 184, 166, 0.08) 40%,
        transparent 72%
    );
    filter: blur(20px);
    pointer-events: none;
    animation: floatOrb 14s ease-in-out infinite alternate;
}

@keyframes floatOrb {
    from {
        transform: translate3d(-20px, -15px, 0) scale(1);
    }

    to {
        transform: translate3d(35px, 25px, 0) scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-orb {
        animation: none;
    }
}

.section-dark-premium {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(20, 184, 166, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(56, 189, 248, 0.06),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #0f1d30 0%,
            #0c1728 35%,
            #09111d 70%,
            #050b14 100%
        );

    color: #fff;
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero {
    position: relative;
}

.about-hero-visual {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(56, 189, 248, .14),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(15, 28, 48, .96),
            rgba(7, 16, 30, .98)
        );
    box-shadow:
        0 35px 80px rgba(0, 0, 0, .32),
        inset 0 1px 0 rgba(255, 255, 255, .05);
}

.about-visual-glow {
    position: absolute;
    top: 20%;
    left: 25%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(56, 189, 248, .13);
    filter: blur(55px);
    pointer-events: none;
}

.about-visual-grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        linear-gradient(
            rgba(56, 189, 248, .12) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(56, 189, 248, .12) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
    mask-image:
        radial-gradient(
            circle at center,
            black 20%,
            transparent 78%
        );
}

.about-visual-top {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-visual-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(56, 189, 248, .18);
    border-radius: 999px;
    background: rgba(56, 189, 248, .08);
    color: #cbd5e1;
    font-size: .76rem;
    font-weight: 700;
}

.about-visual-status > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #14b8a6;
    box-shadow: 0 0 14px rgba(20, 184, 166, .9);
}

.about-visual-core {
    position: absolute;
    top: 46%;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 210px;
    height: 210px;
    place-items: center;
    transform: translate(-50%, -50%);
}

.about-core-logo {
    position: relative;
    z-index: 3;
    display: grid;
    width: 98px;
    height: 98px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            rgba(20, 184, 166, .95),
            rgba(56, 189, 248, .95)
        );
    color: #03111f;
    box-shadow:
        0 25px 60px rgba(14, 165, 233, .3),
        inset 0 1px 0 rgba(255, 255, 255, .4);
    font-size: 2.25rem;
}

.about-core-ring {
    position: absolute;
    border: 1px solid rgba(56, 189, 248, .25);
    border-radius: 50%;
}

.about-core-ring-one {
    inset: 15px;
    animation: aboutOrbit 16s linear infinite;
}

.about-core-ring-two {
    inset: -22px;
    border-style: dashed;
    opacity: .6;
    animation: aboutOrbitReverse 22s linear infinite;
}

.about-capability {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(148, 163, 184, .17);
    border-radius: 15px;
    background: rgba(10, 22, 39, .88);
    backdrop-filter: blur(14px);
    color: #e2e8f0;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .22);
    font-size: .82rem;
    font-weight: 700;
}

.about-capability i {
    color: #38bdf8;
}

.about-capability-one {
    top: 22%;
    left: 7%;
}

.about-capability-two {
    top: 24%;
    right: 5%;
}

.about-capability-three {
    bottom: 25%;
    left: 5%;
}

.about-capability-four {
    right: 4%;
    bottom: 27%;
}

.about-visual-footer {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 18px;
    background: rgba(7, 16, 30, .86);
    backdrop-filter: blur(14px);
}

.about-visual-footer i {
    color: #14b8a6;
    font-size: 1.2rem;
}

.about-visual-footer strong,
.about-visual-footer span {
    display: block;
}

.about-visual-footer strong {
    color: #f8fafc;
    font-size: .9rem;
}

.about-visual-footer span {
    margin-top: 2px;
    color: #94a3b8;
    font-size: .76rem;
}

.about-story-section,
.about-values-section {
    position: relative;
    overflow: hidden;
}

.about-story-glow,
.about-values-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.about-story-glow-one {
    top: 10%;
    left: -100px;
    width: 280px;
    height: 280px;
    background: rgba(20, 184, 166, .11);
}

.about-story-glow-two {
    right: -120px;
    bottom: 5%;
    width: 340px;
    height: 340px;
    background: rgba(56, 189, 248, .1);
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 570px;
    border-radius: 28px;
    background: #0b1525;
    box-shadow: 0 28px 65px rgba(15, 23, 42, .17);
}

.about-image-wrap > img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 35%,
            rgba(3, 10, 22, .88) 100%
        );
}

.about-image-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    padding: 13px 17px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(7, 16, 30, .82);
    backdrop-filter: blur(12px);
}

.about-image-badge span {
    color: #94a3b8;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-image-badge strong {
    margin-top: 2px;
    color: #fff;
    font-size: 1.45rem;
}

.about-image-caption {
    position: absolute;
    right: 25px;
    bottom: 24px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
}

.about-image-caption i {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #14b8a6,
            #38bdf8
        );
    color: #06101f;
}

.about-image-caption strong,
.about-image-caption span {
    display: block;
}

.about-image-caption strong {
    font-size: .95rem;
}

.about-image-caption span {
    margin-top: 3px;
    color: #cbd5e1;
    font-size: .78rem;
}

.about-lead,
.about-accessible-lead {
    color: #334155;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.8;
}

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

.about-story-points > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px 14px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .68);
}

.about-story-points i {
    margin-top: 4px;
    color: #14b8a6;
}

.about-story-points span {
    color: #334155;
    font-size: .87rem;
    font-weight: 650;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.about-timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 31px;
    width: 1px;
    background:
        linear-gradient(
            #14b8a6,
            #38bdf8
        );
    opacity: .4;
}

.about-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 29, 50, .94),
            rgba(8, 18, 33, .96)
        );
}

.about-timeline-marker {
    position: relative;
    z-index: 2;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(20, 184, 166, .16),
            rgba(56, 189, 248, .16)
        );
    color: #38bdf8;
    font-size: .78rem;
    font-weight: 800;
}

.about-timeline-label {
    display: block;
    margin-bottom: 5px;
    color: #38bdf8;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-timeline-content h3 {
    margin-bottom: 8px;
    color: #f8fafc;
}

.about-timeline-content p {
    margin: 0;
    color: #94a3b8;
}

.about-values-glow {
    top: 30%;
    right: -100px;
    width: 360px;
    height: 360px;
    background: rgba(56, 189, 248, .1);
}

.about-value-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 23px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 20px 45px rgba(15, 23, 42, .07);
}

.about-value-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(15, 23, 42, .08);
    font-size: 2.1rem;
    font-weight: 900;
}

.about-value-card h3 {
    margin: 20px 0 10px;
    color: #0f172a;
}

.about-value-card p {
    margin: 0;
    color: #64748b;
}

.about-accessible-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(20, 184, 166, .14),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 75%,
            rgba(56, 189, 248, .13),
            transparent 32%
        ),
        #f8fafc;
}

.about-accessible-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(35px, 6vw, 72px);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 32px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .94),
            rgba(241, 245, 249, .92)
        );
    box-shadow: 0 30px 75px rgba(15, 23, 42, .1);
}

.about-location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.about-location-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(15, 23, 42, .09);
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: .82rem;
    font-weight: 700;
}

.about-location-list i {
    color: #14b8a6;
}

.about-budget-card {
    padding: 28px;
    border: 1px solid rgba(56, 189, 248, .16);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            #0d1a2e,
            #08111f
        );
    box-shadow: 0 28px 60px rgba(15, 23, 42, .25);
}

.about-budget-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(20, 184, 166, .18),
            rgba(56, 189, 248, .18)
        );
    color: #38bdf8;
    font-size: 1.25rem;
}

.about-budget-label {
    margin: 22px 0 5px;
    color: #38bdf8;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-budget-card h3 {
    color: #f8fafc;
}

.about-budget-options {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.about-budget-options > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, .13);
}

.about-budget-options i {
    margin-top: 3px;
    color: #14b8a6;
}

.about-budget-options strong,
.about-budget-options span {
    display: block;
}

.about-budget-options strong {
    margin-bottom: 3px;
    color: #f8fafc;
    font-size: .87rem;
}

.about-budget-options span {
    color: #94a3b8;
    font-size: .78rem;
    line-height: 1.55;
}

.about-why-image {
    margin-top: 26px;
    border-radius: 24px;
}

@keyframes aboutOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes aboutOrbitReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* =========================================================
   GRAPHIC DESIGN PAGE
========================================================= */

.graphic-preview-content {
    position: relative;
}

.graphic-colour-palette {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.graphic-colour-palette span {
    display: block;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 11px;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .16);
}

.graphic-colour-palette span:nth-child(1) {
    background: #14b8a6;
}

.graphic-colour-palette span:nth-child(2) {
    background: #38bdf8;
}

.graphic-colour-palette span:nth-child(3) {
    background: #0f172a;
}

.graphic-colour-palette span:nth-child(4) {
    background: #f8fafc;
}

.graphic-colour-palette span:nth-child(5) {
    background:
        linear-gradient(
            135deg,
            #14b8a6,
            #38bdf8
        );
}

.graphic-design-visual .website-preview-content h2 {
    max-width: 520px;
}

.graphic-channel-visual .search-core > i {
    background:
        linear-gradient(
            135deg,
            #14b8a6,
            #38bdf8
        );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
