:root {
  --bg: #07111f;
  --surface: rgba(10, 21, 38, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #9cb0cc;
  --green: #34d399;
  --blue: #60a5fa;
  --red: #fb7185;
  --gold: #fbbf24;
  --whatsapp: #25d366;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(52, 211, 153, 0.18), transparent 26%),
    radial-gradient(circle at top right, rgba(96, 165, 250, 0.16), transparent 32%),
    linear-gradient(180deg, #09111d 0%, #07111f 45%, #050b15 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background: rgba(52, 211, 153, 0.2);
  top: 5%;
  left: -100px;
}

body::after {
  background: rgba(96, 165, 250, 0.18);
  bottom: 10%;
  right: -110px;
}

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

.page {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 12, 22, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner,
.section,
.footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.22), rgba(96, 165, 250, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.brand-mark span {
  font-size: 1.05rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ghost-link {
  color: var(--muted);
  font-size: 0.95rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #03131d;
  background: linear-gradient(135deg, #f5f7fb 0%, #9ae6c3 100%);
  box-shadow: 0 16px 40px rgba(52, 211, 153, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.button-whatsapp {
  color: #03131d;
  background: linear-gradient(135deg, #9df5be 0%, #25d366 100%);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.24);
}

.hero {
  padding: 54px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.info-card,
.portfolio-card,
.plan-card,
.dev-banner,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(52, 211, 153, 0.08), transparent 45%),
    linear-gradient(315deg, rgba(96, 165, 250, 0.08), transparent 50%);
  pointer-events: none;
}

.eyebrow,
.mini-label,
.portfolio-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7e3f7;
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: 0.96;
  max-width: 11ch;
}

.accent {
  color: #9ae6c3;
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions,
.hero-points,
.plan-list,
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-points {
  margin-top: 26px;
}

.hero-point {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e8effa;
  font-weight: 600;
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 22px;
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(10, 21, 38, 0.92), rgba(8, 16, 28, 0.86)),
    var(--surface);
}

.hero-stat {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-stat::after {
  content: "";
  position: absolute;
  inset: auto -20px -40px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.25), transparent 65%);
}

.hero-stat strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
}

.hero-stat p,
.hero-stack p,
.info-card p,
.portfolio-copy p,
.plan-subtitle,
.plan-note,
.dev-banner p,
.contact-card p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-stack {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-box {
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.section {
  padding: 24px 0 34px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-header h2 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  max-width: 10ch;
}

.section-header p {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.75;
}

.info-grid,
.portfolio-grid,
.plans-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.info-card,
.portfolio-card {
  border-radius: 28px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.info-card::before,
.portfolio-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -36px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.info-card h3,
.portfolio-copy h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f7fb;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.portfolio-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.portfolio {
  padding-top: 10px;
}

.trust {
  padding-top: 8px;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  padding: 26px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 33, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.trust-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 11ch;
}

.trust-copy p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  line-height: 1.75;
}

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

.trust-stat,
.trust-feature,
.trust-sector {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.trust-stat::before,
.trust-feature::before,
.trust-sector::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 68%);
}

.trust-stat strong,
.trust-sector strong {
  position: relative;
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.trust-stat strong {
  font-size: 2rem;
  line-height: 1;
}

.trust-stat span {
  position: relative;
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.trust-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #eaf1fb;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-showcase {
  display: grid;
  gap: 14px;
}

.trust-feature h3 {
  position: relative;
  margin: 18px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.trust-feature p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 52ch;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  min-height: 74px;
  display: flex;
  align-items: center;
}

.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 1;
  pointer-events: none;
}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 18, 33, 0.98), rgba(9, 18, 33, 0));
}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(9, 18, 33, 0.98), rgba(9, 18, 33, 0));
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  padding: 0 16px;
  animation: trust-scroll 20s linear infinite;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #f5f7fb;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.trust-sectors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-sector {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.trust-sector strong {
  margin-top: auto;
}

.trust-sector.cardiocare {
  background: linear-gradient(135deg, rgba(199, 47, 27, 0.589));
}
.trust-sector.patitascr {
  background: linear-gradient(135deg, rgba(253, 130, 30, 0.596));
}
.trust-sector.sonrisafeliz {
  background: linear-gradient(135deg, rgba(41, 131, 143, 0.411));
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.portfolio-card {
  display: grid;
  gap: 18px;
}

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.portfolio-visual {
  min-height: 240px;
  border-radius: 24px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.portfolio-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.portfolio-visual-green {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.22), rgba(6, 22, 27, 0.95));
}

.portfolio-visual-blue {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(9, 20, 35, 0.95));
}

.portfolio-visual-red {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.22), rgba(18, 12, 22, 0.95));
}

.portfolio-chip {
  position: absolute;
  top: 18px;
  left: 18px;
}

.portfolio-screen {
  width: 100%;
  border-radius: 20px;
  padding: 14px;
  background: rgba(4, 10, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.portfolio-screen.tall {
  min-height: 170px;
}

.portfolio-shot-frame {
  padding: 10px;
  overflow: hidden;
}

.project-shot {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.screen-top {
  width: 88px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 18px;
}

.screen-body {
  display: grid;
  gap: 12px;
}

.screen-line,
.screen-stat,
.screen-grid span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.screen-line {
  height: 12px;
}

.screen-line-lg {
  width: 82%;
}

.screen-line-sm {
  width: 58%;
}

.screen-stat {
  width: 100%;
  height: 72px;
  border-radius: 16px;
}

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

.screen-grid span {
  display: block;
  height: 64px;
  border-radius: 16px;
}

.portfolio-page .section {
  padding-top: 28px;
}

.portfolio-hero {
  padding-top: 54px;
}

.portfolio-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.portfolio-hero-copy,
.portfolio-hero-panel,
.portfolio-cta-card,
.case-study {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.portfolio-hero-copy,
.portfolio-hero-panel,
.portfolio-cta-card {
  border-radius: 32px;
  padding: 28px;
}

.portfolio-hero-copy {
  position: relative;
  overflow: hidden;
}

.portfolio-hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(52, 211, 153, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(96, 165, 250, 0.1), transparent 30%);
  pointer-events: none;
}

.portfolio-hero-copy p {
  position: relative;
  margin: 18px 0 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.8;
}

.portfolio-hero-panel {
  display: grid;
  gap: 16px;
}

.portfolio-summary-card,
.summary-box {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.portfolio-summary-card strong {
  display: block;
  margin: 16px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.portfolio-summary-card p,
.summary-box span,
.case-copy p,
.portfolio-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.portfolio-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.summary-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.case-study-grid {
  display: grid;
  gap: 22px;
}

.case-study {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  border-radius: 32px;
}

.case-study.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.case-study.reverse .case-visual {
  order: 2;
}

.case-study.reverse .case-copy {
  order: 1;
}

.case-visual {
  min-height: 320px;
  border-radius: 28px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.case-visual-green {
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.26), rgba(6, 22, 27, 0.95));
}

.case-visual-blue {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.26), rgba(8, 19, 35, 0.95));
}

.case-visual-red {
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.24), rgba(20, 10, 24, 0.95));
}

.case-browser {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 11, 19, 0.72);
  backdrop-filter: blur(14px);
}

.case-shot-frame {
  padding: 12px;
}

.case-shot {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.case-browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.case-browser-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.case-line,
.case-highlight,
.case-stat-grid span,
.case-card-row span {
  display: block;
  background: rgba(255, 255, 255, 0.14);
}

.case-line {
  height: 12px;
  border-radius: 999px;
}

.case-line-lg {
  width: 78%;
}

.case-line-sm {
  width: 56%;
}

.case-highlight {
  height: 92px;
  border-radius: 18px;
}

.case-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.case-stat-grid span {
  height: 74px;
  border-radius: 18px;
}

.case-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-card-row span {
  height: 82px;
  border-radius: 18px;
}

.case-copy h3 {
  margin: 16px 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.03;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eaf1fb;
  font-weight: 600;
}

.case-actions {
  margin-top: 22px;
}

.portfolio-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.14), rgba(52, 211, 153, 0.14)),
    rgba(10, 20, 36, 0.86);
}

.portfolio-cta-card h2 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 11ch;
}

.plans {
  padding-top: 36px;
}

.plan-card {
  border-radius: 30px;
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-card.featured {
  transform: translateY(-10px);
  background:
    linear-gradient(180deg, rgba(15, 28, 46, 0.98), rgba(7, 15, 28, 0.94)),
    var(--surface);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 28px 90px rgba(19, 56, 110, 0.34);
}

.plan-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.plan-price {
  margin: 20px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.plan-price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.98rem;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

.plan-list {
  flex-direction: column;
  margin: 24px 0;
  padding: 0;
}

.plan-list li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  color: #edf3fc;
  line-height: 1.65;
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04);
}

.plan-starter {
  color: var(--green);
}

.plan-business {
  color: var(--blue);
}

.plan-pro {
  color: var(--red);
}

.plan-note {
  margin-top: auto;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #edf3fc;
}

.dev-banner {
  margin-top: 24px;
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(251, 191, 36, 0.16), rgba(96, 165, 250, 0.14)),
    rgba(11, 22, 39, 0.88);
}

.dev-banner h3 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 8px 0 10px;
  max-width: 12ch;
}

.dev-highlight {
  margin-top: 12px !important;
  color: #f5f7fb !important;
  font-weight: 700;
}

.contact-card {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}

.contact-card h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  margin: 8px 0 12px;
  max-width: 10ch;
}

.contact-points {
  margin-top: 18px;
}

.contact-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eaf1fb;
  font-weight: 600;
}

.footer {
  padding: 30px 0 70px;
  text-align: center;
}

.footer p {
  font-size: 0.95rem;
}

.footer a {
  color: inherit;
}

.footer-socials {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-bottom: 22px;
}

.footer-socials-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-socials-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #edf3fc;
  font-weight: 700;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social-active {
  color: #03131d;
  background: linear-gradient(135deg, #9df5be 0%, #25d366 100%);
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.18);
}

.footer-social-muted {
  color: var(--muted);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #9ae6c3 0%, #60a5fa 100%);
  color: #04131d;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 40;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .portfolio-hero-grid,
  .trust-panel,
  .section-header,
  .info-grid,
  .trust-stats,
  .trust-sectors,
  .portfolio-grid,
  .case-study,
  .case-study.reverse,
  .plans-grid,
  .dev-banner,
  .portfolio-cta-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
  }

  .plan-card.featured {
    transform: none;
  }

  .case-study.reverse .case-visual,
  .case-study.reverse .case-copy {
    order: initial;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    padding: 14px 0;
  }

  .ghost-link {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-panel,
  .info-card,
  .portfolio-card,
  .portfolio-hero-copy,
  .portfolio-hero-panel,
  .plan-card,
  .dev-banner,
  .portfolio-cta-card,
  .contact-card {
    border-radius: 24px;
    padding: 20px;
  }

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

  h1 {
    max-width: 8ch;
  }

  .button {
    width: 100%;
  }

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

  .dev-banner h3,
  .contact-card h2,
  .section-header h2 {
    max-width: none;
  }

  .portfolio-visual {
    min-height: 210px;
  }

  .case-visual {
    min-height: 240px;
  }

  .project-shot {
    height: 180px;
  }

  .case-shot {
    height: 220px;
  }

  .portfolio-summary-grid {
    grid-template-columns: 1fr;
  }

  .trust-track {
    animation-duration: 24s;
  }

  .footer {
    padding-bottom: 92px;
  }
}
