:root {
  --deep-navy: #0a1020;
  --electric-blue: #066fff;
  --silver: #ccc6d4;
  --charcoal: #1a1f28;
  --white: #ffffff;
  --muted: rgba(204, 198, 212, 0.72);
  --faint: rgba(204, 198, 212, 0.12);
  --glass: rgba(26, 31, 40, 0.72);
  --glass-strong: rgba(26, 31, 40, 0.88);
  --blue-soft: rgba(6, 111, 255, 0.14);
  --blue-glow: 0 0 36px rgba(6, 111, 255, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --page-start: #060b17;
  --page-end: #080d19;
  --header-bg: rgba(10, 16, 32, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --field-bg: rgba(3, 7, 16, 0.6);
  --modal-overlay: rgba(3, 7, 16, 0.78);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 76px;
}

[data-theme="light"] {
  --deep-navy: #f5f8ff;
  --silver: #243044;
  --charcoal: #ffffff;
  --white: #07111f;
  --muted: rgba(36, 48, 68, 0.74);
  --faint: rgba(7, 17, 31, 0.12);
  --glass: rgba(255, 255, 255, 0.82);
  --glass-strong: rgba(255, 255, 255, 0.96);
  --blue-soft: rgba(6, 111, 255, 0.1);
  --shadow: 0 22px 60px rgba(22, 48, 88, 0.15);
  --page-start: #f8fbff;
  --page-end: #eaf1ff;
  --header-bg: rgba(248, 251, 255, 0.86);
  --surface-soft: rgba(6, 111, 255, 0.055);
  --field-bg: rgba(255, 255, 255, 0.78);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(6, 111, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 4%, rgba(204, 198, 212, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--page-start) 0%, var(--deep-navy) 44%, var(--page-end) 100%);
  color: var(--silver);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-width: 320px;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.section {
  padding: 72px 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
}

.section-heading p,
.contact-copy p {
  color: var(--muted);
  margin: 16px 0 0;
  font-size: 1rem;
}

.eyebrow {
  color: var(--electric-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.sr-only {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  position: absolute;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(204, 198, 212, 0.1);
  background: var(--header-bg);
  backdrop-filter: blur(22px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(204, 198, 212, 0.16);
  border-radius: 8px;
}

.brand span {
  white-space: nowrap;
}

.brand strong {
  color: var(--electric-blue);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--silver);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: fixed;
  inset: var(--header-height) 16px auto;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(204, 198, 212, 0.14);
  border-radius: 10px;
  background: var(--glass-strong);
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid rgba(204, 198, 212, 0.18);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--silver);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(6, 111, 255, 0.48);
  transform: translateY(-1px);
}

.theme-toggle-track {
  width: 40px;
  height: 22px;
  position: relative;
  border-radius: 999px;
  background: rgba(6, 111, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(6, 111, 255, 0.24);
}

.theme-toggle-thumb {
  width: 18px;
  height: 18px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--silver), var(--white));
  transition: transform 0.2s ease;
}

[data-theme="light"] .theme-toggle-thumb {
  transform: translateX(18px);
  background: linear-gradient(135deg, var(--electric-blue), #65a7ff);
}

.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a:not(.btn) {
  color: var(--muted);
  padding: 10px 8px;
  transition: color 0.2s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--electric-blue), #2d8cff);
  color: var(--white);
  box-shadow: 0 0 22px rgba(6, 111, 255, 0.36);
}

.btn-secondary {
  border-color: rgba(204, 198, 212, 0.28);
  background: rgba(255, 255, 255, 0.035);
  color: var(--silver);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(204, 198, 212, 0.62);
  box-shadow: 0 0 22px rgba(204, 198, 212, 0.08);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 11vw, 5.8rem);
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  margin: 22px 0 0;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span,
.audience-list span,
.pill {
  border: 1px solid rgba(6, 111, 255, 0.24);
  border-radius: 6px;
  background: rgba(6, 111, 255, 0.1);
  color: rgba(229, 238, 255, 0.86);
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-shell,
.service-card,
.client-card,
.project-card,
.testimonial-card,
.process-step,
.lead-form,
.contact-note,
.modal-panel {
  border: 1px solid rgba(204, 198, 212, 0.12);
  background: linear-gradient(180deg, rgba(26, 31, 40, 0.78), rgba(12, 18, 33, 0.74));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 18px;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -100px;
  background: radial-gradient(circle, rgba(6, 111, 255, 0.36), transparent 68%);
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 16px;
  position: relative;
}

.dashboard-top div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--electric-blue);
  box-shadow: 0 0 14px var(--electric-blue);
}

.dashboard-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.metric {
  min-height: 112px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(204, 198, 212, 0.1);
  border-radius: 8px;
  background: var(--surface-soft);
}

.metric.featured {
  background: linear-gradient(135deg, rgba(6, 111, 255, 0.24), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 20px rgba(6, 111, 255, 0.14);
}

.metric span,
.metric small {
  color: var(--muted);
  font-size: 0.8rem;
}

.metric strong {
  color: var(--white);
  font-size: clamp(1.55rem, 6vw, 2.1rem);
  line-height: 1;
}

.dashboard-graph {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 14px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(204, 198, 212, 0.1);
  border-radius: 8px;
  background: var(--surface-soft);
}

.dashboard-graph span {
  flex: 1;
  min-width: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #65a7ff, var(--electric-blue));
  box-shadow: 0 0 18px rgba(6, 111, 255, 0.24);
  animation: pulseBar 3.6s ease-in-out infinite;
}

.audience-band {
  border-block: 1px solid rgba(204, 198, 212, 0.1);
  background: var(--surface-soft);
  padding: 18px 0;
}

.audience-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.audience-list::-webkit-scrollbar {
  display: none;
}

.audience-list span {
  flex: 0 0 auto;
  border-color: rgba(204, 198, 212, 0.13);
  background: rgba(26, 31, 40, 0.56);
}

.service-grid,
.client-grid,
.project-grid,
.testimonial-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.service-card,
.client-card,
.project-card,
.testimonial-card,
.process-step,
.lead-form {
  border-radius: 10px;
  padding: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 356px;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 111, 255, 0.45), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card.highlighted {
  border-color: rgba(6, 111, 255, 0.32);
  box-shadow: var(--shadow), inset 0 0 24px rgba(6, 111, 255, 0.08);
}

.service-card h3,
.client-card h3,
.process-step h3 {
  color: var(--white);
  margin: 14px 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.service-card p,
.client-card p,
.process-step p {
  color: var(--muted);
  margin: 0;
}

.service-card ul {
  display: grid;
  gap: 8px;
  list-style: none;
  padding: 16px 0 0;
  margin: 0 0 18px;
}

.service-card li {
  color: rgba(204, 198, 212, 0.84);
  font-size: 0.94rem;
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--electric-blue);
  box-shadow: 0 0 10px rgba(6, 111, 255, 0.7);
}

.service-card a {
  color: var(--white);
  font-weight: 800;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6, 111, 255, 0.32);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 111, 255, 0.24), rgba(204, 198, 212, 0.05));
  position: relative;
  box-shadow: inset 0 0 18px rgba(6, 111, 255, 0.12);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  background: var(--electric-blue);
  box-shadow: 0 0 12px rgba(6, 111, 255, 0.55);
}

.service-icon.crm::before {
  width: 24px;
  height: 2px;
  left: 12px;
  top: 17px;
}

.service-icon.crm::after {
  width: 18px;
  height: 2px;
  left: 12px;
  top: 28px;
}

.service-icon.ticket::before {
  width: 22px;
  height: 18px;
  left: 13px;
  top: 15px;
  border: 2px solid var(--electric-blue);
  background: transparent;
}

.service-icon.ticket::after {
  width: 8px;
  height: 8px;
  right: 10px;
  top: 10px;
  border-radius: 999px;
}

.service-icon.security::before {
  width: 22px;
  height: 25px;
  left: 13px;
  top: 11px;
  clip-path: polygon(50% 0, 100% 18%, 86% 82%, 50% 100%, 14% 82%, 0 18%);
}

.service-icon.security::after {
  width: 8px;
  height: 8px;
  left: 20px;
  top: 21px;
  border-radius: 999px;
  background: var(--deep-navy);
  box-shadow: none;
}

.service-icon.ti::before {
  width: 24px;
  height: 15px;
  left: 12px;
  top: 12px;
  border: 2px solid var(--electric-blue);
  background: transparent;
}

.service-icon.ti::after {
  width: 18px;
  height: 2px;
  left: 15px;
  bottom: 12px;
}

.service-icon.network::before {
  width: 7px;
  height: 7px;
  left: 20px;
  top: 20px;
  border-radius: 999px;
}

.service-icon.network::after {
  width: 30px;
  height: 30px;
  left: 8px;
  top: 8px;
  border: 2px solid var(--electric-blue);
  border-radius: 999px;
  background: transparent;
}

.service-icon.dev::before {
  width: 24px;
  height: 2px;
  left: 12px;
  top: 23px;
  transform: rotate(-28deg);
}

.service-icon.dev::after {
  width: 24px;
  height: 2px;
  left: 12px;
  top: 23px;
  transform: rotate(28deg);
}

.client-section {
  background: linear-gradient(180deg, transparent, rgba(6, 111, 255, 0.045), transparent);
}

.project-section {
  background: linear-gradient(180deg, rgba(6, 111, 255, 0.04), transparent 40%, rgba(204, 198, 212, 0.035));
}

.project-card {
  min-height: 420px;
  display: grid;
  gap: 14px;
  align-content: start;
  overflow: hidden;
}

.project-visual {
  min-height: 170px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(204, 198, 212, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 24px, rgba(204, 198, 212, 0.06) 25px),
    linear-gradient(0deg, transparent 24px, rgba(204, 198, 212, 0.06) 25px),
    rgba(6, 111, 255, 0.08);
  background-size: 26px 26px;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 111, 255, 0.82), rgba(101, 167, 255, 0.24));
  box-shadow: 0 0 28px rgba(6, 111, 255, 0.2);
}

.project-visual::before {
  width: 58%;
  height: 46%;
  left: 18px;
  top: 22px;
}

.project-visual::after {
  width: 34%;
  height: 28%;
  right: 18px;
  bottom: 22px;
}

.crm-panel::before {
  clip-path: polygon(0 0, 100% 0, 100% 60%, 74% 60%, 74% 100%, 0 100%);
}

.ticket-panel::before {
  width: 72%;
  height: 18px;
  top: 34px;
  box-shadow: 0 36px 0 rgba(6, 111, 255, 0.48), 0 72px 0 rgba(6, 111, 255, 0.25);
}

.security-panel::before {
  width: 92px;
  height: 106px;
  left: calc(50% - 46px);
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.network-panel::before {
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow:
    -58px -38px 0 rgba(6, 111, 255, 0.62),
    64px -28px 0 rgba(6, 111, 255, 0.5),
    -42px 48px 0 rgba(6, 111, 255, 0.42),
    54px 42px 0 rgba(6, 111, 255, 0.58);
}

.project-card h3,
.testimonial-card strong {
  color: var(--white);
}

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

.project-card p,
.testimonial-card p {
  color: var(--muted);
  margin: 0;
}

.project-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 0;
}

.project-card dl div {
  padding: 12px;
  border: 1px solid rgba(204, 198, 212, 0.12);
  border-radius: 8px;
  background: var(--surface-soft);
}

.project-card dt {
  color: var(--electric-blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card dd {
  margin: 2px 0 0;
  color: var(--white);
  font-weight: 800;
}

.testimonial-card {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.testimonial-card p {
  font-size: 1.04rem;
}

.testimonial-card div {
  display: grid;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid rgba(204, 198, 212, 0.12);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.client-card,
.process-step {
  min-height: 180px;
}

.process-step {
  position: relative;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6, 111, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 111, 255, 0.16);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  gap: 28px;
}

.contact-note {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  color: var(--muted);
}

.contact-note strong {
  color: var(--white);
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

label {
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(204, 198, 212, 0.16);
  border-radius: 6px;
  background: var(--field-bg);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 3px rgba(6, 111, 255, 0.14);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #ff8a8a;
}

.error-message {
  min-height: 18px;
  color: #ffb4b4;
  font-size: 0.78rem;
}

.full {
  width: 100%;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(204, 198, 212, 0.1);
  background: var(--header-bg);
}

.footer-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.footer p {
  margin: 16px 0 4px;
  color: var(--white);
  font-weight: 700;
}

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

.footer-links {
  display: grid;
  gap: 10px;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: var(--modal-overlay);
  backdrop-filter: blur(18px);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  width: min(100%, 680px);
  position: relative;
  border-radius: 12px;
  padding: 24px;
}

.modal-panel h2 {
  color: var(--white);
  margin: 0;
}

.modal-panel p {
  color: var(--muted);
}

.modal-panel textarea {
  min-height: 210px;
  margin: 10px 0 16px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(204, 198, 212, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.copy-status {
  min-height: 22px;
  margin: 10px 0 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 36px);
  min-height: 52px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(204, 198, 212, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, #19c463, #0f8f49);
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(15, 143, 73, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(15, 143, 73, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@keyframes pulseBar {
  0%,
  100% {
    filter: brightness(0.94);
  }
  50% {
    filter: brightness(1.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal.reveal-pending {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 620px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .service-grid,
  .client-grid,
  .project-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lead-form .full,
  .form-field.full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding-right: 12px;
    font-size: 0.9rem;
  }
}

@media (min-width: 1080px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 96px 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  }

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

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

  .contact-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
  }

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

@media (min-width: 1080px) {
  .hero {
    padding-top: 72px;
  }

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

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

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