@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --bg-color: #ffffff;
  --text-color: #184e77;
  --nav-bg: #184e77;
  --nav-bg-light: #1e6091;
  --nav-text: #ffffff;
  --accent-color: #168aad;
  --accent-dark: #1a759f;
  --accent-cyan: #34a0a4;
  --accent-sky: #52b69a;
  --accent-soft: #99d98c;
  --accent-pale: #b5e48c;
  --accent-mint: #e5f3d1;
  --accent-light: #f4f9ed;
  --accent-highlight: #d9ed92;
  --footer-bg: #184e77;
  --gray-100: #f5faf8;
  --gray-200: #d8e9e3;
  --gray-500: #557a70;
  --gray-600: #3c6766;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===================== HEADER ===================== */
header {
  background-color: #ffffff;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

header.is-scrolled {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(24, 78, 119, 0.1);
  backdrop-filter: blur(14px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--nav-bg);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Manrope', 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  transition: color 0.3s, letter-spacing 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

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

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-color);
}

.nav-links a:focus-visible,
.btn:focus-visible,
.team-card a:focus-visible,
.collaboration-contact a:focus-visible {
  outline: 3px solid rgba(22, 138, 173, 0.35);
  outline-offset: 4px;
}

/* ===================== MAIN ===================== */
main {
  flex: 1;
  width: 100%;
}

main > section,
main > div,
main > h1,
main > p {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

h1, h2, h3 {
  color: var(--nav-bg);
  margin-bottom: 1.2rem;
  font-family: 'Manrope', 'Source Sans 3', sans-serif;
  letter-spacing: -0.04em;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Manrope', 'Source Sans 3', sans-serif;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  text-align: center;
  will-change: transform;
}

.btn:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 138, 173, 0.3);
}

/* ===================== HERO SECTION ===================== */
.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(135deg, #f2faf8 0%, #ffffff 62%);
  max-width: 100% !important;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--nav-bg);
  letter-spacing: -0.06em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--accent-color);
}

.hero-eyebrow {
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--nav-bg);
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.hero-proof span::before {
  content: '✓';
  color: var(--accent-cyan);
  font-weight: 800;
  margin-right: 0.35rem;
}

/* ===================== QUOTE / IMAGE SECTION ===================== */
.quote-section {
  padding: 4rem 2rem;
  max-width: 100% !important;
  background: linear-gradient(180deg, var(--gray-100) 0%, #ffffff 100%);
}

.quote-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-text {
  flex: 1;
}

.quote-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.quote-phrase {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-500);
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.quote-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
}

.quote-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quote-image img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  max-height: 520px;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(24, 78, 119, 0.12);
}

/* ===================== PRODUCT OVERVIEW ===================== */
.product-section {
  padding: 4rem 2rem;
  max-width: 100% !important;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading h2 {
  font-size: 2rem;
}

.section-heading p {
  color: var(--gray-500);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(24, 78, 119, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-sky), var(--accent-color));
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(24, 78, 119, 0.11);
}

.product-card .card-kicker {
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0.65rem 0 0.65rem;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-mint);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 1.1rem;
}

.audience-section {
  background: linear-gradient(135deg, var(--nav-bg), var(--nav-bg-light), var(--accent-color));
  padding: 4rem 2rem;
  max-width: 100% !important;
}

.audience-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.audience-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.audience-card h3,
.audience-card p,
.audience-card li {
  color: #ffffff;
}

.audience-card p,
.audience-card li {
  color: var(--accent-light);
}

.audience-card ul {
  padding-left: 1.1rem;
  line-height: 1.9;
}

/* ===================== PRICING ===================== */
.pricing-section {
  padding: 4rem 2rem;
  max-width: 100% !important;
  background: var(--gray-100);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(24, 78, 119, 0.06);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 1.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  background: var(--accent-sky);
  color: var(--nav-bg);
  font-size: 0.75rem;
  font-weight: 800;
}

.pricing-card h3 {
  margin-bottom: 0.4rem;
}

.pricing-description {
  min-height: 52px;
  font-size: 0.9rem;
}

.price {
  color: var(--nav-bg);
  font-size: 2rem;
  font-weight: 800;
  margin: 0.8rem 0 1.2rem;
}

.price span {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}

.pricing-card ul {
  flex: 1;
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-card li {
  padding: 0.45rem 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.pricing-card li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: 800;
  margin-right: 0.5rem;
}

.pricing-note {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===================== FUNCTIONAL FLOW ===================== */
.feature-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4.5rem;
  padding: 0 2rem;
}

.feature-panel {
  padding: 2.4rem;
  border-radius: 22px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.feature-panel.thermal {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-light));
}

.feature-panel h2 {
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

.feature-panel p {
  font-size: 1.06rem;
}

.feature-panel ul {
  padding-left: 1.1rem;
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 2;
}

.workflow-section {
  padding: 5.25rem 2rem;
  background: var(--gray-100);
  max-width: 100% !important;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.workflow-item {
  position: relative;
  padding: 1.75rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.workflow-item strong {
  display: block;
  color: var(--nav-bg);
  margin-bottom: 0.5rem;
  font-size: 1.12rem;
}

.workflow-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  font-weight: 800;
}

.workflow-item p {
  font-size: 1rem;
  margin: 0;
}

.disclaimer {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--accent-cyan);
  background: #fff;
  color: var(--gray-500);
  font-size: 0.98rem;
}

/* ===================== ABOUT ADDITIONS ===================== */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-highlight {
  padding: 1.2rem;
  border-radius: 14px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.about-highlight strong {
  display: block;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.about-highlight span {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===================== BENEFITS SECTION ===================== */
.benefits-section {
  padding: 4rem 2rem;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.benefits {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  flex: 1;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--accent-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  color: var(--nav-bg);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.benefit-card p {
  font-size: 0.95rem;
}

/* ===================== PAGE HEADER ===================== */
.page-header {
  text-align: center;
  display: grid;
  align-content: center;
  min-height: 340px;
  padding: 5.25rem 2rem 3.25rem;
  background: linear-gradient(180deg, #f1f9f6 0%, #ffffff 100%);
  max-width: 100% !important;
}

.page-header h1 {
  max-width: 860px;
  margin: 0 auto 1.2rem;
  font-size: clamp(2.55rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
}

.page-header p {
  font-size: 1.18rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-500);
}

/* ===================== STEPS SECTION ===================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  max-width: 1200px;
  margin: 4.5rem auto 5.5rem;
  padding: 0 2rem;
}

.step {
  display: flex;
  gap: 4.5rem;
  align-items: center;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-info {
  flex: 1;
}

.step-info h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

.step-info p {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.75;
}

.step-number {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.video-placeholder {
  flex: 1;
  background-color: var(--gray-100);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 2px dashed var(--accent-pale);
  color: var(--gray-500);
  width: 100%;
  transition: border-color 0.3s;
}

.video-placeholder:hover {
  border-color: var(--accent-color);
}

.product-preview {
  position: relative;
  flex: 1;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(24, 78, 119, 0.08);
}

.photo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.photo-preview span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: rgba(24, 78, 119, 0.9);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.dashboard-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem;
  background: linear-gradient(145deg, var(--nav-bg), var(--accent-dark));
  color: #fff;
}

.dashboard-top,
.dashboard-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.dashboard-live {
  padding: 0.3rem 0.5rem;
  border-radius: 50px;
  background: rgba(72, 202, 228, 0.2);
  color: var(--accent-soft);
}

.dashboard-score {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
}

.dashboard-score strong,
.dashboard-score span {
  display: block;
}

.dashboard-score span,
.dashboard-row span {
  margin-top: 0.25rem;
  color: var(--accent-pale);
  font-size: 0.76rem;
}

.dashboard-bars {
  display: flex;
  align-items: end;
  height: 78px;
  gap: 0.55rem;
}

.dashboard-bars i {
  display: block;
  flex: 1;
  height: 45%;
  border-radius: 6px 6px 2px 2px;
  background: var(--accent-cyan);
}

.dashboard-bars i:nth-child(2) { height: 68%; background: var(--accent-sky); }
.dashboard-bars i:nth-child(3) { height: 52%; }
.dashboard-bars i:nth-child(4) { height: 82%; background: var(--accent-soft); }
.dashboard-bars i:nth-child(5) { height: 60%; background: var(--accent-sky); }
.dashboard-bars i:nth-child(6) { height: 90%; }

/* ===================== ABOUT SECTION ===================== */
.about-content {
  display: flex;
  gap: 4.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 2rem;
}

.about-text {
  flex: 2;
}

.about-text > h1 {
  font-size: clamp(2.55rem, 4.2vw, 4.25rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.about-text > p {
  max-width: 720px;
  font-size: 1.12rem;
  line-height: 1.8;
}

.award {
  background: linear-gradient(135deg, var(--nav-bg), var(--accent-dark), var(--accent-color));
  color: white;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(22, 138, 173, 0.3);
}

.award h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.award p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-info {
  flex: 1;
  background: var(--gray-100);
  padding: 2.5rem;
  border-radius: 22px;
  border: 1px solid var(--gray-200);
}

.contact-info h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  margin-bottom: 0.8rem;
}

.social-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.social-links a svg {
  flex-shrink: 0;
}

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

/* ===================== FOOTER ===================== */
footer {
  background-color: var(--footer-bg);
  color: var(--accent-light);
  margin-top: auto;
}

.footer-container {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.footer-col {
  flex: 1;
}

.footer-brand {
  flex: 1.5;
}

.footer-logo {
  height: 42px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-col p {
  color: var(--accent-mint);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
  color: var(--accent-mint);
  font-size: 0.9rem;
}

.footer-col ul li a {
  color: var(--accent-mint);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--accent-mint);
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--accent-pale);
  font-size: 0.85rem;
  margin: 0;
}

/* ===================== DYNAMIC LANDING ===================== */
body {
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-cyan));
  box-shadow: 0 2px 10px rgba(22, 138, 173, 0.35);
  transition: width 0.08s linear;
}

/* Detalles compartidos para una sensación más editorial y menos estática. */
.benefit-card,
.feature-panel,
.workflow-item,
.pricing-card,
.route-card,
.team-card,
.achievement-photo,
.collaboration-contact {
  will-change: transform;
}

.benefit-card,
.feature-panel,
.workflow-item,
.pricing-card,
.route-card,
.team-card,
.collaboration-contact {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover,
.collaboration-contact:hover {
  border-color: rgba(22, 138, 173, 0.45);
  box-shadow: 0 20px 42px rgba(24, 78, 119, 0.13);
}

.photo-preview img,
.kit-image img,
.achievement-photo img {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-home {
  position: relative;
  overflow: hidden;
  text-align: left;
  min-height: 590px;
  padding: 0 2rem;
  /* La foto se muestra completa, alineada a la derecha. El degradado deja
     una zona de lectura clara sin tapar la escena del monitoreo. */
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 31%, rgba(255, 255, 255, 0.58) 56%, rgba(255, 255, 255, 0.08) 78%),
    url('insulink-home-monitoring.png');
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 100%;
}

.hero-home::before,
.hero-home::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-home::before {
  width: 430px;
  height: 430px;
  right: -145px;
  top: -120px;
  background: rgba(52, 160, 164, 0.1);
}

.hero-home::after {
  width: 220px;
  height: 220px;
  left: -100px;
  bottom: -120px;
  background: rgba(153, 217, 140, 0.16);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 590px;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
}

.hero-copy .hero-title {
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -2px;
}

.hero-copy .hero-subtitle {
  margin-left: 0;
  text-align: left;
}

.hero-copy .hero-actions,
.hero-copy .hero-proof {
  justify-content: flex-start;
}

.hero-media {
  display: none;
}

.hero-main-image {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(24, 78, 119, 0.2);
}

.hero-live-card,
.hero-metric {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 28px rgba(24, 78, 119, 0.15);
  backdrop-filter: blur(8px);
}

.hero-live-card {
  left: -1.5rem;
  bottom: 2rem;
}

.hero-live-card strong,
.hero-live-card small {
  display: block;
}

.hero-live-card strong {
  color: var(--nav-bg);
  font-size: 0.84rem;
}

.hero-live-card small {
  color: var(--gray-500);
  font-size: 0.72rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.5);
  animation: live-pulse 2s infinite;
}

.hero-metric {
  right: -1.25rem;
  top: 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.hero-metric strong {
  color: var(--accent-dark);
  font-size: 1.1rem;
}

.hero-metric span {
  color: var(--gray-500);
  font-size: 0.74rem;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(0, 180, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

.showcase-section {
  max-width: 100% !important;
  padding: 4.5rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-100) 100%);
}

.insulink-swiper {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0.5rem 0 3.5rem;
}

.showcase-slide {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 450px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--nav-bg);
}

.showcase-slide img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
}

.showcase-brand-slide img {
  object-fit: contain;
  background: var(--accent-pale);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

.showcase-copy span {
  color: var(--accent-sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.showcase-copy h3 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  margin: 0.75rem 0;
}

.showcase-copy p {
  color: var(--accent-light);
  margin: 0;
}

.insulink-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--accent-color);
}

.insulink-swiper .swiper-button-next,
.insulink-swiper .swiper-button-prev {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(24, 78, 119, 0.15);
}

.insulink-swiper .swiper-button-next::after,
.insulink-swiper .swiper-button-prev::after {
  color: var(--accent-dark);
  font-size: 1rem;
  font-weight: 800;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1120px !important;
  margin: 4rem auto !important;
  padding: 2.5rem 3rem !important;
  border-radius: 24px;
  background: linear-gradient(120deg, var(--nav-bg), var(--nav-bg-light), var(--accent-color));
  box-shadow: 0 18px 35px rgba(24, 78, 119, 0.16);
}

.cta-strip .hero-eyebrow {
  color: var(--accent-sky);
}

.cta-strip h2 {
  color: #fff;
  margin-bottom: 0.65rem;
}

.cta-strip p:not(.hero-eyebrow) {
  color: var(--accent-light);
  margin: 0;
}

.cta-strip .btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--accent-dark);
}

.cta-strip .btn:hover {
  background: var(--accent-pale);
}

/* ===================== PRICING PAGE ===================== */
.pricing-page-section {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  background: #fff;
}

.pricing-tier {
  display: block;
  min-height: 22px;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 700;
}

.pricing-page-section .pricing-card h2 {
  font-size: 1.8rem;
  margin: 0.45rem 0;
}

.pricing-page-section .pricing-card {
  padding: 2.5rem 2.2rem;
  border-radius: 22px;
}

.pricing-page-section .pricing-description,
.pricing-page-section .pricing-card li {
  font-size: 1rem;
}

.kit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 4.5rem;
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.kit-image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(24, 78, 119, 0.14);
}

.kit-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.kit-copy h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.kit-copy > p:not(.hero-eyebrow) {
  font-size: 1.1rem;
}

.kit-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.kit-points span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 1.02rem;
}

.kit-points span::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-weight: 800;
}

.plan-finder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 4.5rem;
  align-items: center;
  max-width: 100% !important;
  padding: 5.5rem max(2rem, calc((100% - 1050px) / 2));
  background: var(--gray-100);
}

.finder-copy h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.plan-finder {
  display: grid;
  gap: 0.6rem;
  padding: 2.5rem;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 78, 119, 0.08);
}

.plan-finder label {
  color: var(--nav-bg);
  font-weight: 700;
  font-size: 1rem;
}

.plan-finder select {
  width: 100%;
  margin-bottom: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  color: var(--gray-600);
  font: inherit;
  background: #fff;
}

.plan-finder select:focus,
.faq-toolbar input:focus {
  outline: 3px solid rgba(0, 180, 216, 0.25);
  border-color: var(--accent-color);
}

.finder-result {
  min-height: 28px;
  margin: 0.45rem 0 0;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 1rem;
}

.cta-strip-light {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent-color));
}

/* ===================== FAQ ===================== */
.faq-section {
  max-width: 900px !important;
  padding-top: 3rem !important;
  padding-bottom: 5.5rem !important;
}

.faq-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-toolbar input {
  flex: 1;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font: inherit;
  color: var(--gray-600);
}

.faq-toolbar span {
  color: var(--gray-500);
  font-size: 0.95rem;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item[open] {
  border-color: var(--accent-sky);
  box-shadow: 0 10px 22px rgba(24, 78, 119, 0.06);
}

.faq-item summary {
  position: relative;
  padding: 1.35rem 3.8rem 1.35rem 1.5rem;
  color: var(--nav-bg);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.45;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  font-size: 1.05rem;
}

.faq-empty {
  padding: 1rem;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent-dark);
}

.question-route {
  max-width: 100% !important;
  padding: 5.5rem 2rem;
  background: var(--gray-100);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.route-card {
  display: block;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}

.route-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(24, 78, 119, 0.1);
}

.route-card span {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 800;
}

.route-card strong {
  display: block;
  color: var(--nav-bg);
  margin-bottom: 0.55rem;
  font-size: 1.14rem;
}

.route-card p {
  margin: 0;
  font-size: 1rem;
}

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

/* ===================== ABOUT PAGE ===================== */
.about-page-header h1 { max-width: 950px; }

.about-introduction {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 6rem;
  align-items: center;
  max-width: 1160px !important;
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.about-intro-copy h2,
.achievement-copy h2,
.collaboration-section h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.35rem);
  line-height: 1.1;
}

.about-intro-copy > p:not(.hero-eyebrow) {
  max-width: 680px;
  font-size: 1.12rem;
  line-height: 1.8;
}

.about-principles {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: var(--gray-100);
}

.about-principles > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 1rem;
  padding: 1.3rem 0.8rem;
  border-bottom: 1px solid var(--gray-200);
}

.about-principles > div:last-child { border-bottom: 0; }

.about-principles span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--nav-bg);
  font-family: 'Manrope', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}

.about-principles strong {
  color: var(--nav-bg);
  font-family: 'Manrope', sans-serif;
  font-size: 1.04rem;
}

.about-principles p {
  margin: 0.25rem 0 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

.team-section {
  max-width: 100% !important;
  padding: 6rem max(2rem, calc((100% - 1120px) / 2)) !important;
  background: var(--gray-100);
}

.team-heading { max-width: 760px; margin: 0 auto 3rem; }

.team-heading h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.2rem);
  line-height: 1.1;
}

.team-heading p:not(.hero-eyebrow) { font-size: 1.12rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 355px;
  padding: 2.25rem;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 78, 119, 0.06);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--accent-cyan);
}

.team-card-ceo::before { background: linear-gradient(90deg, var(--accent-color), var(--accent-sky)); }

.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 1.6rem;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--nav-bg), var(--accent-color));
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.team-card:nth-child(3) .team-avatar { background: linear-gradient(145deg, var(--accent-dark), var(--accent-cyan)); }

.team-role {
  margin: 0 0 0.55rem;
  color: var(--accent-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card h3 { margin-bottom: 0.85rem; font-size: 1.45rem; line-height: 1.2; }
.team-card > p:not(.team-role) { font-size: 1rem; line-height: 1.65; }

.team-card a {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--accent-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.team-card a:hover { color: var(--nav-bg); }

.achievement-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 5rem;
  align-items: center;
  max-width: 100% !important;
  padding: 6rem max(2rem, calc((100% - 1120px) / 2)) !important;
  background: linear-gradient(125deg, var(--nav-bg), #153f63 65%, var(--accent-dark));
}

.achievement-copy h2, .achievement-copy p { color: #fff; }

.achievement-copy p:not(.hero-eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.achievement-copy .hero-eyebrow { color: var(--accent-pale); }

.achievement-copy .btn { margin-top: 0.7rem; background: #fff; color: var(--nav-bg); }
.achievement-copy .btn:hover { background: var(--accent-mint); }

.achievement-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
}

.achievement-data > div { min-height: 142px; padding: 1.6rem; background: rgba(255, 255, 255, 0.08); }
.achievement-data > div:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.15); }
.achievement-data > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.achievement-data strong, .achievement-data span { display: block; }

.achievement-data strong {
  margin-bottom: 0.25rem;
  color: var(--accent-pale);
  font-family: 'Manrope', sans-serif;
  font-size: 2.35rem;
  line-height: 1;
}

.achievement-data span { color: rgba(255, 255, 255, 0.84); font-size: 0.95rem; line-height: 1.35; }

.achievement-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1120px !important;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.achievement-photo {
  overflow: hidden;
  border-radius: 22px;
  background: var(--gray-100);
  box-shadow: 0 16px 35px rgba(24, 78, 119, 0.1);
}

.achievement-photo img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.achievement-photo figcaption { padding: 1rem 1.25rem; color: var(--gray-500); font-size: 0.92rem; line-height: 1.5; }

.collaboration-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 4rem;
  align-items: center;
  max-width: 100% !important;
  padding: 5.5rem max(2rem, calc((100% - 1120px) / 2)) !important;
  background: linear-gradient(135deg, #eff8f4, #ffffff);
}

.collaboration-section > div > p:not(.hero-eyebrow) { max-width: 690px; font-size: 1.1rem; }

.collaboration-contact {
  display: grid;
  gap: 0.65rem;
  padding: 2.25rem;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 78, 119, 0.06);
}

.collaboration-contact span {
  margin-bottom: 0.35rem;
  color: var(--gray-500);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collaboration-contact a {
  width: fit-content;
  color: var(--accent-dark);
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.collaboration-contact a:hover { color: var(--nav-bg); }

@media (max-width: 980px) {
  .hero-home {
    min-height: auto;
    padding: 4rem 2rem;
    background-image: linear-gradient(135deg, #f2faf8 0%, #ffffff 62%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    display: block;
    min-height: 480px;
  }

  .hero-main-image {
    height: 480px;
    object-fit: contain;
    background: #eef7f4;
  }

  .about-introduction,
  .achievement-section,
  .collaboration-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-card {
    min-height: 390px;
    padding: 1.8rem;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .logo-img {
    height: 38px;
  }
  .hero {
    padding: 3rem 1.5rem 2.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-home {
    padding: 3rem 1.5rem 3.5rem;
  }
  .hero-layout,
  .kit-section,
  .plan-finder-section,
  .about-introduction,
  .achievement-section,
  .collaboration-section {
    grid-template-columns: 1fr;
  }
  .hero-copy .hero-subtitle {
    text-align: center;
    margin-left: auto;
  }
  .hero-copy .hero-actions,
  .hero-copy .hero-proof {
    justify-content: center;
  }
  .hero-media {
    min-height: auto;
    margin-top: 0.5rem;
  }
  .hero-main-image {
    height: auto;
    max-height: 420px;
    object-fit: contain;
  }
  .hero-live-card {
    left: 0.75rem;
    bottom: 0.75rem;
  }
  .hero-metric {
    right: 0.75rem;
    top: 0.75rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .quote-content {
    flex-direction: column;
    gap: 2rem;
  }
  .quote-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .benefits {
    flex-direction: column;
  }
  .product-grid,
  .pricing-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .audience-content,
  .feature-band,
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .showcase-section {
    padding: 3rem 1.5rem;
  }
  .showcase-slide {
    grid-template-columns: 1fr;
  }
  .showcase-slide img {
    height: 300px;
  }
  .showcase-copy {
    min-height: 220px;
    padding: 1.75rem;
  }
  .insulink-swiper .swiper-button-next,
  .insulink-swiper .swiper-button-prev {
    display: none;
  }
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
    margin: 3rem 1.25rem !important;
    padding: 2rem !important;
  }
  .kit-section {
    gap: 2rem;
    margin: 2rem auto 3rem;
  }
  .plan-finder-section {
    gap: 1.5rem;
    padding: 3rem 2rem;
  }
  .faq-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .faq-toolbar input {
    width: 100%;
  }
  .route-grid {
    grid-template-columns: 1fr;
  }
  .step, .step:nth-child(even) {
    flex-direction: column;
  }
  .about-content {
    flex-direction: column;
  }
  .about-introduction,
  .team-section,
  .achievement-section,
  .achievement-gallery,
  .collaboration-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .team-grid,
  .achievement-gallery {
    grid-template-columns: 1fr;
  }
  .team-card {
    min-height: 0;
    padding: 2rem;
  }
  .achievement-data {
    width: 100%;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
  }
}
