/* Google Fonts are loaded from HTML; this file defines the design system */

:root {
  --color-primary: #122038;
  --color-accent: #1d4e89;
  --color-accent-soft: #e3edf8;
  --color-bg: #f4f7fb;
  --color-text: #1f2937;
  --color-muted: #64748b;
  --color-border: #dbe6f1;
  --color-brand: #c26c2f;
  --color-success: #22a35a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 18px 45px rgba(12, 31, 56, 0.12);
  --shadow-subtle: 0 10px 30px rgba(12, 31, 56, 0.08);
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  background-image: radial-gradient(
      circle at 8% 6%,
      rgba(29, 78, 137, 0.1),
      transparent 28%
    ),
    radial-gradient(circle at 95% 90%, rgba(194, 108, 47, 0.09), transparent 22%);
}

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

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

:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f97316;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.16);
}

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

section {
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 5.5rem 0;
  }
}

@media (max-width: 600px) {
  section {
    padding: 3.2rem 0;
  }

  .footer {
    padding: 2.1rem 0 1.6rem;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.section-heading p {
  margin: 0;
  color: var(--color-muted);
  max-width: 560px;
  margin-inline: auto;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.navbar-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #020617, #0f172a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
}

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

.brand-title {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--color-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-brand));
  border-radius: 999px;
  transition: width 0.22s ease;
}

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

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

.nav-links a.nav-active {
  color: var(--color-text);
  font-weight: 500;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-whatsapp {
  font-size: 0.9rem;
  color: #0f5132;
  background: rgba(34, 163, 90, 0.12);
  border: 1px solid rgba(34, 163, 90, 0.42);
  border-radius: 999px;
  padding: 0.36rem 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.16s ease, box-shadow 0.18s ease,
    background-color 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #173f6d);
  color: #f9fafb;
  border: none;
  box-shadow: 0 14px 30px rgba(23, 63, 109, 0.34);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(23, 63, 109, 0.45);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(29, 78, 137, 0.03);
  color: var(--color-text);
}

.btn-outline:hover {
  background: white;
  box-shadow: var(--shadow-subtle);
}

.btn-ghost {
  background: transparent;
  border-radius: 999px;
  padding-inline: 0.3rem;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.02);
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    background: rgba(15, 23, 42, 0.98);
    color: #e5e7eb;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.5rem 1.4rem;
    gap: 0.9rem;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links a {
    color: #e5e7eb;
    font-size: 0.98rem;
  }

  .nav-links a::after {
    background: linear-gradient(90deg, #f97316, #22c55e);
  }

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

  .nav-cta {
    width: 100%;
    margin-left: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  padding: 4.2rem 0 4.6rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 0 5.6rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3.2rem 0 3.8rem;
  }

  .hero-grid {
    gap: 1.8rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.1rem;
  }

  .hero-actions {
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }

  .hero-footnote {
    margin-bottom: 1.4rem;
  }

  .hero-card {
    max-width: 340px;
    margin-inline: auto;
    padding: 0.9rem;
  }
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 3rem;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem 0.25rem 0.3rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--color-muted);
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.hero-label-pill {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #020617, #0f172a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 0.65rem;
  font-weight: 700;
}

.hero-title {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 600;
  font-size: clamp(2.05rem, 4vw, 2.7rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
  color: var(--color-primary);
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  align-items: center;
  margin-bottom: 1.6rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-success);
  box-shadow: 0 0 0 5px var(--color-accent-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.hero-footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.hero-footnote strong {
  color: var(--color-text);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, rgba(194, 108, 47, 0.24), transparent),
    radial-gradient(circle at 100% 100%, rgba(29, 78, 137, 0.22), transparent),
    #0f1d33;
  padding: 1.1rem;
  min-height: 260px;
  box-shadow: var(--shadow-soft);
}

.hero-image-shell {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.35),
    rgba(15, 23, 42, 0.1)
  );
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  left: 1.35rem;
  bottom: 1.25rem;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(14px);
  color: #e5e7eb;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-floating-card strong {
  font-size: 0.86rem;
}

.hero-floating-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.scroll-indicator {
  margin-top: 2.2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.scroll-indicator-dot {
  width: 22px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  overflow: hidden;
}

.scroll-indicator-dot span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
  animation: scroll-dot 1.4s infinite;
}

@keyframes scroll-dot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(12px);
    opacity: 0.15;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* Product Categories */
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-grid .card,
.product-grid-wide .card {
  min-height: 260px;
}

.card {
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(12, 31, 56, 0.08);
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.18s ease, box-shadow 0.2s ease,
    border-color 0.18s ease, background-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(12, 31, 56, 0.16);
  border-color: rgba(194, 108, 47, 0.55);
}

.card-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  aspect-ratio: 4 / 3;
}

.card-title {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
}

.card-body {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.card-footer {
  margin-top: 0.6rem;
}

/* Trust block */
.trust-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(12, 31, 56, 0.06);
  padding: 1.2rem 1.2rem 1.35rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-pill {
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--color-muted);
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(29, 78, 137, 0.04);
}

.trust-metrics {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.process-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(12, 31, 56, 0.05);
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.process-step {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e5e7eb;
  background: linear-gradient(135deg, var(--color-accent), #173f6d);
}

.process-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-primary);
}

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

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.testimonial-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(12, 31, 56, 0.05);
  padding: 1.1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.9rem;
}

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

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(12, 31, 56, 0.04);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* About / content split */
.split-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .split-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.9rem 0.25rem 0.3rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--color-muted);
  font-size: 0.78rem;
  margin-bottom: 0.9rem;
}

.badge-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #020617, #111827);
}

.content-title {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 600;
  font-size: 1.7rem;
  margin: 0 0 0.7rem;
  color: var(--color-primary);
}

.content-body {
  margin: 0 0 1.1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.85);
  font-size: 0.78rem;
  color: var(--color-muted);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.85rem;
}

.stat {
  min-width: 120px;
}

.stat strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.stat span {
  color: var(--color-muted);
}

.image-stack {
  position: relative;
  max-width: 440px;
  margin-inline: auto;
}

.image-stack-main {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-soft);
}

.image-stack-tag {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.image-stack-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.28);
}

/* Why choose us */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.feature-card {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 30px rgba(12, 31, 56, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--color-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.feature-title {
  font-weight: 600;
  color: var(--color-primary);
}

.feature-body {
  color: var(--color-muted);
}

/* Gallery preview */
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .gallery-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.4),
    rgba(15, 23, 42, 0.05)
  );
  opacity: 0;
  transition: opacity 0.18s ease;
}

.gallery-tile:hover::after {
  opacity: 1;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

.gallery-tile:hover img {
  transform: scale(1.07);
}

.gallery-overlay-label {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  font-size: 0.72rem;
}

.gallery-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.gallery-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  max-width: 420px;
}

/* Inquiry / CTA strip */
.cta-strip {
  border-radius: 26px;
  padding: 1.5rem 1.45rem;
  background: radial-gradient(circle at 0 0, rgba(194, 108, 47, 0.3), transparent),
    radial-gradient(circle at 100% 100%, rgba(29, 78, 137, 0.32), transparent),
    #122038;
  color: #e5e7eb;
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 840px) {
  .cta-strip {
    padding: 1.7rem 1.9rem;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
    align-items: center;
  }
}

.cta-heading {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}

.cta-body {
  margin: 0;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cta-pills {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.78rem;
}

.cta-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn-whatsapp {
  background: var(--color-success);
  color: #052e16;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.36);
}

.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(34, 197, 94, 0.5);
}

.btn-outline-light {
  border: 1px solid rgba(148, 163, 184, 0.65);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.2);
}

.btn-outline-light:hover {
  background: rgba(15, 23, 42, 0.35);
}

/* Layout helpers */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: 3.4rem;
}

/* Page: products */
.products-intro {
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.product-grid-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
}

@media (min-width: 768px) {
  .product-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Page: gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.55);
  position: relative;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.87);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1.5rem;
}

.lightbox.is-visible {
  display: flex;
}

.lightbox-inner {
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #020617;
  position: relative;
}

.lightbox-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #020617;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Page: contact */
.contact-grid {
  display: grid;
  gap: 1.7rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.contact-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-card {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.15rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.contact-card-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.contact-card-value {
  font-weight: 500;
}

.contact-form-card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.form-input,
.form-textarea {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.form-textarea {
  border-radius: 14px;
  min-height: 110px;
  resize: vertical;
  padding-top: 0.6rem;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.6);
  background: #ffffff;
}

/* Page: about */
.values-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.value-card {
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 14px 36px rgba(12, 31, 56, 0.06);
}

.value-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

.customers-row {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.customers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.customers-pill {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  font-size: 0.78rem;
}

/* Footer */
.footer {
  background: #0d1a2b;
  color: #e5e7eb;
  padding: 2.6rem 0 1.9rem;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.9fr));
  gap: 2rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer-brand {
  max-width: 340px;
}

.footer-brand-title {
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-brand-text {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.footer-meta {
  margin-top: 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #93c5fd;
}

.footer-heading {
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  color: #dbeafe;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e5e7eb;
  opacity: 0.8;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(2px);
}

.footer-contact {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-contact strong {
  color: #e5e7eb;
}

.footer-contact a {
  color: #e5e7eb;
  opacity: 0.88;
}

.footer-contact a:hover {
  opacity: 1;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.8rem;
  color: #cbd5e1;
}

@media (max-width: 600px) {
  .footer-brand-text,
  .footer-links,
  .footer-contact {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .footer-bottom {
    font-size: 0.76rem;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-social-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  letter-spacing: 0.04em;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-legal a {
  color: #cbd5e1;
  opacity: 0.85;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-social-link {
  height: 30px;
  padding: 0 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.68);
  background: rgba(15, 23, 42, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #e5e7eb;
  opacity: 0.95;
  transition: border-color 0.18s ease, background-color 0.18s ease,
    transform 0.18s ease;
}

.footer-social-link:hover {
  border-color: var(--color-brand);
  background: rgba(194, 108, 47, 0.18);
  color: #e5e7eb;
  transform: translateY(-1px);
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  body.has-mobile-cta {
    padding-bottom: 5.8rem;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.55rem;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(2, 6, 23, 0.42);
    max-width: 560px;
    margin-inline: auto;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .mobile-cta-bar::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0), rgba(226, 232, 240, 0.65), rgba(148, 163, 184, 0));
    pointer-events: none;
  }

  body.mobile-cta-hidden .mobile-cta-bar {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-cta-link {
    min-height: 44px;
    border-radius: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.79rem;
    letter-spacing: 0.015em;
    white-space: nowrap;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 7px 14px rgba(2, 6, 23, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  }

  .mobile-cta-link::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
  }

  .mobile-cta-link:hover,
  .mobile-cta-link:focus-visible {
    filter: brightness(1.03);
    transform: translateY(-1px);
  }

  .mobile-cta-link:active {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 4px 10px rgba(2, 6, 23, 0.25);
  }

  .mobile-cta-link.cta-call {
    background: linear-gradient(135deg, #2563eb, #1e40af);
  }

  .mobile-cta-link.cta-whatsapp {
    background: linear-gradient(135deg, #22c55e, #15803d);
    border-color: rgba(134, 239, 172, 0.4);
    box-shadow: inset 0 1px 0 rgba(220, 252, 231, 0.32),
      0 10px 18px rgba(21, 128, 61, 0.35);
  }

  .mobile-cta-link.cta-brochure {
    background: linear-gradient(135deg, #d97706, #92400e);
  }

  @media (max-width: 420px) {
    .mobile-cta-link {
      min-height: 42px;
      font-size: 0.74rem;
      letter-spacing: 0.01em;
    }
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

