﻿:root {
  --bg: #070d18;
  --bg-soft: #0d1729;
  --panel: #101a2d;
  --panel-alt: #16233f;
  --card: rgba(15, 22, 34, 0.9);
  --text: #f8fafc;
  --muted: #9db2c9;
  --cyan: #38bdf8;
  --blue: #3e7bfa;
  --purple: #9b5de5;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

h1,
h2,
h3,
.brand {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

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

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

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.page-hero {
  padding: 5rem 0 3rem;
}

.page-hero h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.06em;
  line-height: 1.03;
}

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

.page-content {
  padding-top: 1rem;
}

.page-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
}

.page-content p {
  color: var(--muted);
}

.page-content ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.page-content li + li {
  margin-top: 0.55rem;
}

.page-cta {
  margin-top: 3rem;
}

.voice-feature-section {
  max-width: 980px;
}

.voice-feature-section .section-head,
.voice-workflow-section .section-head {
  margin-bottom: 1.9rem;
}

.voice-feature-list {
  display: grid;
  gap: 1.25rem;
}

.voice-feature-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 220px;
  padding: 1.75rem 2rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(17, 31, 54, 0.96), rgba(12, 21, 38, 0.96));
  border: 1px solid rgba(56, 189, 248, 0.22);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.voice-feature-card:hover,
.voice-feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 18px 38px rgba(14, 116, 224, 0.16);
}

.voice-feature-main {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  gap: 1.15rem;
  min-width: 0;
  flex: 1;
}

.voice-feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.04em;
}

.voice-feature-card p {
  margin: 0;
  max-width: none;
  font-size: 0.98rem;
  line-height: 1.65;
}

.voice-feature-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  max-width: 270px;
}

.voice-feature-points span {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
  background: rgba(14, 116, 224, 0.1);
  color: #dbeafe;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
}

.voice-feature-card .card-icon,
.voice-step .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(14, 116, 224, 0.16);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.14);
}

.lucide {
  width: 21px;
  height: 21px;
  stroke-width: 1.9;
}

.voice-workflow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.voice-step {
  position: relative;
  min-height: 204px;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(17, 24, 39, 0.85);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.voice-step:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 14px 28px rgba(14, 116, 224, 0.12);
}

.voice-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 50%;
  z-index: 1;
  color: var(--cyan);
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.voice-step-number {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.voice-step .card-icon {
  margin-top: 0.9rem;
}

.voice-step h3 {
  margin: 0.8rem 0 0.4rem;
  font-size: 1.05rem;
}

.voice-step p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

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

.capability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.7);
  color: var(--text);
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.capability-item:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(19, 38, 68, 0.86);
}

.capability-icon {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  font-size: 0.75rem;
}

.capability-icon .lucide {
  width: 15px;
  height: 15px;
}

.integrations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.voice-capabilities-section {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.voice-capabilities-section .section-head,
.voice-integrations-section .section-head {
  margin-bottom: 1.4rem;
}

.voice-integrations-section {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}

.integration-tag {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 999px;
  background: rgba(15, 22, 34, 0.8);
  color: #dfeaf9;
  font-size: 0.85rem;
  font-weight: 600;
}

.voice-cta {
  border-color: rgba(56, 189, 248, 0.3);
  background: linear-gradient(135deg, rgba(19, 38, 68, 0.98), rgba(27, 20, 54, 0.98));
  box-shadow: 0 22px 50px rgba(32, 77, 160, 0.2);
}

.voice-cta .hero-actions {
  justify-content: center;
}

.voice-cta {
  padding: 3.5rem 1.75rem;
}

.voice-cta .btn-primary .lucide {
  margin-left: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(7, 13, 24, 0.78);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  padding: 4.5rem 0 3rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-head h2,
.page-content h2,
.cta-box h2 {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 680px;
}

.hero h1 span,
.page-hero h1 span,
.section-head h2 span,
.page-content h2 span,
.cta-box h2 span {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head h2 span,
.cta-box h2 span {
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-cyan {
  background: linear-gradient(90deg, var(--cyan), #67e8f9);
}

.gradient-blue {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.gradient-purple {
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.lead {
  max-width: 600px;
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), rgba(97, 129, 244, 0.92));
  box-shadow: 0 16px 38px rgba(62, 123, 250, 0.28);
  color: white;
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(15, 22, 34, 0.8);
  color: var(--text);
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.tech-row span {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 22, 34, 0.8);
  color: #dfeaf9;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.upwork-cta-section {
  padding-bottom: 1.5rem;
}

.upwork-mini-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(11, 18, 31, 0.96));
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.3);
  color: var(--text);
}

.upwork-mini-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.upwork-mini-head img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(56, 189, 248, 0.3);
}

.upwork-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.upwork-name-row h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
  color: var(--text);
}

.verified-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.upwork-mini-head p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.upwork-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.upwork-mini-stats div {
  padding: 0.85rem 0.7rem;
  border-radius: 14px;
  background: rgba(15, 22, 34, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.14);
  text-align: center;
}

.upwork-mini-stats strong,
.upwork-mini-stats span {
  display: block;
}

.upwork-mini-stats strong {
  font-size: 1.1rem;
  color: var(--text);
}

.upwork-mini-stats span {
  font-size: 0.76rem;
  color: var(--muted);
}

.upwork-btn {
  width: 100%;
}

.workflow-card {
  width: min(100%, 420px);
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(19, 30, 48, 0.96), rgba(11, 18, 31, 0.96));
  box-shadow: var(--shadow);
}

.workflow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  background: rgba(22, 163, 74, 0.18);
  color: #a7f3d0;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.workflow-body {
  display: grid;
  gap: 0.9rem;
  padding-top: 1rem;
}

.flow-node {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: rgba(19, 27, 41, 0.8);
}

.flow-node h3 {
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.flow-node p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.icon,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 700;
}

.line {
  position: relative;
  width: 2px;
  height: 28px;
  margin: 0 auto;
  background: rgba(148, 163, 184, 0.25);
}

.pulse {
  position: absolute;
  left: -3px;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

@keyframes pulseMove {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(15, 22, 34, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-head h2 span {
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card,
.project-card,
.about-card,
.process-card,
.cta-box {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(17, 24, 39, 0.85);
  box-shadow: 0 16px 32px rgba(2, 6, 23, 0.12);
}

.info-card,
.project-card,
.process-card {
  padding: 1.5rem;
}

.info-card h3,
.project-card h3,
.process-card h3,
.about-card h3 {
  margin: 1rem 0 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.info-card p,
.project-card p,
.process-card p,
.about-text,
.cta-box p {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.process-no {
  position: absolute;
  right: 1rem;
  top: 0.3rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -0.08em;
}

.process-icon {
  margin-top: 0.5rem;
  width: 54px;
  height: 54px;
}

.step-label {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 1.1rem;
}

.project-topline,
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-topline {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.rating-row {
  margin: 1rem 0;
  color: #fbbf24;
  font-size: 0.85rem;
}

.rating-row strong {
  color: var(--text);
}

.rating-row em {
  color: var(--muted);
  font-style: normal;
}

.project-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1;
}

.project-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5rem;
}

.project-card li + li {
  margin-top: 0.4rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: linear-gradient(135deg, rgba(62, 123, 250, 0.14), rgba(56, 189, 248, 0.12));
  color: var(--text);
  font-weight: 600;
  margin-top: auto;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-link:hover,
.project-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.12);
}

.about-wrap {
  display: grid;
  place-items: center;
}

.about-card {
  width: min(100%, 860px);
  padding: 2rem;
}

.about-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.linkedin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--cyan);
  font-weight: 600;
}

.about-profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
}

.about-profile img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(56, 189, 248, 0.3);
}

.about-profile h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.about-profile p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.about-text {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-stats div {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(9, 15, 27, 0.9);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.about-stats span {
  color: var(--muted);
}

.cta-box {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, rgba(17, 24, 39, 1), rgba(12, 19, 31, 1));
}

.cta-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.cta-box p {
  max-width: 620px;
  margin: 1rem auto 2rem;
}

.site-footer {
  padding: 1.5rem 0 3rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

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

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

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

  .voice-step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 640px) {
  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    padding: 0.9rem 0;
    gap: 0.75rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
  }

  .hero {
    gap: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .card-grid,
  .process-grid,
  .about-stats,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .voice-workflow,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .voice-feature-card {
    min-height: 0;
    padding: 1.75rem;
  }

  .voice-feature-points {
    justify-content: flex-start;
    max-width: none;
  }

  .voice-step {
    min-height: 0;
  }

  .project-card {
    padding: 1.2rem;
  }

  .project-topline {
    font-size: 0.68rem;
  }

  .rating-row {
    font-size: 0.8rem;
  }

  .about-card {
    padding: 1.25rem;
  }

  .about-profile {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 4rem 0;
  }
}
/* =========================
   NAV ACTIVE + DROPDOWN
========================= */

/* Direct navbar links + dropdown button */
.main-nav > a,
.nav-dropdown-toggle {
  position: relative;
}


/* Active / hover underline */
.main-nav > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav > a.active::after,
.nav-dropdown:hover > .nav-dropdown-toggle::after,
.nav-dropdown.active > .nav-dropdown-toggle::after,
.nav-dropdown.open > .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.main-nav > a.active {
  color: var(--text);
}


/* =========================
   DROPDOWN
========================= */

.nav-dropdown {
  position: relative;
}


/* Dropdown button */
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 7px;

  border: 0;
  padding: 0;
  background: transparent;

  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;

  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.active .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--text);
}


/* Proper CSS arrow */
.dropdown-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;

  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;

  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(225deg) translateY(-1px);
}


/* =========================
   DROPDOWN MENU
========================= */

.nav-dropdown-menu {
  display: none;

  position: absolute;
  top: calc(100% + 16px);
  left: 50%;

  min-width: 230px;
  padding: 8px;

  transform: translateX(-50%);

  border: 1px solid var(--border);
  border-radius: 14px;

  background: rgba(13, 23, 41, 0.98);
  box-shadow: var(--shadow);

  z-index: 1000;
}


/* Invisible bridge so hover doesn't break */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}


/* Dropdown links */
.nav-dropdown-menu a {
  display: block;

  padding: 10px 12px;
  border-radius: 9px;

  color: var(--muted);
  font-size: 0.9rem;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.active {
  background: rgba(56, 189, 248, 0.1);
  color: var(--text);
}


/* Show dropdown */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}


/* =========================
   MOBILE DROPDOWN
========================= */

@media (max-width: 640px) {

  .nav-dropdown-menu {
    min-width: 220px;
    top: calc(100% + 14px);
  }

}
/* =========================
   MOBILE VOICE FEATURE FIX
========================= */

@media (max-width: 640px) {

  .voice-feature-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1.4rem;
    padding: 1.4rem;
  }

  .voice-feature-main {
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 1rem;
  }

  .voice-feature-card .card-icon {
    width: 44px;
    height: 44px;
  }

  .voice-feature-card p {
    width: 100%;
    max-width: none;
  }

  .voice-feature-points {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
  }

  .voice-feature-points span {
    white-space: nowrap;
  }

}
/* =========================================
   CLIENT REVIEWS / TRUST
   ========================================= */

.reviews-section {
  position: relative;
}

.reviews-section-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reviews-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 42px auto 30px;
  padding: 18px 24px;
  max-width: 1050px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      rgba(16, 24, 40, 0.72),
      rgba(14, 20, 35, 0.55)
    );

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: #f4c430;
  white-space: nowrap;
}

.trust-rating strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
}

.trust-rating span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.trust-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}

.trust-point svg {
  width: 17px;
  height: 17px;
  color: #67e8f9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.review-card {
  position: relative;

  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 22px;

  background:
    radial-gradient(
      circle at top right,
      rgba(77, 124, 255, 0.09),
      transparent 35%
    ),
    rgba(13, 18, 32, 0.78);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.22);

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

.review-card:hover {
  transform: translateY(-4px);

  border-color: rgba(103, 232, 249, 0.25);

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.30);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.review-project {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  max-width: 65%;

  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.review-project svg {
  flex: 0 0 auto;

  width: 18px;
  height: 18px;

  margin-top: 1px;

  color: #67e8f9;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.review-rating span {
  color: #f4c430;
  font-size: 15px;
  letter-spacing: 1px;
}

.review-rating strong {
  color: #ffffff;
  font-size: 14px;
}

.review-date {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 18px;

  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.review-date svg {
  width: 15px;
  height: 15px;
}

.review-quote {
  margin: 24px 0;

  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;

  font-style: italic;

  color: rgba(255, 255, 255, 0.88);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-author-icon {
  width: 38px;
  height: 38px;

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

  border-radius: 50%;

  background: rgba(103, 232, 249, 0.08);
  border: 1px solid rgba(103, 232, 249, 0.14);
}

.review-author-icon svg {
  width: 20px;
  height: 20px;
  color: #67e8f9;
}

.review-author strong {
  display: block;

  font-size: 14px;
  color: #ffffff;
}

.review-author span {
  display: block;

  margin-top: 2px;

  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.reviews-note {
  max-width: 700px;

  margin: 18px auto 0;

  text-align: center;

  font-size: 11px;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.35);
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 800px) {

  .reviews-trust-bar {
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px;
  }

  .trust-divider {
    display: none;
  }

  .trust-point {
    flex: 1 1 40%;
    justify-content: center;
  }

  .review-card {
    padding: 22px;
  }

  .review-card-top {
    flex-direction: column;
    gap: 14px;
  }

  .review-project {
    max-width: 100%;
  }

  .review-rating {
    align-self: flex-start;
  }
}


@media (max-width: 520px) {

  .reviews-trust-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-rating {
    width: 100%;
  }

  .trust-point {
    justify-content: flex-start;
    width: 100%;
  }

  .review-card {
    padding: 18px;
    border-radius: 18px;
  }

  .review-quote {
    font-size: 16px;
    line-height: 1.65;
  }

}

/* =========================================
   N8N AUTOMATION PAGE
   ========================================= */


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

.n8n-hero {
  position: relative;
  overflow: hidden;
}

.n8n-hero::before {
  content: "";
  position: absolute;

  width: 420px;
  height: 420px;

  top: -180px;
  right: -120px;

  border-radius: 50%;

  background: rgba(34, 211, 238, 0.08);

  filter: blur(90px);

  pointer-events: none;
}

.n8n-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 20px;
  padding: 8px 13px;

  border: 1px solid rgba(103, 232, 249, 0.15);
  border-radius: 999px;

  background: rgba(103, 232, 249, 0.05);

  color: rgba(255, 255, 255, 0.70);

  font-size: 12px;
}

.n8n-status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #67e8f9;

  box-shadow:
    0 0 0 4px rgba(103, 232, 249, 0.08),
    0 0 14px rgba(103, 232, 249, 0.45);
}

.n8n-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 9px;

  margin-top: 30px;
}

.n8n-hero-tags span {
  padding: 7px 12px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;

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

  color: rgba(255, 255, 255, 0.52);

  font-size: 11px;
}


/* =========================================
   CAPABILITIES
   ========================================= */

.n8n-capability-grid {
  margin-top: 40px;
}

.n8n-capability-card {
  position: relative;
  overflow: hidden;
}

.n8n-capability-card::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  top: -65px;
  right: -65px;

  border-radius: 50%;

  background: rgba(103, 232, 249, 0.04);

  pointer-events: none;
}

.n8n-capability-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.n8n-capability-card .card-icon svg {
  width: 21px;
  height: 21px;
}

.n8n-card-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 7px;

  margin-top: 20px;
}

.n8n-card-tags span {
  padding: 5px 8px;

  border-radius: 6px;

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

  border: 1px solid rgba(255, 255, 255, 0.06);

  color: rgba(255, 255, 255, 0.43);

  font-size: 10px;
}


/* =========================================
   VISUAL WORKFLOW
   ========================================= */

.n8n-flow-section {
  overflow: hidden;
}

.n8n-visual-flow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 48px;
}

.n8n-flow-node {
  width: 175px;
  min-height: 145px;

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

  padding: 18px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(25, 33, 54, 0.85),
      rgba(12, 18, 31, 0.72)
    );

  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.20);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.n8n-flow-node:hover {
  transform: translateY(-5px);

  border-color: rgba(103, 232, 249, 0.28);
}

.n8n-flow-icon {
  width: 43px;
  height: 43px;

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

  margin-bottom: 13px;

  border-radius: 12px;

  background: rgba(103, 232, 249, 0.07);

  border: 1px solid rgba(103, 232, 249, 0.12);

  color: #67e8f9;
}

.n8n-flow-icon svg {
  width: 20px;
  height: 20px;
}

.n8n-flow-node strong {
  display: block;

  font-size: 13px;

  color: #ffffff;
}

.n8n-flow-node > span {
  display: block;

  margin-top: 6px;

  font-size: 10px;
  line-height: 1.45;

  color: rgba(255, 255, 255, 0.42);
}

.n8n-flow-ai {
  border-color: rgba(168, 85, 247, 0.20);

  background:
    linear-gradient(
      145deg,
      rgba(50, 31, 75, 0.50),
      rgba(12, 18, 31, 0.72)
    );
}

.n8n-flow-ai .n8n-flow-icon {
  color: #c084fc;

  background: rgba(168, 85, 247, 0.08);

  border-color: rgba(168, 85, 247, 0.15);
}

.n8n-flow-arrow {
  width: 35px;

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

.n8n-flow-arrow span {
  position: relative;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(103, 232, 249, 0.45),
      transparent
    );
}

.n8n-flow-arrow span::after {
  content: "";

  position: absolute;

  right: 1px;
  top: -4px;

  width: 7px;
  height: 7px;

  border-top: 1px solid rgba(103, 232, 249, 0.7);
  border-right: 1px solid rgba(103, 232, 249, 0.7);

  transform: rotate(45deg);
}

.n8n-flow-note {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  max-width: 700px;

  margin: 28px auto 0;

  color: rgba(255, 255, 255, 0.40);

  font-size: 11px;
  text-align: center;
}

.n8n-flow-note svg {
  flex: 0 0 auto;

  width: 15px;
  height: 15px;

  color: rgba(103, 232, 249, 0.65);
}


/* =========================================
   USE CASES
   ========================================= */

.n8n-usecase-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;

  margin-top: 40px;
}

.n8n-usecase {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  padding: 23px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;

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

  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.n8n-usecase:hover {
  transform: translateY(-3px);

  border-color: rgba(103, 232, 249, 0.17);
}

.n8n-usecase > svg {
  flex: 0 0 auto;

  width: 21px;
  height: 21px;

  margin-top: 2px;

  color: #67e8f9;
}

.n8n-usecase h3 {
  margin: 0 0 7px;

  font-size: 15px;
}

.n8n-usecase p {
  margin: 0;

  font-size: 12px;
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.48);
}


/* =========================================
   INTEGRATIONS
   ========================================= */

.n8n-integrations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 10px;

  max-width: 900px;

  margin: 40px auto 0;
}

.n8n-integrations span {
  padding: 10px 15px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;

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

  color: rgba(255, 255, 255, 0.62);

  font-size: 12px;

  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.n8n-integrations span:hover {
  border-color: rgba(103, 232, 249, 0.20);

  background: rgba(103, 232, 249, 0.04);

  color: rgba(255, 255, 255, 0.82);
}


/* =========================================
   REVIEWS
   ========================================= */

.reviews-section {
  position: relative;
}

.reviews-section-head {
  max-width: 760px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.reviews-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 26px;

  max-width: 1050px;

  margin: 40px auto 28px;

  padding: 17px 22px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;

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

  backdrop-filter: blur(15px);
}

.trust-rating {
  display: flex;
  align-items: center;

  gap: 11px;
}

.trust-stars {
  color: #f4c430;

  font-size: 17px;

  letter-spacing: 2px;

  white-space: nowrap;
}

.trust-rating strong {
  display: block;

  font-size: 14px;

  color: #ffffff;
}

.trust-rating span {
  display: block;

  margin-top: 2px;

  color: rgba(255, 255, 255, 0.42);

  font-size: 10px;
}

.trust-divider {
  width: 1px;
  height: 30px;

  background: rgba(255, 255, 255, 0.10);
}

.trust-point {
  display: flex;
  align-items: center;

  gap: 7px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 11px;
}

.trust-point svg {
  width: 16px;
  height: 16px;

  color: #67e8f9;
}

.reviews-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 760px);

  justify-content: center;
}

.review-card {
  position: relative;

  padding: 27px;

  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;

  background:
    radial-gradient(
      circle at top right,
      rgba(77, 124, 255, 0.08),
      transparent 38%
    ),
    rgba(13, 18, 32, 0.72);

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.20);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);

  border-color: rgba(103, 232, 249, 0.20);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;
}

.review-project {
  display: flex;
  align-items: flex-start;

  gap: 9px;

  max-width: 68%;

  color: rgba(255, 255, 255, 0.68);

  font-size: 12px;
  line-height: 1.5;
}

.review-project svg {
  flex: 0 0 auto;

  width: 17px;
  height: 17px;

  color: #67e8f9;
}

.review-rating {
  display: flex;
  align-items: center;

  gap: 8px;

  white-space: nowrap;
}

.review-rating span {
  color: #f4c430;

  font-size: 14px;

  letter-spacing: 1px;
}

.review-rating strong {
  color: #ffffff;

  font-size: 13px;
}

.review-date {
  display: flex;
  align-items: center;

  gap: 7px;

  margin-top: 17px;

  color: rgba(255, 255, 255, 0.40);

  font-size: 11px;
}

.review-date svg {
  width: 14px;
  height: 14px;
}

.review-quote {
  margin: 22px 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 17px;
  line-height: 1.7;

  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;

  gap: 10px;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.review-author-icon {
  width: 36px;
  height: 36px;

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

  border-radius: 50%;

  background: rgba(103, 232, 249, 0.06);

  border: 1px solid rgba(103, 232, 249, 0.12);
}

.review-author-icon svg {
  width: 19px;
  height: 19px;

  color: #67e8f9;
}

.review-author strong {
  display: block;

  color: #ffffff;

  font-size: 13px;
}

.review-author span {
  display: block;

  margin-top: 2px;

  color: rgba(255, 255, 255, 0.40);

  font-size: 10px;
}

.reviews-note {
  max-width: 700px;

  margin: 17px auto 0;

  color: rgba(255, 255, 255, 0.30);

  font-size: 10px;
  line-height: 1.6;

  text-align: center;
}


/* =========================================
   CASE STUDY PREVIEW
   ========================================= */

.n8n-case-preview {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(320px, 0.95fr);

  align-items: center;

  gap: 50px;

  padding: 42px;

  border: 1px solid rgba(103, 232, 249, 0.10);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(103, 232, 249, 0.07),
      transparent 40%
    ),
    rgba(255, 255, 255, 0.025);
}

.n8n-case-content p:not(.eyebrow) {
  max-width: 620px;
}

.n8n-mini-flow {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 25px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;

  background: rgba(0, 0, 0, 0.16);
}

.n8n-mini-flow > div {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 5px;

  min-width: 55px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 11px;

  text-align: center;
}

.n8n-mini-flow > div span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 8px;

  background: rgba(103, 232, 249, 0.07);

  color: #67e8f9;

  font-size: 9px;
}

.n8n-mini-flow > svg {
  width: 16px;
  height: 16px;

  color: rgba(103, 232, 249, 0.50);
}


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

.n8n-final-cta {
  position: relative;
  overflow: hidden;
}

.n8n-final-cta::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  top: -170px;
  right: -100px;

  border-radius: 50%;

  background: rgba(103, 232, 249, 0.06);

  filter: blur(70px);

  pointer-events: none;
}


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

@media (max-width: 1050px) {

  .n8n-visual-flow {
    flex-wrap: wrap;
  }

  .n8n-flow-arrow {
    width: 30px;
  }

  .n8n-flow-node {
    width: 160px;
  }

  .n8n-case-preview {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 800px) {

  .n8n-usecase-grid {
    grid-template-columns: 1fr;
  }

  .reviews-trust-bar {
    flex-wrap: wrap;

    gap: 17px;
  }

  .trust-divider {
    display: none;
  }

  .trust-point {
    flex: 1 1 40%;
  }

  .n8n-mini-flow {
    flex-wrap: wrap;
  }

}


@media (max-width: 650px) {

  .n8n-visual-flow {
    flex-direction: column;
  }

  .n8n-flow-node {
    width: 100%;
    max-width: 300px;
  }

  .n8n-flow-arrow {
    width: 1px;
    height: 28px;
  }

  .n8n-flow-arrow span {
    width: 1px;
    height: 100%;
  }

  .n8n-flow-arrow span::after {
    right: -3px;
    top: auto;
    bottom: 0;

    transform: rotate(135deg);
  }

  .n8n-case-preview {
    padding: 25px;
  }

}


@media (max-width: 520px) {

  .n8n-hero-tags {
    justify-content: flex-start;
  }

  .reviews-trust-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-point {
    width: 100%;
    flex: none;
  }

  .review-card {
    padding: 20px;
  }

  .review-card-top {
    flex-direction: column;
  }

  .review-project {
    max-width: 100%;
  }

  .review-rating {
    align-self: flex-start;
  }

  .review-quote {
    font-size: 15px;
  }

  .n8n-mini-flow {
    gap: 14px;
  }

}

