/* ============================================
   PDS GROUP Guatemala — White Template
   ============================================ */

:root {
  --color-primary: #C0392B;
  --color-primary-dark: #922B21;
  --color-cyan: #1E5A9C;
  --color-cyan-bright: #2471A3;
  --color-cyan-glow: rgba(30, 90, 156, 0.2);
  --color-purple: #1E4976;
  --color-purple-light: #2D6AAD;
  --color-accent: #E67E22;
  --color-success: #27AE60;
  --color-text: #0F2744;
  --color-text-muted: #5A6B7D;
  --color-text-light: #8A9AAB;
  --color-bg: #FFFFFF;
  --color-bg-elevated: #F5F8FB;
  --color-bg-card: #FFFFFF;
  --color-bg-card-hover: #F0F6FC;
  --color-bg-dark: #0F2744;
  --color-border: #E2EAF2;
  --color-border-light: #F0F4F8;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Orbitron', 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 39, 68, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 39, 68, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 39, 68, 0.1);
  --shadow-cyan: 0 8px 24px rgba(30, 90, 156, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero--photo .text-gradient {
  background: linear-gradient(135deg, #FF8A7A 0%, #FFC857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(15, 39, 68, 0.25));
}

.text-cyan { color: var(--color-cyan); }
.text-red { color: var(--color-primary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm { padding: 8px 16px; font-size: 0.875rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.btn--cyan {
  background: var(--color-cyan);
  color: #FFFFFF;
  border-color: var(--color-cyan);
  font-weight: 700;
}
.btn--cyan:hover {
  background: var(--color-cyan-bright);
  border-color: var(--color-cyan-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--color-cyan-glow);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background: rgba(30, 90, 156, 0.06);
}

.btn--white {
  background: white;
  color: var(--color-bg);
  border-color: white;
}
.btn--white:hover {
  background: var(--color-cyan);
  color: var(--color-bg);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30, 90, 156, 0.08);
  border: 1px solid rgba(30, 90, 156, 0.18);
  color: var(--color-cyan);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo--footer .logo__img {
  height: 72px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-cyan);
  background: rgba(30, 90, 156, 0.08);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.header__phone:hover { color: var(--color-cyan); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 60px) 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #060D1A 0%, #0A1628 50%, #060D1A 100%);
}

.hero__circuit {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.3) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}

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

.hero__glow--1 {
  width: 400px;
  height: 400px;
  background: rgba(34, 211, 238, 0.12);
  top: 10%;
  right: 10%;
}

.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.1);
  bottom: 20%;
  left: 5%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-cyan);
  line-height: 1.2;
}

.hero__stat span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero__inner--centered {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero__content--centered {
  max-width: 720px;
  margin: 0 auto;
}

.hero__subtitle--centered {
  margin-left: auto;
  margin-right: auto;
}

.hero__actions--centered {
  justify-content: center;
}

.hero__stats--centered {
  justify-content: center;
}

.hero {
  min-height: 85vh;
}

.hero--photo {
  min-height: 92vh;
  align-items: flex-end;
  padding: calc(var(--header-height) + 12px) 0 72px;
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 39, 68, 0.22) 0%,
      rgba(15, 39, 68, 0.18) 22%,
      rgba(15, 39, 68, 0.5) 58%,
      rgba(245, 248, 251, 0.97) 100%
    );
}

.hero--photo .hero__inner {
  width: 100%;
}

.hero--photo .hero__content {
  padding-top: clamp(140px, 26vh, 260px);
}

.hero--photo .hero__title {
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(15, 39, 68, 0.35);
}

.hero--photo .hero__subtitle {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(15, 39, 68, 0.3);
}

.hero--photo .badge {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--color-cyan);
  box-shadow: var(--shadow-md);
}

.hero--photo .btn--outline {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
}

.hero--photo .btn--outline:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--color-cyan);
}

.hero--photo .btn--cyan {
  box-shadow: 0 4px 20px rgba(15, 39, 68, 0.35);
}

/* Icon services grid */
.icon-services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: stretch;
}

.icon-service {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  aspect-ratio: 1;
}

.icon-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.icon-service:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 90, 156, 0.35);
  box-shadow: var(--shadow-cyan);
}

.icon-service--portal {
  border-color: rgba(30, 90, 156, 0.3);
  box-shadow: 0 0 0 1px rgba(30, 90, 156, 0.08);
}

.icon-service--portal:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 8px 28px rgba(30, 90, 156, 0.2);
}

.about--simple {
  grid-template-columns: auto 1fr;
  gap: 48px;
}

/* Services 4-col */
.services-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.service-card__icon--cyan {
  background: rgba(34, 211, 238, 0.12);
  color: var(--color-cyan);
}

.services-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}

.services-types__item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.services-types__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.services-types__item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Portal card */
.portal-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-cyan);
}

.portal-card__icon {
  width: 80px;
  height: 80px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portal-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-cyan);
}

.portal-card__content .section__title {
  text-align: left;
  margin-bottom: 12px;
}

.portal-card__content p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 520px;
}

/* About simplified */
.about__badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__badge-wrap .about__badge {
  position: static;
  padding: 32px 40px;
}

.about__badge-wrap .about__badge strong {
  font-size: 3rem;
}

/* Footer simple */
.footer__inner--simple {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 20px;
}

.footer__inner--simple .logo {
  justify-content: center;
}

.footer__inner--simple p {
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 8px;
}

.footer__nav a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--color-cyan); }

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: #25D366;
  transition: opacity var(--transition);
}

.footer__whatsapp:hover { opacity: 0.8; }

/* Hero Visual (legacy) */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-cyan), var(--shadow-lg);
}

.hero__image {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}

.hero__image-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-cyan), var(--color-purple));
  opacity: 0.2;
  z-index: -1;
  filter: blur(20px);
}

.status-panel {
  position: absolute;
  display: flex;
  gap: 16px;
  background: rgba(15, 31, 56, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}

.status-panel--top { top: 20px; right: -20px; animation: floatSide 5s ease-in-out infinite; }
.status-panel--bottom { bottom: 40px; left: -20px; animation: floatSide 5s ease-in-out infinite 1s; }

.status-panel__item { text-align: center; }

.status-panel__label {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.status-panel__value {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: white;
}

.status-panel__value--ok { color: var(--color-success); }

@keyframes floatSide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

/* Trust Bar */
.trust-bar {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.trust-bar__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-cyan);
  flex-shrink: 0;
}

/* Sections */
.section { padding: 96px 0; }

.section--gray { background: var(--color-bg-elevated); }

.section--dark {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section--check {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__header--light .section__title { color: white; }
.section__header--light .section__desc { color: var(--color-text-muted); }
.section__header--light .section__label {
  background: rgba(34, 211, 238, 0.1);
  border-color: rgba(34, 211, 238, 0.25);
  color: var(--color-cyan);
}

.section__label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(30, 90, 156, 0.08);
  border: 1px solid rgba(30, 90, 156, 0.16);
  color: var(--color-cyan);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Check Online */
.check-online {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.check-online__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.check-online__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.check-online__features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-online__feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-online__feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-cyan);
}

.check-online__features strong {
  display: block;
  font-size: 0.9375rem;
  color: white;
  margin-bottom: 2px;
}

.check-online__features span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Dashboard Preview */
.dashboard-preview {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-cyan), var(--shadow-lg);
}

.dashboard-preview__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--color-border);
}

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

.dashboard-preview__dot--red { background: #EF4444; }
.dashboard-preview__dot--yellow { background: #F59E0B; }
.dashboard-preview__dot--green { background: #34D399; }

.dashboard-preview__title {
  margin-left: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.dashboard-preview__body { padding: 24px; }

.dashboard-preview__metric {
  margin-bottom: 16px;
}

.dashboard-preview__metric span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.dashboard-preview__metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  margin: 4px 0 8px;
}

.dashboard-preview__bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.dashboard-preview__bar div {
  height: 100%;
  background: linear-gradient(90deg, var(--color-cyan), var(--color-purple));
  border-radius: 2px;
}

.dashboard-preview__bar--warn div { background: var(--color-accent); }

.dashboard-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.dashboard-preview__cell {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.2);
}

.dashboard-preview__cell small {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.dashboard-preview__cell strong {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.dashboard-preview__cell--ok strong { color: var(--color-success); }
.dashboard-preview__cell--warn {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.08);
}
.dashboard-preview__cell--warn strong { color: var(--color-accent); }

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

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card__icon--red { background: rgba(230, 57, 70, 0.15); color: #F87171; }
.service-card__icon--blue { background: rgba(34, 211, 238, 0.12); color: var(--color-cyan); }
.service-card__icon--amber { background: rgba(245, 158, 11, 0.12); color: #FBBF24; }
.service-card__icon--green { background: rgba(52, 211, 153, 0.12); color: var(--color-success); }
.service-card__icon--purple { background: rgba(139, 92, 246, 0.12); color: var(--color-purple-light); }
.service-card__icon--teal { background: rgba(20, 184, 166, 0.12); color: #2DD4BF; }

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-cyan);
  transition: color var(--transition);
}

.service-card__link:hover { color: var(--color-cyan-bright); }

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image { position: relative; }

.about__image-main {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.about__image-placeholder svg { width: 160px; height: 160px; }

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--color-cyan);
  color: #FFFFFF;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cyan);
  text-align: center;
}

.about__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about__badge span {
  font-size: 0.8125rem;
  font-weight: 600;
}

.about__text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__text strong { color: var(--color-cyan); }

.about__features {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

.about__features svg {
  width: 20px;
  height: 20px;
  color: var(--color-cyan);
  flex-shrink: 0;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: var(--shadow-cyan);
  transform: translateY(-4px);
}

.product-card--featured {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: var(--shadow-cyan);
}

.product-card__visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card__visual--tecno {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(34, 211, 238, 0.1) 100%);
}

.product-card__visual--abc { background: linear-gradient(135deg, rgba(230, 57, 70, 0.15), rgba(230, 57, 70, 0.05)); }
.product-card__visual--co2 { background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(34, 211, 238, 0.05)); }
.product-card__visual--foam { background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05)); }
.product-card__visual--sign { background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(52, 211, 153, 0.05)); }

.product-card__type {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--color-cyan);
  color: var(--color-bg);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.06em;
}

.product-card__body { padding: 24px; }

.product-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.product-card__body p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-card__price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-cyan);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 24px;
}

.process-step__number {
  width: 56px;
  height: 56px;
  background: rgba(34, 211, 238, 0.1);
  border: 2px solid rgba(34, 211, 238, 0.3);
  color: var(--color-cyan);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.testimonial {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.testimonial:hover {
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial footer strong {
  display: block;
  font-size: 0.9375rem;
  color: white;
  margin-bottom: 2px;
}

.testimonial footer span {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #0A1628 0%, #0F2744 50%, rgba(34, 211, 238, 0.15) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(34, 211, 238, 0.1), transparent);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta__content p {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 480px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__item-icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 90, 156, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-cyan);
}

.contact__item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.contact__item span,
.contact__item a {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact__item a:hover { color: var(--color-cyan); }

.contact__form {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 3px rgba(30, 90, 156, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-text-light); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select option { background: var(--color-bg-card); }

/* Footer */
.footer {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer .logo__img { height: 80px; }

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links a {
  display: block;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__links a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom p { font-size: 0.8125rem; }

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--color-text-muted);
}

.footer__social a:hover {
  background: var(--color-cyan);
  color: var(--color-bg);
  border-color: var(--color-cyan);
}

.footer__social svg { width: 16px; height: 16px; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.form-success { text-align: center; padding: 48px 24px; }

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--color-success);
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-success p { color: var(--color-text-muted); }

/* Responsive */
@media (max-width: 1100px) {
  .icon-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .about,
  .about--simple,
  .contact { grid-template-columns: 1fr; gap: 48px; }

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

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

  .portal-card {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }

  .portal-card__content .section__title { text-align: center; }
  .portal-card__content p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .logo__img { height: 48px; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

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

  .nav__link { width: 100%; padding: 12px 16px; }

  .header__phone span { display: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: auto; padding-bottom: 48px; }
  .hero--photo {
    min-height: 100svh;
    padding-bottom: 56px;
  }
  .hero__photo { object-position: center 8%; }
  .hero--photo .hero__content { padding-top: clamp(100px, 18vh, 160px); }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .status-panel { display: none; }

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

  .icon-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .trust-bar__inner { gap: 16px 24px; }
  .dashboard-preview__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .icon-services { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}
