@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --foreground: #111827;
  --background: #ffffff;
  --primary: #003a75;
  --primary-foreground: #ffffff;
  --muted: #9ca3af;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --ring: #003a75;
  --secondary: #f9fafb;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

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

/* ============================================================
   SHARED / UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl = 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.btn:focus-visible {
  box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring);
}

/* Default / primary */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

.btn-primary:hover {
  background-color: #002a56;
}

/* Large */
.btn-lg {
  height: 2.75rem;
  padding: 0.625rem 2rem;
  font-size: 1rem;
  border-radius: 0.375rem;
}

/* Secondary */
.btn-secondary {
  background-color: var(--background);
  color: var(--foreground);
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

.btn-secondary:hover {
  background-color: #f3f4f6;
}

/* Ghost */
.btn-ghost {
  background-color: transparent;
  color: var(--primary);
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

.btn-ghost:hover {
  background-color: rgba(0, 58, 117, 0.05);
  color: var(--primary);
}

/* Full-width */
.btn-full {
  width: 100%;
  justify-content: space-between;
}

/* Min-width helper */
.btn-min-w {
  min-width: 200px;
}

/* Icon inside button */
.btn-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-icon-lg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@supports (backdrop-filter: blur(1px)) {
  .site-header {
    background-color: rgba(255, 255, 255, 0.6);
  }
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-box {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background-color: var(--primary);
}

.logo-box span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
}

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

.header-nav a.is-active,
.mobile-menu-inner a.is-active {
  color: var(--foreground);
}

/* Desktop CTA */
.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: block;
  }
}

/* Mobile menu button */
.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
}

.mobile-menu-btn:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu dropdown */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none;
  }
}

.mobile-menu-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-inner a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
}

.mobile-menu-inner a:hover {
  color: var(--foreground);
}

.mobile-menu-inner .btn {
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--foreground);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.hero-content {
  position: relative;
}

.hero-inner {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.hero-subtitle {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.hero-title {
  max-width: 56rem;
  text-wrap: balance;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--background);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  margin-top: 1.5rem;
  max-width: 42rem;
  text-wrap: pretty;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(0, 58, 117, 0.2), transparent 35%),
    linear-gradient(135deg, #0f172a 0%, #10284a 45%, #1f4f7e 100%);
}

.page-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 5rem 5rem;
}

.page-hero-inner {
  position: relative;
  max-width: 56rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .page-hero-inner {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.page-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.page-title {
  margin-top: 1rem;
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--background);
}

@media (min-width: 640px) {
  .page-title {
    font-size: 3.4rem;
  }
}

.page-description {
  max-width: 44rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.25rem;
}

@media (min-width: 640px) {
  .page-hero-actions {
    flex-direction: row;
  }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  background-color: var(--background);
  padding-top: 5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .products {
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
}

.products-header {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.products-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.products-title {
  margin-top: 0.75rem;
  text-wrap: balance;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .products-title {
    font-size: 2.25rem;
  }
}

.products-subtitle {
  margin-top: 1rem;
  text-wrap: pretty;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ---- Product cards grid ---- */
.products-grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

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

.products-preview {
  padding-bottom: 5rem;
}

.products-preview-footer {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ---- Individual card ---- */
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: rgba(0, 58, 117, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.card-header {
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.card-icon-box {
  margin-bottom: 1rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(0, 58, 117, 0.1);
  color: var(--primary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.product-card:hover .card-icon-box {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.card-icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

/* ---- Card content / features ---- */
.card-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.feature-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.card-action {
  margin-top: 1.5rem;
}

.card-action-inline .btn {
  justify-content: space-between;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-categories-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-heading {
  max-width: 46rem;
}

.product-category-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-category-card {
  display: grid;
  gap: 2rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.9), rgba(255, 255, 255, 1));
  padding: 1.75rem;
  box-shadow: 0 20px 45px -35px rgba(15, 23, 42, 0.5);
}

@media (min-width: 1024px) {
  .product-category-card {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
    align-items: start;
    padding: 2.25rem;
  }
}

.product-category-kicker {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.product-category-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--foreground);
}

.product-category-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.product-category-bullets {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.product-category-bullets li {
  position: relative;
  padding-left: 1rem;
  color: var(--foreground);
}

.product-category-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background-color: var(--primary);
  transform: translateY(-50%);
}

.product-category-aside {
  border: 1px solid rgba(0, 58, 117, 0.14);
  border-radius: 0.875rem;
  background-color: rgba(0, 58, 117, 0.04);
  padding: 1.25rem;
}

.product-category-aside-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.product-category-aside-text {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.products-support {
  padding-bottom: 5rem;
}

.products-support-panel {
  display: grid;
  gap: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f8fafc 0%, #eef3f8 100%);
  padding: 2rem;
}

@media (min-width: 1024px) {
  .products-support-panel {
    grid-template-columns: minmax(0, 1.5fr) auto;
    align-items: center;
    padding: 2.5rem;
  }
}

.products-support-copy {
  max-width: 42rem;
}

.products-support-text {
  margin-top: 1rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.products-support-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .products-support-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 1024px) {
  .products-support-actions {
    justify-content: flex-end;
    align-items: center;
  }
}

.category-detail-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.category-detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .category-detail-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.9fr);
    align-items: start;
  }
}

.category-detail-main {
  display: grid;
  gap: 2rem;
}

.category-detail-text {
  max-width: 52rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted-foreground);
}

.category-block {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background-color: var(--card);
  padding: 1.5rem;
}

.category-block-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.category-check-list {
  display: grid;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.category-check-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--foreground);
}

.category-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  background-color: var(--primary);
  transform: translateY(-50%);
}

.category-detail-aside {
  display: grid;
  gap: 1.25rem;
}

.category-download-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.92), rgba(255, 255, 255, 1));
  padding: 1.5rem;
}

.category-download-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.category-download-title {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--foreground);
}

.category-download-text {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* ============================================================
   QUOTE PAGE
   ============================================================ */
.quote-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.quote-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .quote-layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
    align-items: start;
  }
}

.quote-main {
  display: grid;
  gap: 2rem;
}

.quote-form {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: 0 20px 45px -35px rgba(15, 23, 42, 0.35);
}

@media (min-width: 768px) {
  .quote-form {
    padding: 2rem;
  }
}

.quote-form-grid {
  display: grid;
  gap: 1rem;
}

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

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background-color: #fff;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--foreground);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
  border-color: rgba(0, 58, 117, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 58, 117, 0.08);
  outline: none;
}

.form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #475569 50%),
    linear-gradient(135deg, #475569 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}

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

.form-file {
  padding: 0.8rem 1rem;
}

.dynamic-fields {
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.dynamic-group {
  display: grid;
  gap: 1rem;
}

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

  .dynamic-group-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.quote-form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .quote-form-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.quote-form-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.quote-sidebar {
  display: grid;
  gap: 1.25rem;
}

.quote-side-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.92), rgba(255, 255, 255, 1));
  padding: 1.5rem;
}

.quote-download-links {
  display: grid;
  gap: 0.75rem;
}

.quote-success {
  border: 1px solid rgba(21, 128, 61, 0.2);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(240, 253, 244, 1), rgba(255, 255, 255, 1));
  padding: 1.5rem;
}

.quote-success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #166534;
}

.quote-success-text {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #166534;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.95fr);
    align-items: start;
  }
}

.contact-main {
  display: grid;
  gap: 2rem;
}

.contact-sidebar {
  display: grid;
  gap: 1.25rem;
}

.contact-info-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0.92), rgba(255, 255, 255, 1));
  padding: 1.5rem;
}

.contact-info-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.875rem;
  align-items: start;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: rgba(0, 58, 117, 0.08);
  color: var(--primary);
}

.contact-info-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-info-text {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.contact-info-link {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--foreground);
  transition: color 0.15s ease;
}

.contact-info-link:hover {
  color: var(--primary);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin-top: 1rem;
  border: 1px dashed rgba(0, 58, 117, 0.25);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(226, 232, 240, 0.45), rgba(248, 250, 252, 0.95)),
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: auto, 2rem 2rem, 2rem 2rem;
}

.map-placeholder span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background-color: var(--secondary);
  padding-top: 1.5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .about {
    padding-top: 2rem;
    padding-bottom: 7rem;
  }
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-label {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.about-title {
  margin-top: 0.75rem;
  text-wrap: balance;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .about-title {
    font-size: 2.25rem;
  }
}

.about-text {
  margin-top: 1.5rem;
  text-wrap: pretty;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.about-text + .about-text {
  margin-top: 1rem;
}

.about-products-heading {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

/* ---- Product checklist ---- */
.about-products-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .about-products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-product-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.about-product-item svg {
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--primary);
}

.about-product-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* ---- Stat cards ---- */
.about-stats {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.stat-icon-box {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(0, 58, 117, 0.1);
}

.stat-icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background-color: var(--primary);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .cta {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.cta-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta-title {
  text-wrap: balance;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--primary-foreground);
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  margin-top: 1rem;
  text-wrap: pretty;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

.cta-badge {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
}

.cta-badge-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-badge-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: text-decoration 0.15s ease;
}

.cta-badge-link:hover {
  text-decoration: underline;
}

.cta-badge-link svg {
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--foreground);
}

.footer-main {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .footer-main {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 3fr;
  }
}

/* ---- Brand & contact column ---- */
.footer-brand .logo-text {
  color: var(--background);
}

.footer-brand-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted);
}

.footer-contact {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  margin-top: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--muted);
}

.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.625;
}

/* ---- Navigation columns ---- */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-nav-grid {
    justify-items: end;
  }
}

.footer-nav-heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--background);
}

.footer-nav-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.15s ease;
}

.footer-nav-list a:hover {
  color: var(--background);
}

.footer-external-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-external-link svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ---- Bottom bar ---- */
.footer-bottom {
  border-top: 1px solid rgba(156, 163, 175, 0.2);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-bottom p {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

@media (max-width: 639px) {
  .cta-badge {
    width: 100%;
    border-radius: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .page-title {
    font-size: 2.2rem;
  }
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.whatsapp-fab:hover {
  background-color: #1ebe5d;
  transform: scale(1.06);
}
