@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ==================== TOKENS ==================== */

:root {
  --purple: #6d28d9;
  /* Deepened for contrast */
  --purple-dim: rgba(109, 40, 217, 0.1);
  --purple-glow: rgba(109, 40, 217, 0.3);
  --blue: #2563eb;
  --blue-dim: rgba(37, 99, 235, 0.1);
  --pink: #db2777;
  --pink-dim: rgba(219, 39, 119, 0.1);
  --green: #059669;
  --green-dim: rgba(5, 150, 105, 0.1);

  --bg: #ffffff;
  --bg-alt: #b3ffc4;
  /* CMYK 30 0 23 0 */
  --hero-bg: #4924aa;
  /* CMYK 70 85 30 5 */
  --it-primary: #0f172a;
  /* Same as IT Services */

  --card-bg: rgba(0, 0, 0, 0.04);
  --card-border: rgba(0, 0, 0, 0.08);

  --text: #0f172a;
  --text-muted: #334155;
  /* Darkened for contrast */
  --text-dim: #64748b;
  --text-on-dark: #f8fafc;

  --radius: 14px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET ==================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==================== TYPOGRAPHY ==================== */

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
}

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

h3 {
  font-size: 1.4rem;
}

p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* ==================== LAYOUT ==================== */

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

section {
  padding: 112px 0;
}

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

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.section-primary {
  background: var(--bg);
  color: var(--text);
}

.section-subtle {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 50%, #ffffff 100%);
  color: var(--text);
}

.subpage-header {
  padding: 160px 0 80px;
  text-align: center;
}

.subpage-header .hero-text {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.25rem;
  opacity: 0.9;
}

.section-accent {
  background: var(--hero-bg);
  color: var(--text-on-dark);
}

.section-accent h1,
.section-accent h2,
.section-accent h3,
.section-accent p {
  color: var(--text-on-dark);
}

.section-accent .card-glass {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-accent .text-muted {
  color: rgba(255, 255, 255, 0.7);
}



/* ==================== TOP BAR ==================== */

.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 40px;
  background: var(--it-primary);
  z-index: 1001;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.top-bar-content {
  display: flex;
  gap: 24px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: #fff;
}

.top-bar a.active {
  color: #fff;
}

.top-bar a.active::after {
  content: '●';
  font-size: 6px;
  color: var(--purple);
}

/* ==================== NAVIGATION ==================== */

nav {
  position: fixed;
  top: 40px;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.nav-highlight {
  color: #f59e0b;
}

.nav-links a.nav-highlight:hover {
  color: #fbbf24;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile-only CTA inside dropdown */
.nav-mobile-cta {
  display: none;
}

/* ==================== HAMBURGER ==================== */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ==================== BUTTONS ==================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, #6b45c0 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--purple-glow);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 60px;
  background: radial-gradient(circle at top right, rgba(109, 40, 217, 0.5), transparent),
    radial-gradient(circle at bottom left, rgba(67, 56, 202, 0.5), transparent),
    var(--hero-bg);
  color: var(--text-on-dark);
  overflow: hidden;
}

.hero h1,
.hero h2,
.hero p {
  color: var(--text-on-dark);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-on-dark);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}


/* Hero Background removed as per request */

/* Glowing orb */
.hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 1;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 86, 217, .25) 0%, transparent 70%);
  animation: orb-pulse 6s ease-in-out infinite;
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 157, .12) 0%, transparent 70%);
  animation: orb-pulse 6s ease-in-out infinite 2s;
}

@keyframes orb-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  color: #a78bfa;
  /* Light purple for dark background */
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-content h1 {
  margin-bottom: 28px;
}

.hero-content h1 span {
  display: block;
}

.hero-content p {
  font-size: 1.4rem;
  color: var(--text-on-dark);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, .5);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

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

/* ==================== GLASS CARDS ==================== */

.card-glass {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.card-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 86, 217, .08) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.card-glass:hover::before {
  opacity: 1;
}

.card-glass:hover {
  border-color: rgba(127, 86, 217, .3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(127, 86, 217, .15);
}

/* Card icon box */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  flex-shrink: 0;
}

.icon-box.purple {
  background: var(--purple-dim);
  color: var(--purple);
}

.icon-box.blue {
  background: var(--blue-dim);
  color: var(--blue);
}

.icon-box.pink {
  background: var(--pink-dim);
  color: var(--pink);
}

.icon-box.green {
  background: var(--green-dim);
  color: var(--green);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

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

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

.service-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p {
  flex: 1;
  font-size: 0.95rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 16px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  gap: 4px;
}

.read-more:hover {
  gap: 8px;
  color: var(--purple);
}

.it-services-callout {
  text-align: center;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.it-services-callout a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  margin-left: 8px;
}

.it-services-callout a:hover {
  color: #a78bfa;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.process-card {
  padding: 36px 32px;
  position: relative;
}

.process-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
}

.process-card h3 {
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.95rem;
}

/* ==================== LAUNCH PARTNER ==================== */

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

.lp-card {
  padding: 40px;
}

.lp-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.lp-card-header h3 {
  font-size: 1.5rem;
  margin: 0;
}

.lp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lp-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  margin-top: 1px;
}

.lp-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
  margin-top: 1px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(80, 200, 120, 0.15);
  border: 1px solid rgba(80, 200, 120, 0.3);
  border-radius: 100px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.lp-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.lp-criterion {
  padding: 28px 20px;
  text-align: center;
}

.lp-criterion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-criterion-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
  fill: none;
  stroke-width: 2;
}

.lp-criterion p {
  font-size: 0.9rem;
}

.section-cta {
  text-align: center;
}

.section-cta p {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
}

.section-cta .hero-cta {
  justify-content: center;
}

/* ==================== PRICING ==================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.pricing-card {
  padding: 40px;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}

.pricing-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  border: 1px solid var(--card-border);
}

.pricing-tier-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-tier-label svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.pricing-tier-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.pricing-tier-price.purple {
  color: var(--purple);
}

.pricing-tier-price.blue {
  color: var(--blue);
}

.pricing-footnote {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.pricing-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--purple);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.pricing-link:hover {
  color: #a78bfa;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
}

.pricing-table thead th {
  padding: 16px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--card-border);
  text-align: center;
}

.pricing-table thead th:first-child {
  text-align: left;
}

.pricing-table thead th.col-launch {
  color: var(--green);
}

.pricing-table thead th.col-standard {
  color: var(--pink);
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.pricing-table tbody td {
  padding: 14px 20px;
  color: var(--text-muted);
  text-align: center;
}

.pricing-table tbody td:first-child {
  text-align: left;
}

.pricing-table tbody td.val-launch {
  color: var(--green);
  font-weight: 700;
}

.pricing-table tbody td.val-standard {
  color: var(--pink);
  font-weight: 700;
}

.pricing-table tbody td svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  display: block;
  margin: 0 auto;
}

/* ==================== METRICS ==================== */

.section-metrics {
  position: relative;
  overflow: hidden;
}

.section-metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 86, 217, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 86, 217, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  position: relative;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ==================== TESTIMONIALS ==================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 40px;
  position: relative;
}

.testimonial-quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 64px;
  color: var(--purple-dim);
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-title {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==================== CONTACT ==================== */

.section-contact {
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 86, 217, .15) 0%, var(--bg) 40%, rgba(74, 144, 226, .12) 100%);
  pointer-events: none;
}

.section-contact::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(127, 86, 217, .18) 0%, transparent 60%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  margin-bottom: 20px;
}

.contact-inner>p {
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-quick-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-quick-links .btn {
  width: 220px;
  max-width: 100%;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-quick-links .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 580px) {
  .contact-quick-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-quick-links .btn {
    width: 100%;
    max-width: 280px;
  }
}

.contact-form-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  margin-bottom: 32px;
}

.contact-form-card h3 {
  margin-bottom: 28px;
  font-size: 1.25rem;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(127, 86, 217, .5);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 0 0 4px rgba(127, 86, 217, .12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-message {
  padding: 14px 18px;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.form-message--success {
  background: rgba(80, 200, 120, .12);
  color: #86efac;
  border: 1px solid rgba(80, 200, 120, .25);
}

.form-message--error {
  background: rgba(239, 68, 68, .1);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, .25);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--text-dim);
  border-radius: 50%;
}

/* ==================== FOOTER ==================== */

footer {
  background: var(--it-primary);
  color: var(--text-on-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-brand .logo {
  margin-bottom: 16px;
  display: flex;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  max-width: 280px;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--purple-dim);
  border-color: var(--purple);
  color: var(--purple);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section li {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-section a {
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--purple);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--purple);
}

/* Footer gradient bar */
.footer-signal {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 86, 217, .5), transparent);
  margin-top: 28px;
}

/* ==================== SCROLL ANIMATIONS ==================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-mobile-cta {
    display: list-item;
    padding-top: 8px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12, 10, 30, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 0;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--card-border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
  }

  .nav-mobile-cta a {
    display: inline-flex;
    padding: 12px 24px;
    width: 100%;
    color: #fff !important;
    justify-content: center;
    margin-top: 8px;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding: 120px 0 40px;
  }

  .hero-orb {
    width: 320px;
    height: 320px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
  }

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

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

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 10px;
  }
}