@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --bg: #f5f7fb;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #5c6578;
  --accent: #2563eb;
  --accent-dark: #1e3a8a;
  --gradient: linear-gradient(135deg, #0f62ff, #6c5ce7);
  --line: #e2e8f0;
  --card: #edf2ff;
}

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

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin: 0.5rem 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(15, 23, 42, 0.15);
  color: var(--ink);
  background: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
  background: #0b1221;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 25, 0.75);
  z-index: 1;
}

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

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-content {
  background: rgba(8, 12, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 30px 60px rgba(3, 8, 20, 0.45);
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-content p,
.hero-list li,
.hero-metrics p,
.hero-metrics .metric {
  color: #f5f7fb;
}

.hero-content .eyebrow {
  color: #cfd8ff;
}

.hero-list li::before {
  background: #9eb6ff;
}

.lead {
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.hero-cta .btn-primary {
  padding: 1rem 2.75rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 25px 60px rgba(250, 204, 21, 0.45);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta .btn-outline {
  color: #0b1221;
  border-color: transparent;
  background: #f5f7fb;
  padding: 1rem 2.25rem;
}

.hero-cta .btn-outline:hover {
  background: #fff;
  color: #0b1221;
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.hero-list li {
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 1.2rem;
}

.hero-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 3;
}

.hero-contact-cta .contact-pill {
  background: #fff;
  color: #0b1221;
  border: none;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  box-shadow: 0 18px 35px rgba(15, 19, 40, 0.35);
}

.hero-contact-cta .contact-pill .contact-icon,
.hero-contact-cta .contact-pill svg {
  color: inherit;
  fill: currentColor;
}

.hero-contact-cta .contact-pill.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;

}

.hero-contact-cta .contact-pill.viber {
  background: linear-gradient(135deg, #8f6fff, #5c3efd);
  color: #fff;

}

.hero-contact-cta .contact-pill.whatsapp:hover,
.hero-contact-cta .contact-pill.viber:hover {
  transform: translateY(-2px);
}

.hero-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0.5rem 0 1.5rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.metric {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}


.logos {
  padding: 2rem 0;
  background: var(--bg);
}

.logos-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.logo-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.8;
}

.section {
  padding: 4rem 0;
}

.focus-section {
  background: var(--white);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
  font-weight: 500;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.8;
}

.feature-list.compact li {
  font-weight: 600;
}

.location-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.section-head {
  text-align: left;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
}

.card ul li {
  margin-bottom: 0.4rem;
}

.highlight {
  background: var(--white);
}

.highlight-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.highlight-cards {
  display: grid;
  gap: 1rem;
}

.highlight-cards article {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.process {
  background: var(--bg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.timeline article {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.timeline span {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.industry-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.industry-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1.25rem 1.25rem;
  margin: 0;
  color: var(--ink);
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonials-grid article {
  padding: 1.5rem;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.quote {
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.author {
  font-weight: 600;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-grid ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: var(--muted);
}

.contact-grid li {
  margin-bottom: 0.4rem;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-pill:hover {
  background: var(--accent);
  color: var(--white);
}

.contact-note {
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--ink);
}

.contact-pill.whatsapp {
  background: #e9f8ee;
  border-color: #1c9f50;
  color: #1c9f50;
}

.contact-pill.whatsapp:hover {
  background: #1c9f50;
  color: #fff;
}

.contact-pill.viber {
  background: #f1edfb;
  border-color: #7360f2;
  color: #7360f2;
}

.contact-pill.viber:hover {
  background: #7360f2;
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 0.85rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-status.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-status.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #f87171;
}


.final-cta {
  background: var(--gradient);
  color: var(--white);
}

.final-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.final-grid p {
  color: rgba(255, 255, 255, 0.9);
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
  color: #fff;
}

.final-grid .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.site-footer {
  background: #0b1221;
  color: #cbd5f5;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #cbd5f5;
  opacity: 0.8;
}

.footer-cookie-link {
  background: none;
  border: none;
  color: #cbd5f5;
  opacity: 0.8;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 25, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.cookie-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.cookie-card {
  background: var(--white);
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
  border: 1px solid var(--line);
}

.cookie-card ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.cookie-card ul li {
  margin-bottom: 0.5rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    min-width: 220px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .final-grid {
    flex-direction: column;
    text-align: center;
  }
}
.price-underline {
  font-weight: 700;
  color: #facc15;
  text-decoration: underline;
  text-decoration-color: rgba(250, 204, 21, 0.6);
}
.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  margin-bottom: 0.75rem;
}
