:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef3fa;
  --surface-3: #f9fbfd;

  --text: #10233f;
  --text-soft: #203756;
  --muted: #5d6d85;

  --primary: #1e355a;
  --primary-dark: #14253f;
  --primary-light: #2a4a7a;
  --primary-2: #244b86;

  --accent: #ee7103;
  --accent-dark: #c95d00;
  --accent-light: #ff8a2a;

  --border: rgba(16, 35, 63, 0.10);
  --border-strong: rgba(16, 35, 63, 0.16);

  --shadow-sm: 0 10px 24px rgba(18, 35, 63, 0.06);
  --shadow-md: 0 18px 44px rgba(18, 35, 63, 0.10);
  --shadow-lg: 0 26px 70px rgba(18, 35, 63, 0.16);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1180px;
  --transition: 0.24s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    opacity var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 88px 0;
}

.section-overlap {
  margin-top: -54px;
  position: relative;
  z-index: 4;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(9, 18, 32, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(6, 14, 26, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(238, 113, 3, 0.20);
}

.nav-cta:hover {
  background: var(--accent-dark);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile menu */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 29;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 24, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.mobile-menu.is-open .mobile-overlay {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(12, 22, 40, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 100px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 28px 70px rgba(4, 8, 18, 0.50);
}

.mobile-menu.is-open .mobile-panel {
  transform: translateY(0);
}

.mobile-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-cta {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  min-height: 52px;
}

/* Eyebrow */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(238, 113, 3, 0.10);
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(238, 113, 3, 0.12);
}

.eyebrow-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Buttons */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 15px;
  font-weight: 800;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 14px 32px rgba(238, 113, 3, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(238, 113, 3, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

/* Hero Hybrid */

.hero-hybrid {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 14, 26, 0.72), rgba(9, 17, 32, 0.88)),
    radial-gradient(circle at 15% 20%, rgba(36, 75, 134, 0.34), transparent 35%),
    radial-gradient(circle at 85% 25%, rgba(238, 113, 3, 0.10), transparent 28%),
    url('img/Data-center.jpg') center/cover no-repeat;
  color: #fff;
}

.hero-hybrid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.14;
  pointer-events: none;
}

.hero-hybrid::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(246, 248, 251, 0), var(--bg));
}

.hero-hybrid-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 56px;
  align-items: center;
  padding: 76px 0 140px;
}

.hero-copy h1 {
  margin: 18px 0 12px;
  max-width: 680px;
  font-size: clamp(2.8rem, 4.8vw, 5.15rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.hero-subline {
  margin: 0 0 14px;
  color: #ffd4ad;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.hero-text {
  margin: 0;
  max-width: 640px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-btn-row {
  margin-top: 30px;
}

.hero-brand-row {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-brand-row>span {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-brand-list {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 24px;
  border-radius: 12px;
}

.hero-brand-list img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.hero-brand-list span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(8, 16, 29, 0.28);
}

.hero-media {
  margin: -6px -6px 22px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 44px rgba(8, 16, 29, 0.22);
}

.hero-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.mini-list {
  display: grid;
  gap: 12px;
}

.mini-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(238, 113, 3, 0.18);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  color: var(--accent-light);
  font-weight: 800;
  flex: 0 0 auto;
}

.mini-item strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.mini-item span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.76);
}

/* Quick services */

.quick-services {
  position: relative;
}

.quick-services-head {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.quick-services-head h2 {
  margin: 16px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.quick-services-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.qs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.qs-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.qs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cisco-blue {
  color: #049fd9;
}

.qs-card:hover .qs-image img {
  transform: scale(1.05);
}

.qs-content {
  padding: 24px 22px;
}

.qs-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.15;
  color: var(--text);
}

.qs-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Floating benefits */

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

.floating-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.fc-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 800;
}

.floating-card strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Section base */

.pc-section {
  padding: 88px 0;
}

.pc-section-soft {
  background: linear-gradient(180deg, rgba(30, 53, 90, 0.03), rgba(30, 53, 90, 0.06));
}

.pc-section-dark {
  background: linear-gradient(180deg, #14253f 0%, #1a3051 100%);
  color: #fff;
}

.pc-container {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
}

.pc-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.pc-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pc-section-head h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.pc-section-head p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.section-head-light h2,
.section-head-light p {
  color: #fff;
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.76);
}

/* Zig zag */

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

.zigzag-row.reverse {
  direction: rtl;
}

.zigzag-row.reverse>* {
  direction: ltr;
}

.zz-content h3 {
  margin: 16px 0 14px;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.zz-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.zz-bullets {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.zz-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-soft);
  font-weight: 600;
}

.zz-bullet::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.zz-visual {
  border-radius: 28px;
  min-height: 450px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.zz-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.10), rgba(10, 18, 32, 0.72));
}

.zz-visual-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 600;
}

/* Bento */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.bn {
  border-radius: 24px;
  padding: 2.6rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.bn:hover {
  transform: translateY(-4px);
}

.bn-hero {
  grid-column: span 7;
  background:
    linear-gradient(to bottom, rgba(20, 37, 63, 0.15) 0%, rgba(14, 29, 52, 0.98) 100%),
    url('img/trabajo.png') center/cover no-repeat;
  color: #fff;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bn-hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: rgba(238, 113, 3, 0.08);
}

.bn-hero-badge {
  position: absolute;
  top: 2rem;
  left: 2.4rem;
  font-size: 3.6rem;
  color: #fff;
}

.bn-hero h3 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
  z-index: 1;
}

.bn-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bn-stat {
  grid-column: span 5;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 35, 63, 0.10);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.stat-suffix {
  font-size: 2rem;
}

.bn-stat h4,
.bn-response h4 {
  margin: 0 0 0.5rem;
  font-size: 1.24rem;
  color: var(--text);
}

.bn-stat p,
.bn-response p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bn-response {
  grid-column: span 5;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 35, 63, 0.10);
  box-shadow: var(--shadow-sm);
}

.bn-icon {
  width: 54px;
  height: 54px;
  background: rgba(238, 113, 3, 0.10);
  border: 1px solid rgba(238, 113, 3, 0.14);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.bn-dark {
  grid-column: span 7;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
  backdrop-filter: blur(12px);
}

.bn-dark-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.bn-dark h4 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: #fff;
}

.bn-dark p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

/* Diagnostic */

.diagnostic-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2.4rem;
  box-shadow: var(--shadow-sm);
}

.diagnostic-copy h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
}

.diagnostic-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.diagnostic-list {
  display: grid;
  gap: 14px;
}

.diagnostic-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface-3);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.5;
}

/* Contact */

.contact-section {
  padding: 88px 0;
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-grid h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
}

.contact-grid p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.cl-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: var(--surface);
  border-radius: 18px;
  font-weight: 600;
  color: var(--text-soft);
  border: 1px solid rgba(16, 35, 63, 0.06);
  box-shadow: var(--shadow-sm);
}

.cl-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(238, 113, 3, 0.10);
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
}

.cl-text-label {
  font-size: 0.78rem;
  color: #7c8899;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cl-text-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  line-height: 1.15;
}

.contact-form-card>p {
  margin: 0 0 22px;
  color: var(--muted);
}

.pc-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

.pc-input {
  width: 100%;
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 14px;
  min-height: 56px;
  padding: 0 16px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 1rem;
}

.pc-input::placeholder {
  color: #7a8799;
}

.pc-input:focus {
  border-color: rgba(30, 53, 90, 0.34);
  box-shadow: 0 0 0 4px rgba(30, 53, 90, 0.08);
}

.pc-input.error {
  border-color: rgba(239, 68, 68, 0.52);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10);
}

textarea.pc-input {
  min-height: 150px;
  padding: 16px;
  resize: vertical;
}

.pc-submit {
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(238, 113, 3, 0.22);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.pc-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(238, 113, 3, 0.28);
}

.pc-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.form-msg {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.96rem;
  display: none;
}

.form-msg.success {
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.24);
  color: #14532d;
}

.form-msg.error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #7f1d1d;
}

/* Footer */

.pc-footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pc-footer-inner {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

/* Motion */

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

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0.04s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: 0.10s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 0.22s;
}

.stagger .reveal:nth-child(5) {
  transition-delay: 0.28s;
}

.stagger .reveal:nth-child(6) {
  transition-delay: 0.34s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Focus */

.btn:focus-visible,
.nav-cta:focus-visible,
.nav-links a:focus-visible,
.pc-input:focus-visible,
textarea:focus-visible,
.nav-hamburger:focus-visible {
  outline: 3px solid rgba(238, 113, 3, 0.28);
  outline-offset: 3px;
}

/* Responsive */

@media (max-width: 1180px) {

  .hero-hybrid-inner,
  .zigzag-row,
  .zigzag-row.reverse,
  .diagnostic-box,
  .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }

  .quick-services-grid {
    gap: 20px;
  }
}

@media (max-width: 1080px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bn-hero,
  .bn-stat,
  .bn-response,
  .bn-dark {
    grid-column: span 1;
  }

  .floating-benefits {
    grid-template-columns: 1fr;
  }

  .zigzag-row {
    margin-bottom: 5rem;
  }
}

@media (max-width: 760px) {

  .section,
  .pc-section,
  .contact-section {
    padding: 60px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 70px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .brand img {
    height: 46px;
  }

  .hero-hybrid-inner {
    padding: 44px 0 110px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    max-width: 100%;
  }

  .hero-subline,
  .hero-text {
    font-size: 0.98rem;
  }

  .hero-btn-row {
    flex-direction: column;
  }

  .hero-btn-row .btn {
    width: 100%;
  }

  .quick-services-grid {
    grid-template-columns: 1fr;
  }

  .pc-container,
  .pc-footer-inner {
    width: min(calc(100% - 28px), 1180px);
  }

  .zz-visual {
    min-height: 300px;
  }

  .contact-form-card,
  .diagnostic-box,
  .bn,
  .floating-card,
  .qs-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pc-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.8rem);
  }

  .btn,
  .pc-submit {
    min-height: 52px;
    font-size: 0.94rem;
  }

  .quick-services-head h2,
  .pc-section-head h2,
  .diagnostic-copy h2,
  .contact-grid h2 {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
  }

  .bn-hero-badge {
    font-size: 3rem;
    left: 1.5rem;
    top: 1.5rem;
  }
}