/* ===== Chinco Website Styles ===== */
:root {
  --navy: #0a1f3d;
  --navy-mid: #122a4a;
  --navy-light: #1a3a5c;
  --blue: #1e5a8a;
  --blue-bright: #2b7bb5;
  --green: #2ecc71;
  --green-dark: #27ae60;
  --green-light: #58d68d;
  --white: #ffffff;
  --off-white: #f5f8fb;
  --gray: #6b7c8f;
  --gray-light: #e8eef4;
  --text: #1a2b3c;
  --text-muted: #5a6d7e;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(10, 31, 61, 0.12);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-nav {
  background: var(--green);
  color: var(--navy);
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-nav:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-nav-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 6px 14px;
  font-size: 0.82rem;
}

.btn-nav-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--green-light);
  color: var(--green-light);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 61, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--green-light);
}

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(10, 31, 61, 0.72) 0%, rgba(13, 42, 74, 0.65) 45%, rgba(8, 35, 45, 0.78) 100%),
    url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 75% 25%, rgba(46, 204, 113, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 15% 85%, rgba(30, 90, 138, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-light);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ===== Sections Common ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header.light h2 {
  color: var(--white);
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-header.light .section-lead {
  color: rgba(255,255,255,0.75);
}

/* ===== Challenge ===== */
.challenge {
  background: var(--off-white);
}

.challenge-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.challenge-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 31, 61, 0.15);
}

.challenge-card .icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.challenge-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.challenge-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.challenge-cta {
  margin-top: 48px;
  text-align: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.challenge-cta strong {
  color: var(--green-light);
}

/* ===== Solution ===== */
.solution {
  background-color: var(--navy);
  background-image:
    linear-gradient(160deg, rgba(10, 31, 61, 0.78) 0%, rgba(18, 42, 74, 0.72) 100%),
    url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.solution-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
}

.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.process-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  flex: 1 1 160px;
  max-width: 200px;
}

.process-step.highlight {
  background: rgba(46, 204, 113, 0.15);
  border-color: var(--green);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.process-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--green);
  font-weight: 300;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.result-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--green);
}

.result-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--green-light);
}

.result-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.benefits-box {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.benefits-box h3 {
  font-size: 1.3rem;
  margin-bottom: 28px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
  text-align: left;
}

.benefits-row strong {
  display: block;
  color: var(--green-light);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.benefits-row span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.tagline {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-light);
  letter-spacing: 0.02em;
}

/* ===== Applications ===== */
.applications {
  background: var(--white);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.app-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.app-card:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-4px);
}

.app-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.app-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.apps-tagline {
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}

/* ===== Benefits ===== */
.benefits {
  background-color: var(--navy);
  background-image:
    linear-gradient(160deg, rgba(18, 42, 74, 0.75) 0%, rgba(10, 31, 61, 0.8) 100%),
    url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.key-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.kb-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.kb-card h4 {
  color: var(--green-light);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.kb-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.results-panel {
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.results-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 32px;
}

.results-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
}

.rs-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-light);
}

.rs-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.results-panel blockquote {
  font-size: 1.15rem;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.results-panel cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--green-light);
  margin-top: 8px;
}

.disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

.case-study {
  margin-top: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(46, 204, 113, 0.35);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.case-study-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--green);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.case-study h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.case-study-meta {
  font-size: 0.9rem;
  color: var(--green-light);
  margin-bottom: 14px;
}

.case-study p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.case-study-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.case-btn-dark {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}

.case-btn-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ===== FAQ ===== */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--green-dark);
  font-weight: 700;
  flex-shrink: 0;
}

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

.faq-item p {
  padding: 0 20px 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== Mobile sticky CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  background: var(--green);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(10, 31, 61, 0.35);
  text-decoration: none;
}

.mobile-cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

@media (max-width: 900px) {
  .mobile-cta {
    display: inline-flex;
  }
}

/* ===== Partner ===== */
.partner {
  background: var(--off-white);
}

.partner-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.subhead {
  text-align: center;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 32px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.support-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.support-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

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

.product-commitment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-box, .commitment-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.product-box h3, .commitment-box h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-box h4 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.product-box ul {
  list-style: none;
  margin-bottom: 20px;
}

.product-box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.product-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.product-box .note {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
}

.commit-item {
  margin-bottom: 20px;
}

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

.commit-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.commit-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ===== Sales Agents ===== */
.agents {
  background: var(--off-white);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.agent-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  transition: transform var(--transition), box-shadow var(--transition);
}

.agent-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(10, 31, 61, 0.12);
}

.agent-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.agent-company {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.agent-areas {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.agent-contacts {
  list-style: none;
  margin-bottom: 16px;
  padding: 0;
}

.agent-contacts li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 3px 0;
}

.agent-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.agent-links a {
  font-size: 0.88rem;
  color: var(--blue-bright);
  font-weight: 500;
}

.agent-links a:hover {
  color: var(--green-dark);
}

/* ===== Contact ===== */
.contact {
  background-color: var(--navy);
  background-image:
    linear-gradient(160deg, rgba(10, 31, 61, 0.82) 0%, rgba(13, 42, 74, 0.78) 100%),
    url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item .label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-light);
  margin-bottom: 4px;
}

.contact-item a,
.contact-item span:not(.label) {
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--green-light);
}

.tagline-final {
  margin-top: 36px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-light);
}

.contact-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}

.form-heading {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--green-light);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  accent-color: var(--green);
}

/* Honeypot fields — hidden from users */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.g-recaptcha {
  margin-bottom: 16px;
  transform-origin: left top;
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

/* ===== Footer ===== */
.footer {
  background: #061428;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-logo {
  height: 48px;
  margin: 0 auto 8px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-social a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-social a:hover {
  color: var(--green-light);
}

.copyright {
  font-size: 0.8rem;
  margin-top: 8px;
}

.copyright a {
  color: rgba(255,255,255,0.55);
}

.copyright a:hover {
  color: var(--green-light);
}

/* ===== Results Gallery ===== */
.results-gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 31, 61, 0.15);
}

.gallery-img {
  height: 180px;
  background-color: var(--navy-mid);
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-caption {
  padding: 18px 20px;
}

.gallery-caption h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.gallery-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  opacity: 0.75;
  transition: opacity var(--transition);
}

.gallery-card:hover .gallery-link {
  opacity: 1;
}

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

.gallery-note code {
  background: var(--gray-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

/* ===== Testimonials ===== */
.testimonials {
  background-color: var(--navy);
  background-image:
    linear-gradient(160deg, rgba(10, 31, 61, 0.78) 0%, rgba(18, 42, 74, 0.74) 100%),
    url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.testimonial-card:hover {
  background: rgba(46, 204, 113, 0.12);
  border-color: var(--green);
  transform: translateY(-3px);
}

.testimonial-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.testimonial-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.testimonial-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.testimonial-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-light);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.testimonial-card:hover .testimonial-link {
  opacity: 1;
}

.testimonial-quote {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}

.testimonial-quote blockquote {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.testimonial-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--green-light);
}

/* ===== Downloads ===== */
.downloads {
  background: var(--white);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 32px;
}

.download-group h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
}

.download-list {
  list-style: none;
}

.download-list li {
  padding: 0;
  border-bottom: 1px solid var(--gray-light);
}

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

.download-list a {
  display: block;
  padding: 16px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}

.download-list a:hover {
  background: var(--off-white);
}

.download-list a:hover .dl-title {
  color: var(--green-dark);
}

.dl-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color var(--transition);
}

.dl-meta {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.downloads-note code {
  background: var(--gray-light);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .process-arrow {
    display: none;
  }

  .product-commitment {
    grid-template-columns: 1fr;
  }

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

  .contact-forms {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    gap: 24px;
  }

  .section {
    padding: 64px 0;
  }

  .results-stats {
    gap: 28px;
  }

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