﻿:root {
  --brand-100: #e8f3ff;
  --brand-300: #89c2ff;
  --brand-500: #2f93ff;
  --brand-700: #1557a1;
  --ink-900: #0f1f33;
  --ink-700: #28405f;
  --ink-500: #5b6d84;
  --surface-0: #ffffff;
  --surface-1: #f4f8fc;
  --surface-2: #eaf1f8;
  --success: #1faa59;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 8px 18px rgba(20, 55, 95, 0.08);
  --shadow-md: 0 18px 36px rgba(20, 55, 95, 0.14);
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at 12% 8%, #eef7ff 0%, #f8fbff 40%, #ffffff 75%);
  line-height: 1.6;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--brand-700);
  margin: 0 0 0.9rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
  font-size: 1.2rem;
}

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

.muted {
  color: var(--ink-500);
  font-size: 0.93rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.85rem 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), #2f80d8);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--surface-0);
  color: var(--brand-700);
  border: 1px solid #c9def6;
}

.btn-instagram {
  margin-top: 0.65rem;
  background: linear-gradient(135deg, #5851db 0%, #833ab4 32%, #c13584 55%, #e1306c 72%, #fd1d1d 86%, #f77737 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-instagram:hover {
  box-shadow: var(--shadow-md);
}

.btn-large {
  font-size: 1.06rem;
  padding: 1rem 1.6rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e4edf7;
}

.header-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand img {
  width: 176px;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 1.35rem;
  font-weight: 600;
  color: var(--ink-700);
}

.main-nav a {
  padding: 0.3rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  color: var(--brand-700);
  border-bottom-color: var(--brand-300);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #cfe1f5;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink-900);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2.4rem;
  align-items: center;
}

.hero {
  padding-top: 3.8rem;
  padding-bottom: 4rem;
}

.hero-copy p {
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-media {
  background: linear-gradient(155deg, #f7fbff, #eaf4ff);
  border: 1px solid #d7e8fb;
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.section-head {
  max-width: 75ch;
  margin-bottom: 2rem;
}

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

.service-card {
  background: var(--surface-0);
  border: 1px solid #d9e8f8;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 1.55rem;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-100);
  margin-bottom: 0.9rem;
}

.service-link {
  margin-top: auto;
  display: inline-flex;
  color: var(--brand-700);
  font-weight: 700;
}

.why {
  background: linear-gradient(180deg, transparent 0%, #f8fbff 42%, #f2f8ff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.why-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d4e5f7;
  border-radius: var(--radius-md);
  padding: 1.15rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.7rem;
  align-items: center;
}

.coverage-media {
  background: var(--surface-0);
  border: 1px solid #d9e8f8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.coverage-media iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 14px;
}

.map-link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--brand-700);
}

.web-dev-wrap {
  border: 1px solid #cfe3f9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eaf5ff 0%, #f9fcff 60%);
  padding: clamp(1.2rem, 2.8vw, 2.2rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.45rem;
  align-items: start;
}

.contact-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 0.65rem;
}

.contact-form {
  background: var(--surface-0);
  border: 1px solid #d4e5f7;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.1rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c4d9f0;
  border-radius: var(--radius-sm);
  font: inherit;
  padding: 0.75rem;
  background: #fbfdff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #afd2f9;
  border-color: #8fbcf0;
}

.contact-form button {
  margin-top: 1rem;
}

.site-footer {
  background: #0d2238;
  color: #d8e8f8;
  padding-top: 2rem;
  border-top: 1px solid rgba(180, 211, 242, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.footer-brand p {
  color: #bfd7ee;
  margin: 0;
  max-width: 48ch;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.footer-links a {
  display: inline-flex;
  color: #d8e8f8;
  font-weight: 600;
  font-size: 0.96rem;
  opacity: 0.95;
}

.footer-links a:hover {
  color: #9fd0ff;
}

.footer-logo {
  width: 160px;
  margin-bottom: 0.6rem;
}

.footer-copy {
  border-top: 1px solid rgba(169, 198, 231, 0.22);
  margin-top: 1.4rem;
  text-align: center;
  padding: 1rem 0 1.2rem;
}

.footer-copy p {
  margin: 0;
  color: #b8d1e9;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  box-shadow: var(--shadow-md);
  z-index: 60;
}

.js-whatsapp-link.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

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

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

@media (max-width: 1050px) {
  .header-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #dceaf8;
    padding: 0.9rem 4vw 1.1rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .header-wrap > .btn {
    justify-self: end;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
  }

  .hero-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 4.2rem 0;
  }

  .header-wrap {
    grid-template-columns: auto auto;
    gap: 0.7rem;
  }

  .header-wrap > .btn {
    display: none;
  }

  .brand img {
    width: 154px;
  }

  .service-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
