:root {
  --bg:          #ffffff;
  --bg2:         #f5f7fa;
  --bg3:         #edf1f7;
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-soft:   #eff4ff;
  --blue-border: #bfcffd;
  --text:        #111827;
  --text2:       #374151;
  --muted:       #6b7280;
  --border:      #e5e7eb;
  --border2:     #d1d5db;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 6px 20px rgba(37,99,235,0.10), 0 2px 6px rgba(0,0,0,0.04);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 700px) {
  .container { padding: 0 20px; }
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 700; font-size: 16px;
  color: var(--text); letter-spacing: -0.01em;
}
.logo-img { height: 28px; width: auto; display: block; }
.logo { gap: 0; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-hamburger {
  display: none; width: 36px; height: 36px; border: 1px solid var(--border);
  background: none; border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center; color: var(--text); flex-shrink: 0;
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--bg2); }

.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(17,24,39,0.4); backdrop-filter: blur(4px);
}
.nav-drawer.open { display: block; }
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw); background: var(--bg);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; padding: 0;
  transform: translateX(100%); transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-header {
  height: 64px; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.nav-drawer-close {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--radius);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background 0.15s, color 0.15s;
}
.nav-drawer-close:hover { background: var(--bg2); color: var(--text); }
.nav-drawer-links {
  list-style: none; padding: 12px 12px; display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.nav-drawer-links a {
  display: block; padding: 11px 16px; border-radius: var(--radius);
  color: var(--text2); font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-drawer-links a:hover { background: var(--blue-soft); color: var(--blue); }
.nav-drawer-footer { padding: 16px 20px; border-top: 1px solid var(--border); }
.nav-cta {
  background: var(--blue); color: #fff;
  padding: 8px 20px; border-radius: var(--radius);
  font-size: 13.5px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; font-family: inherit;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.lang-picker {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2px; height: 36px;
}
.lang-btn {
  padding: 0 10px; height: 100%; border: none; background: none; cursor: pointer;
  font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted);
  border-radius: 4px; transition: background 0.15s, color 0.15s; text-decoration: none;
  display: flex; align-items: center; letter-spacing: 0.03em;
}
.lang-btn:hover { color: var(--text); background: var(--bg3); }
.lang-btn.active { background: var(--blue); color: #fff; }

.hero { min-height: 100vh; position: relative; overflow: hidden; }
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 120px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 75% 45%, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-circuit {
  position: absolute !important; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.hero-circuit svg { position: absolute; bottom: 0; right: 0; width: 65%; max-width: 720px; opacity: 0.055; }
.hero-inner > *:not(.hero-circuit) { position: relative; z-index: 1; }
.hero-illustration { display: flex; align-items: center; justify-content: center; }
.hero-illustration svg { width: 100%; max-width: 520px; height: auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); border: 1px solid var(--blue-border);
  padding: 5px 12px; border-radius: 20px; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(26px, 3.4vw, 44px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 16px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.tw-wrap::after {
  content: '|';
  display: inline-block;
  color: var(--blue);
  animation: tw-blink 0.7s step-end infinite;
  margin-left: 1px;
  font-weight: 300;
  opacity: 1;
}
@keyframes tw-blink { 50% { opacity: 0; } }
.hero-desc { font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 440px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--blue); color: #fff; padding: 10px 24px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,0.3); }

.btn-outline {
  color: var(--text2); padding: 10px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid var(--border2);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.btn-outline:hover { border-color: var(--blue-border); color: var(--blue); background: var(--blue-soft); }

.hero-whatsapp {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; color: var(--muted); text-decoration: none;
  margin-top: 18px; transition: color 0.15s;
}
.hero-whatsapp:hover { color: #16a34a; }
.hero-whatsapp svg { flex-shrink: 0; transition: transform 0.15s; }
.hero-whatsapp:hover svg { transform: translateX(2px); }

section { padding: 80px 0; }
.alt-bg { background: var(--bg2); }
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.section-eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-title { font-size: clamp(20px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.022em; line-height: 1.18; max-width: 560px; }
.section-sub { font-size: 14.5px; color: var(--muted); max-width: 520px; margin-top: 10px; }

.trust-bar {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { color: var(--blue); flex-shrink: 0; }
.trust-text { font-size: 13.5px; font-weight: 600; color: var(--text2); }
.trust-sub { font-size: 12px; color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 26px 32px; position: relative;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); transform: translateY(-3px); }
.service-card:hover .service-icon { background: var(--blue); color: #fff; }
.service-icon {
  width: 40px; height: 40px; background: var(--blue-soft); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--blue); transition: background 0.2s, color 0.2s;
}
.service-num { position: absolute; top: 22px; right: 22px; font-family: 'DM Mono', monospace; font-size: 11px; color: var(--blue-border); }
.service-title { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.service-desc { font-size: 13px; line-height: 1.65; color: var(--muted); }

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative; margin-top: 48px;
}
.process-connector {
  position: absolute; top: 27px;
  left: calc(12.5% + 13px); right: calc(12.5% + 13px);
  height: 1px; background: var(--blue-border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-dot {
  width: 54px; height: 54px; background: var(--bg);
  border: 2px solid var(--blue-border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-family: 'DM Mono', monospace; font-size: 12px; color: var(--blue);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.process-step:hover .process-dot { background: var(--blue); border-color: var(--blue); color: #fff; }
.process-step-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; padding: 0 8px; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 30px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); transform: translateY(-2px); }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-soft); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.why-title { font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

.numbers-section { background: var(--blue); padding: 64px 0; }
.number-val { font-size: 38px; font-weight: 700; color: #fff; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px; }
.number-val sup { font-size: 20px; vertical-align: super; opacity: 0.7; }
.number-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); }
.stars { display: flex; gap: 3px; }
.star { color: #f59e0b; font-size: 14px; }
.testimonial-quote { font-size: 14px; line-height: 1.7; color: var(--text2); font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-soft); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--blue); flex-shrink: 0;
}
.author-name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.author-role { font-size: 12px; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-lead { font-size: clamp(17px, 1.9vw, 22px); font-weight: 700; letter-spacing: -0.018em; line-height: 1.3; margin-bottom: 14px; }
.about-lead em { font-style: normal; color: var(--blue); }
.about-body { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--text2); line-height: 1.55; }
.about-icon {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: var(--blue-soft); border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center; color: var(--blue); margin-top: -1px;
}
.about-details { display: flex; flex-direction: column; gap: 8px; }
.detail-item {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 15px 20px; display: flex; justify-content: space-between; align-items: center;
  transition: border-color 0.15s;
}
.detail-item:hover { border-color: var(--blue-border); }
.detail-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.detail-value { font-size: 13.5px; color: var(--text); font-weight: 600; text-align: right; }
.detail-value a { color: var(--blue); text-decoration: none; }
.detail-value a:hover { text-decoration: underline; }

.cta-section {
  background: var(--blue); padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.05); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.cta-title { font-size: clamp(22px, 3vw, 36px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.12; color: #fff; margin-bottom: 14px; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--blue-dark); padding: 10px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; font-family: inherit; transition: background 0.15s, transform 0.15s; }
.btn-white:hover { background: #f0f4ff; transform: translateY(-1px); }
.btn-white-outline { color: rgba(255,255,255,0.9); padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 500; text-decoration: none; border: 1px solid rgba(255,255,255,0.35); transition: border-color 0.15s, background 0.15s; display: inline-flex; align-items: center; }
.btn-white-outline:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.1); }

footer { background: #263144; border-top: none; padding: 32px 0; }
footer .logo { color: #fff; }
.footer-slogan { font-size: 11.5px; font-style: italic; color: rgba(255,255,255,0.38); margin-top: 3px; }
.footer-info { font-size: 12px; color: rgba(255,255,255,0.45); text-align: center; line-height: 1.6; }
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(17,24,39,0.5);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg); border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.06);
  width: 100%; max-width: 520px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
  overflow: hidden;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  flex-shrink: 0;
}
.modal-title { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 3px; }
.modal-sub { font-size: 13px; color: var(--muted); }
.modal-close {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); flex-shrink: 0; transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--bg2); color: var(--text); }
.modal-body { padding: 24px 28px 28px; overflow-y: auto; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { font-size: 12.5px; font-weight: 600; color: var(--text2); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 13px;
  border: 1px solid var(--border2); border-radius: var(--radius);
  font-family: inherit; font-size: 14px; color: var(--text);
  background: var(--bg); outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: #9ca3af; }
.form-textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }

.form-turnstile { margin-top: 16px; display: flex; justify-content: center; }
.form-error {
  margin-top: 12px; padding: 10px 13px;
  background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c;
  border-radius: var(--radius); font-size: 13px;
  display: none;
}
.form-error.visible { display: block; }

.form-footer {
  margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.form-note { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.btn-submit {
  background: var(--blue); color: #fff; padding: 10px 26px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
  transition: background 0.15s, transform 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-submit.loading { opacity: 0.7; pointer-events: none; }

.form-success { display: none; text-align: center; padding: 16px 0; }
.form-success.visible { display: block; }
.success-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: #d1fae5; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: #059669;
}
.success-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.success-msg { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

.client-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.client-project-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.client-project-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); transform: translateY(-4px); }
.client-project-visual {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.client-project-visual-bg { position: absolute; inset: 0; }
.client-project-domain {
  position: relative; z-index: 1;
  font-family: 'DM Mono', monospace; font-size: 15px;
  color: rgba(255,255,255,0.9); letter-spacing: 0.02em;
  background: rgba(0,0,0,0.18); backdrop-filter: blur(4px);
  padding: 7px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.client-project-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.client-project-type {
  display: inline-block; background: var(--blue-soft); border: 1px solid var(--blue-border);
  color: var(--blue); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 14px; font-weight: 600;
  align-self: flex-start;
}
.client-project-name { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; }
.client-project-desc { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.client-project-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.client-project-tag {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 20px;
  padding: 3px 10px; font-size: 11.5px; font-family: 'DM Mono', monospace; color: var(--muted);
}
.client-project-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--blue); text-decoration: none; transition: gap 0.15s; margin-top: auto;
}
.client-project-link:hover { gap: 10px; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; border: 1px solid var(--border);
}
.product-card:hover { box-shadow: 0 12px 32px rgba(37,99,235,0.13); transform: translateY(-4px); }
.product-header { padding: 36px 36px 28px; position: relative; overflow: hidden; color: #fff; }
.product-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 18px;
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2);
}
.product-name { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 10px; }
.product-tagline { font-size: 14px; line-height: 1.6; opacity: 0.82; }
.product-body { padding: 24px 36px 30px; background: var(--bg); flex: 1; }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.product-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text2); line-height: 1.5; }
.product-check { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; }
.product-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 700; text-decoration: none; color: #fff;
  padding: 9px 20px; border-radius: var(--radius); transition: opacity 0.15s, transform 0.15s;
}
.product-link:hover { opacity: 0.87; transform: translateY(-1px); }
.product-bg-glyph {
  position: absolute; right: -14px; top: -10px;
  font-size: 110px; font-weight: 800; line-height: 1; letter-spacing: -0.05em;
  opacity: 0.08; pointer-events: none; user-select: none;
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 100px 20px 60px; min-height: auto; }
  .hero { min-height: auto; }
  .hero-illustration { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .numbers-section .container { grid-template-columns: 1fr 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .client-projects-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
  nav .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .trust-bar { justify-content: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .numbers-section { grid-template-columns: 1fr 1fr; gap: 24px; }
}
