:root {
  --navy: #1b2a6b;
  --navy-dark: #121d4a;
  --orange: #f2891e;
  --orange-light: #ffb066;
  --magenta: #9c1f7a;
  --teal: #1e9bb5;
  --green: #4caf50;
  --ink: #1a1a2e;
  --muted: #5b5f77;
  --bg: #ffffff;
  --bg-soft: #f6f7fb;
  --border: #e6e8f0;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(27, 42, 107, 0.08);
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 12px;
  color: var(--navy);
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  height: 40px;
  width: auto;
}

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

.brand-text .name {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.brand-text .name .axi { color: var(--navy); }
.brand-text .name .print { color: var(--orange); }

.brand-text .tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 137, 30, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(242, 137, 30, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 88px 0 100px;
  background: radial-gradient(circle at 85% 15%, rgba(30, 155, 181, 0.08), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(156, 31, 122, 0.06), transparent 40%),
    var(--bg-soft);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--navy);
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stats div strong {
  display: block;
  font-size: 1.6rem;
  color: var(--navy);
}

.hero-stats div span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .glow-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 40px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border);
}

.hero-mark {
  width: 160px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.hero-visual .tagline {
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--magenta);
  font-size: 0.95rem;
}

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

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #fff;
}

.service-card:nth-child(1) .icon-badge { background: linear-gradient(135deg, var(--teal), #4fc3d9); }
.service-card:nth-child(2) .icon-badge { background: linear-gradient(135deg, var(--green), #7bd67e); }
.service-card:nth-child(3) .icon-badge { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.service-card:nth-child(4) .icon-badge { background: linear-gradient(135deg, var(--magenta), #c24aa0); }
.service-card:nth-child(5) .icon-badge { background: linear-gradient(135deg, var(--navy), #3a4fa0); }

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: var(--ink);
}

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

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.testimonial-text {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}

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

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #3a4fa0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonials-cta {
  text-align: center;
}

/* About */
.about {
  background: var(--bg-soft);
}

.about .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  padding: 32px;
}

.about-mark {
  width: 220px;
  height: auto;
}

.about-text h2 {
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 18px;
}

.about-text p {
  color: var(--muted);
  margin: 0 0 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
}

.about-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Contact */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.location-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.location-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.15rem;
}

.location-card p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.location-card p a {
  color: var(--ink);
  font-weight: 700;
}

.location-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.schedule-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 2px;
  max-width: 320px;
}

.schedule-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
}

.schedule-list li:last-child {
  border-bottom: none;
}

.schedule-list .day {
  font-weight: 600;
  color: var(--ink);
}

.schedule-list .hours {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.schedule-list li.closed .hours {
  color: var(--magenta);
  font-weight: 700;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-item .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.contact-item h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-item p {
  margin: 0 0 4px;
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-item p:last-child {
  margin-bottom: 0;
}

.contact-item p a {
  color: var(--ink);
  font-weight: 600;
}

.social-heading {
  margin: 24px 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.social-row a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-facebook { background: #1877f2; }
.social-instagram { background: radial-gradient(circle at 30% 107%, #fdf497, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-whatsapp { background: #25d366; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-soft);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #cfd4ef;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-text .name .axi,
.footer-brand .brand-text .name .print {
  color: #fff;
}

.footer-brand p {
  color: #a6acd6;
  font-size: 0.9rem;
  max-width: 300px;
  margin-top: 14px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: #a6acd6;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #8890c2;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .hero .container,
  .about .container,
  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .about-visual {
    order: -1;
    min-height: 220px;
  }

  .main-nav,
  .header-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-nav.open ul {
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }

  section {
    padding: 64px 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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