:root {
  --bg-dark: #0b1220;
  --bg-dark-2: #111a2e;
  --bg-mid: #1a2540;
  --bg-soft: #f4f7fb;
  --bg-soft-2: #eef3f9;
  --white: #ffffff;
  --text-dark: #162033;
  --text-body: #5d6b82;
  --line: #dbe3ef;
  --accent: #ec4899;
  --accent-2: #fb923c;
  --green-1: #2fd566;
  --green-2: #22b455;
  --blue-1: #4a82e8;
  --blue-2: #2f63c9;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
  --shadow-strong: 0 28px 60px rgba(8, 15, 30, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #0b1220 0%, #131d34 24%, var(--bg-soft-2) 24%, var(--bg-soft-2) 100%);
  overflow-x: hidden;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.seo-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.brand-kicker {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.logo {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo span {
  color: #cbd8ff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-left: auto;
  flex: 0 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: normal;
  text-wrap: balance;
}

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

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.btn-whatsapp {
  padding: 18px 28px;
  border-radius: 16px;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--green-1), var(--green-2));
  box-shadow: 0 18px 28px rgba(34,180,85,0.24);
}

.btn-primary {
  padding: 16px 24px;
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, var(--blue-1), var(--blue-2));
  box-shadow: 0 16px 24px rgba(47,99,201,0.16);
}

.btn-secondary {
  padding: 16px 24px;
  border-radius: 16px;
  color: #fff;
  font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}

.btn-dark-outline {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(236,72,153,0.16), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(251,146,60,0.12), transparent 22%),
    linear-gradient(135deg, #0b1220 0%, #111a2e 48%, #1a2540 100%);
  padding: 42px 0 118px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.03) 45%, transparent 70%);
  pointer-events: none;
}

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

.hero-glow-left {
  width: 280px;
  height: 280px;
  left: -80px;
  top: 40px;
  background: rgba(236,72,153,0.18);
}

.hero-glow-right {
  width: 320px;
  height: 320px;
  right: -100px;
  top: 20px;
  background: rgba(251,146,60,0.14);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: rgba(255,255,255,.92);
}

.eyebrow-dark {
  background: rgba(236,72,153,.08);
  border-color: rgba(236,72,153,.12);
  color: #b83280;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
}

.eyebrow-dot-pink {
  background: #ec4899;
}

.hero-title {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(2.7rem, 4.7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-accent {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0 0 14px;
  max-width: 700px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(255,255,255,.88);
}

.hero-text-lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,.94);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .94rem;
}

/* HERO DEVICE */
.hero-device {
  position: relative;
  min-height: 450px;
}

.hero-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-card-main {
  position: absolute;
  right: 18px;
  top: 0;
  width: min(100%, 520px);
  padding: 16px;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.pink { background: #f472b6; }
.dot.amber { background: #f59e0b; }
.dot.blue { background: #60a5fa; }

.dashboard-mockup {
  display: grid;
  grid-template-columns: 84px 1fr;
  overflow: hidden;
  border-radius: 22px;
  background: #f8fbff;
  min-height: 330px;
}

.dashboard-sidebar {
  background: linear-gradient(180deg, #18233d 0%, #243454 100%);
  padding: 18px 14px;
}

.dashboard-sidebar span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  margin-bottom: 16px;
}

.dashboard-content {
  padding: 18px;
}

.dashboard-head {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.line {
  height: 16px;
  border-radius: 999px;
  background: #e4ebf6;
}

.line.long { width: 150px; }
.line.short { width: 90px; }

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 16px;
  margin-bottom: 16px;
}

.panel {
  border-radius: 18px;
  border: 1px solid #dfe7f2;
  background: linear-gradient(180deg, #fff, #f4f7fb);
}

.chart-panel {
  height: 160px;
  padding: 16px;
  display: flex;
  align-items: end;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  width: 100%;
  height: 100%;
}

.chart-bars span {
  display: block;
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #fb7185, #f97316);
}

.chart-bars span:nth-child(1) { height: 42%; }
.chart-bars span:nth-child(2) { height: 68%; }
.chart-bars span:nth-child(3) { height: 55%; }
.chart-bars span:nth-child(4) { height: 84%; }

.stats-panel {
  height: 160px;
  display: grid;
  place-items: center;
}

.ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(#ec4899 0 120deg, #fb923c 120deg 245deg, #60a5fa 245deg 360deg);
  position: relative;
}

.ring::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: #fff;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dashboard-bottom div {
  height: 76px;
  border-radius: 16px;
  border: 1px solid #dfe7f2;
  background: linear-gradient(180deg, #fff, #f4f7fb);
}

.hero-card-floating {
  position: absolute;
  left: 10px;
  bottom: 26px;
  width: 170px;
  padding: 18px;
}

.floating-title,
.floating-line,
.floating-button {
  border-radius: 999px;
}

.floating-title {
  width: 78%;
  height: 14px;
  background: rgba(255,255,255,.72);
  margin-bottom: 14px;
}

.floating-line {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,.38);
  margin-bottom: 10px;
}

.floating-line.short {
  width: 72%;
}

.floating-button {
  margin-top: 18px;
  height: 34px;
  background: linear-gradient(180deg, var(--green-1), var(--green-2));
}

.hero-curve {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -76px;
  height: 176px;
  background: var(--bg-soft);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* TRUST */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  padding: 0 0 22px;
}

.trust-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 18px 22px;
  color: var(--text-dark);
  font-weight: 700;
}

/* SECTIONS */
.pricing,
.light-section,
.dark-section,
.cta-section,
.projects-section {
  position: relative;
  z-index: 2;
}

.pricing {
  padding: 20px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text-dark);
}

.light-section {
  padding: 84px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.light-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(59,130,246,0.25), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(236,72,153,0.22), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.light-section .container {
  position: relative;
  z-index: 1;
}

.projects-section {
  padding: 84px 0;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  color: var(--text-dark);
}

.dark-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(59,130,246,0.12), transparent 22%),
    radial-gradient(circle at 88% 20%, rgba(236,72,153,0.10), transparent 18%),
    linear-gradient(180deg, #071327 0%, #0d1d3a 55%, #12264a 100%);
  color: #fff;
}

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

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

.section-head h2,
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-head p,
.section-heading p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--text-body);
}

.dark-section .section-head {
  max-width: 860px;
  margin-bottom: 40px;
}

.dark-section .section-head h2 {
  color: #fff;
}

.dark-section .section-head p {
  color: rgba(255,255,255,0.82);
  max-width: 760px;
}

.grid.two,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

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

/* CARDS */
.pricing-card,
.light-card,
.glass-card,
.project-card {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.pricing-card {
  position: relative;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  padding: 34px 30px;
  overflow: hidden;
}

.pricing-card h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.badge.green { background: linear-gradient(180deg, #48b845, #338f30); }
.badge.blue { background: linear-gradient(180deg, #4879dc, #2f63c9); }

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 70%;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.08rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #49af45;
  font-weight: 900;
}

.icon-circle {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,240,247,.96), rgba(224,230,240,.94));
}

.monitor::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 40px;
  width: 88px;
  height: 56px;
  border: 8px solid #264375;
  border-radius: 8px;
}

.monitor::after {
  content: "";
  position: absolute;
  left: 58px;
  top: 104px;
  width: 34px;
  height: 18px;
  border-bottom: 8px solid #264375;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.gear {
  display: grid;
  place-items: center;
  font-size: 5rem;
  color: #355fae;
}

/* CTA */
.cta-section {
  position: relative;
  padding: 68px 0 120px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #f8f9fc 100%);
  overflow: hidden;
}

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

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

.cta-box h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.cta-box p {
  margin: 18px auto 28px;
  max-width: 760px;
  font-size: 1.08rem;
  color: var(--text-body);
  line-height: 1.7;
}

.cta-wave {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -180px;
  width: 140%;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(90deg, #081528 0%, #1a2540 50%, #081528 100%);
  opacity: 0.95;
  z-index: 0;
  pointer-events: none;
}

/* ABOUT */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.92));
  border: 1px solid rgba(255,255,255,0.55);
  padding: 30px;
  color: var(--text-dark);
  box-shadow: 0 20px 50px rgba(7, 19, 39, 0.18);
}

.glass-card h3,
.light-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--text-dark);
}

.glass-card p,
.light-card p {
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

.light-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.94));
  border: 1px solid var(--line);
  padding: 30px;
}

/* PROJECTS */
.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 24px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  color: var(--text-dark);
  backdrop-filter: blur(6px);
}

.project-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(236,72,153,.08);
  color: #b83280;
  font-size: .82rem;
  font-weight: 700;
}

.project-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.project-card p {
  margin: 0 0 18px;
  color: var(--text-body);
  line-height: 1.65;
}

.stack-mini {
  font-size: .9rem;
  opacity: .7;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.project-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  background: transparent;
  color: #1e293b;
  border: 1px solid #cbd5e1;
}

/* CONTACTS */
.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 800;
  background: linear-gradient(180deg,#ffffff,#f1f5f9);
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
  transition: all .25s ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.contact-links .icon {
  width: 20px;
  height: 20px;
}

.contact-links .icon svg {
  width: 20px;
  height: 20px;
}

.contact-links a.whatsapp { background: #25D366; color: #fff; border: none; }
.contact-links a.email { background: #2563eb; color: #fff; border: none; }
.contact-links a.phone { background: #111827; color: #fff; border: none; }
.contact-links a.github { background: #0b1220; color: #fff; border: none; }
.contact-links a.linkedin { background: #0A66C2; color: #fff; border: none; }

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.stack-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #edf2fb;
  color: #31528f;
  border: 1px solid #dae2f2;
  font-weight: 700;
}

/* SEO */
.seo-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--text-body);
}

.faq-head {
  margin-top: 40px;
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: rgba(255,255,255,.84);
  text-align: center;
  padding: 36px 0 54px;
}

.site-footer a {
  color: #dbe8ff;
}

.site-footer p {
  line-height: 1.8;
  margin: 8px 0;
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 200;
}

.cookie-banner__content {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(11, 18, 32, 0.96);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 28px rgba(7,13,25,0.24);
}

.cookie-banner__content p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.cookie-banner__content a {
  color: #dbe8ff;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

/* MOBILE CTA */
.mobile-cta {
  display: none;
}

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

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

  .hero-device {
    min-height: 390px;
    margin-top: 8px;
  }

  .hero-card-main {
    position: relative;
    right: 0;
    top: 0;
    margin: 0 auto;
  }

  .hero-card-floating {
    left: 10%;
    bottom: 10px;
  }

  .pricing-card ul {
    max-width: 100%;
    padding-right: 170px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  body {
    background: linear-gradient(180deg, #0b1220 0%, #131d34 18%, var(--bg-soft-2) 18%, var(--bg-soft-2) 100%);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-lockup {
    max-width: calc(100% - 64px);
  }

  .brand-kicker {
    font-size: .68rem;
  }

  .logo {
    font-size: 1.55rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(11,18,32,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 35px rgba(0,0,0,0.28);
    z-index: 110;
  }

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

  .main-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
  }

  .hero-device {
    display: none;
  }

  .hero {
    padding: 18px 0 42px;
  }

  .hero-layout {
    display: block;
  }

  .eyebrow {
    font-size: .84rem;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.06;
    letter-spacing: -0.05em;
    margin-bottom: 14px;
  }

  .hero-text,
  .hero-text-lead {
    font-size: .98rem;
    line-height: 1.58;
    margin-bottom: 12px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
  }

  .btn-whatsapp,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: .98rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .hero-trust span {
    justify-content: center;
    text-align: center;
    font-size: .92rem;
  }

  .hero-curve {
    bottom: -22px;
    height: 54px;
  }

  .trust-strip {
    margin-top: 0;
    padding-bottom: 8px;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
  }

  .trust-inner span {
    font-size: .95rem;
  }

  .pricing,
  .light-section,
  .dark-section,
  .projects-section,
  .cta-section {
    padding: 52px 0;
  }

  .pricing-grid,
  .grid.two,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .light-card,
  .glass-card,
  .project-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .pricing-card {
    padding-bottom: 132px;
  }

  .pricing-card h2,
  .section-head h2,
  .section-heading h2,
  .cta-box h2 {
    font-size: 1.65rem;
    line-height: 1.18;
  }

  .section-head p,
  .section-heading p,
  .light-card p,
  .glass-card p,
  .project-card p,
  .cta-box p {
    font-size: .98rem;
    line-height: 1.65;
  }

  .pricing-card ul {
    max-width: 100%;
    padding-right: 0;
  }

  .pricing-card li {
    font-size: .98rem;
    margin-bottom: 12px;
  }

  .icon-circle {
    right: 50%;
    bottom: 14px;
    transform: translateX(50%);
    width: 104px;
    height: 104px;
  }

  .monitor::before {
    left: 24px;
    top: 31px;
    width: 60px;
    height: 36px;
    border-width: 6px;
  }

  .monitor::after {
    left: 44px;
    top: 75px;
    width: 18px;
    height: 10px;
    border-bottom-width: 6px;
  }

  .gear {
    font-size: 3.4rem;
  }

  .cta-section {
    padding-bottom: 90px;
  }

  .cta-wave {
    width: 180%;
    height: 200px;
    bottom: -130px;
    opacity: 0.95;
  }

  .project-card {
    min-height: auto;
  }

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

  .project-actions a {
    width: 100%;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    min-height: 56px;
  }

  .stack-tags {
    gap: 8px;
  }

  .stack-tags span {
    font-size: .88rem;
    padding: 8px 11px;
  }

  .site-footer {
    padding: 28px 0 96px;
  }

  .site-footer p {
    font-size: .92rem;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 78px;
  }

  .cookie-banner__content {
    padding: 14px;
    border-radius: 14px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 10px;
    z-index: 999;
    background: transparent;
    border-top: 0;
  }

  .mobile-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    min-height: 56px;
    padding: 12px 14px;
    font-weight: 800;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(15,23,42,0.18);
    font-size: .95rem;
  }

  .mobile-cta a:first-child {
    background: linear-gradient(180deg,#2fd566,#22b455);
    color: #fff;
  }

  .mobile-cta a:last-child {
    background: #111827;
    color: #fff;
  }
}
