@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-navy: #0a1733;
  --color-navy-dark: #051336;
  --color-navy-light: #1a2a52;
  --color-green: #95d22c;
  --color-green-dark: #7fb821;
  --color-blue: #2c7be5;
  --color-blue-light: #4a90e2;
  --color-yellow: #fbbf24;
  --color-white: #ffffff;
  --color-gray-50: #f8fafc;
  --color-gray-100: #f1f5f9;
  --color-gray-200: #e2e8f0;
  --color-gray-300: #cbd5e1;
  --color-gray-400: #94a3b8;
  --color-gray-500: #64748b;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1e293b;
  --color-gray-900: #0f172a;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

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

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title .highlight {
  color: var(--color-green);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-navy);
  border-color: var(--color-green);
}

.btn-primary:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(149, 210, 44, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.btn-blue:hover {
  background: #1e5fc4;
  border-color: #1e5fc4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 123, 229, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease var(--reveal-delay, 0ms), transform 0.8s ease var(--reveal-delay, 0ms);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background-image: url('../img/logo-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 0.5px;
}

.logo-text .tagline {
  font-size: 0.65rem;
  color: var(--color-text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-700);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--color-navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-navy);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

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

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 600px;
  margin-top: var(--header-height);
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url('../img/hero-server.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-navy) 30%, transparent 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(270deg, transparent 0%, rgba(10, 23, 51, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--color-white);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: var(--color-green);
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-tagline span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-tagline .accent-green {
  color: var(--color-green);
}

.hero-tagline .accent-blue {
  color: var(--color-blue-light);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.featured-services {
  background: var(--color-white);
  padding: 80px 0 60px;
}

.featured-services .section-title {
  font-size: 1.8rem;
}

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

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.2) 100%);
}

.service-card-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  height: 60px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service-card-icon.green {
  background: var(--color-green);
}

.service-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 2;
}

.service-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.service-card-title.green {
  color: var(--color-green);
}

.service-card-text {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.services-section {
  background: var(--color-gray-50);
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-md);
  transition: transform 0.15s ease-out, background-color 0.15s ease-out;
  cursor: pointer;
  position: relative;
}

.service-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-gray-200);
}

.service-item:hover {
  background: var(--color-gray-50);
  transform: translateY(-4px);
}

.service-item-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-blue);
}

.service-item-icon.green {
  color: var(--color-green);
}

.service-item-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.service-item-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.service-item-text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.technical-section {
  background: var(--color-navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.technical-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
}

.technical-image {
  background-image: url('../img/technical-team.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.technical-content {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 50px 40px;
}

.technical-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.technical-content h2 .highlight {
  color: var(--color-green);
}

.technical-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-green);
  color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.modalities-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  margin-left: 0;
}

.modalities-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.modalities-card h3 .highlight {
  color: var(--color-green);
}

.modalities-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modality-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.modality-item:last-child {
  border-bottom: none;
}

.modality-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modality-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
}

.why-section {
  padding: 80px 0;
  background: var(--color-white);
}

.why-section .section-title {
  font-size: 1.8rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.why-item {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  transition: background-color 0.12s ease-out, transform 0.12s ease-out;
  position: relative;
}

.why-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--color-gray-200);
}

.why-item:hover {
  background: var(--color-gray-50);
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.why-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-text {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.cta-footer {
  background: var(--color-navy);
  padding: 60px 0;
  color: var(--color-white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.cta-message {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-message-icon {
  width: 50px;
  height: 50px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-message-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 2;
}

.cta-message h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.cta-message p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-contact-title {
  color: var(--color-green);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-buttons .btn {
  width: 100%;
  justify-content: center;
}

.whatsapp-btn {
  background: var(--color-green) !important;
  color: var(--color-navy) !important;
  border-color: var(--color-green) !important;
}

.whatsapp-btn:hover {
  background: var(--color-green-dark) !important;
}

@media (max-width: 1024px) {
  .hero-bg {
    width: 50%;
    opacity: 0.4;
  }
  .hero-bg::before {
    background: linear-gradient(90deg, var(--color-navy) 0%, var(--color-navy) 50%, transparent 100%);
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-item:nth-child(4n)::after {
    display: none;
  }
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-item:nth-child(3n)::after {
    display: none;
  }
  .technical-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  .modalities-card {
    grid-column: 1 / -1;
    margin-top: 24px;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-message {
    justify-content: center;
  }
}

@media (max-width: 768px) {
:root {
    --header-height: 70px;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }
  .nav-menu.active {
    transform: translateY(0);
  }
  .nav-link {
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
    width: 100%;
  }
  .nav-link::after {
    display: none;
  }
  .hero {
    min-height: 500px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 0.95rem;
  }
  .hero-bg {
    width: 100%;
    opacity: 0.25;
  }
  .hero-bg::before {
    background: linear-gradient(180deg, var(--color-navy) 0%, rgba(10, 23, 51, 0.7) 100%);
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
  .service-item::after {
    display: none !important;
  }
  .technical-grid {
    grid-template-columns: 1fr;
  }
  .technical-image {
    min-height: 250px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .technical-content {
    padding: 30px 24px;
  }
  .technical-content h2 {
    font-size: 1.4rem;
  }
  .checklist {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-item::after {
    display: none !important;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .cta-buttons .btn {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
    gap: 10px;
  }
  .service-item {
    padding: 16px 8px;
  }
  .service-item-icon svg {
    width: 32px;
    height: 32px;
  }
  .service-item-title {
    font-size: 0.72rem;
  }
  .service-item-text {
    font-size: 0.7rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .logo-text .brand {
    font-size: 1.1rem;
  }
  .logo-text .tagline {
    font-size: 0.55rem;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 380px) {
  .services-grid {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 4px;
  }
  .service-item {
    padding: 18px 12px;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .service-item-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  .service-item-icon svg {
    width: 30px;
    height: 30px;
  }
  .service-item-title {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }
  .service-item-text {
    font-size: 0.72rem;
    max-width: 260px;
  }
  .logo-text .tagline {
    display: none;
  }
}
