/* ═══════════════════════════════════════════
   QR MerchPros — Corporate Cloud Aesthetic
   Soft blues, confident greens, airy & trustworthy
   ═══════════════════════════════════════════ */

:root {
  --navy: #1b2e4a;
  --navy-light: #2c4268;
  --navy-muted: #4a6181;
  --sky: #dce8f8;
  --sky-light: #e8f0fe;
  --sky-pale: #f0f5ff;
  --ice: #f6f9ff;
  --green: #2d6a4f;
  --green-hover: #245a42;
  --green-light: #d8f3dc;
  --green-pale: #eaf7ed;
  --text: #1b2e4a;
  --text-body: #3d5275;
  --text-muted: #6b839e;
  --border: #d0ddef;
  --border-light: #e4edf8;
  --white: #ffffff;
  --surface: #f6f9ff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 1px 4px rgba(27,46,74,0.06);
  --shadow-md: 0 4px 16px rgba(27,46,74,0.08);
  --shadow-lg: 0 8px 32px rgba(27,46,74,0.1);
  --shadow-card: 0 2px 12px rgba(27,46,74,0.06), 0 0 0 1px rgba(27,46,74,0.04);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.01em;
  cursor: pointer;
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(45,106,79,0.25);
}
.btn--green:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

.btn--outline {
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: var(--white);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--sky-pale);
}

.btn--white {
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ── Section Scaffolding ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section--sky {
  background: linear-gradient(180deg, var(--sky-light) 0%, var(--sky) 100%);
}

.section--ice {
  background: var(--ice);
}

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

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s var(--ease-out);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom-color: var(--border-light);
  box-shadow: 0 1px 8px rgba(27,46,74,0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
}

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

.logo-img--footer {
  height: 36px;
  filter: brightness(1.8) contrast(0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  background: var(--green);
  padding: 9px 22px;
  border-radius: 8px;
  transition: all 0.25s var(--ease-out) !important;
  box-shadow: 0 2px 8px rgba(45,106,79,0.2);
}
.nav-cta:hover {
  background: var(--green-hover) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10001;
  padding: 4px;
  position: relative;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Menu (standalone, outside header) ── */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,46,74,0.3);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  padding: 4px 0;
}

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

.mobile-menu__cta {
  margin-top: 12px;
  background: var(--green);
  color: var(--white) !important;
  padding: 14px 40px !important;
  border-radius: var(--radius);
  font-size: 1rem !important;
  box-shadow: 0 2px 8px rgba(45,106,79,0.25);
  transition: background 0.2s, transform 0.2s;
}

.mobile-menu__cta:hover {
  background: var(--green-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
}

body.menu-open {
  overflow: hidden;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(175deg, var(--sky-light) 0%, var(--sky) 40%, #d4e3f5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,46,74,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-heading em {
  font-style: normal;
  color: var(--green);
  font-weight: 700;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  animation: fadeUp 0.9s var(--ease-out) 0.15s both;
  position: relative;
}

.hero-illustration {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(27,46,74,0.04);
  position: relative;
}

.hero-illustration__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-qr-visual {
  width: 120px;
  height: 120px;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-qr-visual svg {
  width: 72px;
  height: 72px;
}

.hero-qr-label {
  text-align: center;
}

.hero-qr-label strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.hero-qr-label span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.hero-mini-card {
  background: var(--sky-pale);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
}

.hero-mini-card__icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.hero-mini-card__text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-float-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--green);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   VALUE PROPOSITION / SECOND HERO
   ═══════════════════════════════════════════ */
.value-prop {
  padding: 80px 0;
  background: var(--white);
}

.value-prop .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.value-prop__visual {
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: unset;
  position: relative;
  overflow: hidden;
}

.value-prop__visual img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

.value-prop__visual svg {
  width: 200px;
  height: 200px;
  opacity: 0.9;
}

.value-prop__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.value-prop__content p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PAIN POINTS
   ═══════════════════════════════════════════ */
.pain-points {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--sky-pale) 100%);
}

.pain-points .container {
  max-width: 700px;
  text-align: center;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
  text-align: left;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.5;
}

.pain-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-item__icon--x {
  background: #fde8e8;
  color: #c53030;
}

.pain-item__icon--check {
  background: var(--green-light);
  color: var(--green);
}

.pain-item__icon svg {
  width: 14px;
  height: 14px;
}

.pain-resolve {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 28px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(175deg, var(--sky-light) 0%, var(--sky) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.step-card__icon {
  width: 48px;
  height: 48px;
  background: var(--sky-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.step-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--navy);
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq .container {
  max-width: 800px;
}

.faq-list {
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--green); }

.faq-question__marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
  font-size: 0.8rem;
  color: var(--navy);
}

.faq-item.open .faq-question__marker {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-top: 14px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   WHO WE HELP
   ═══════════════════════════════════════════ */
.who-helps {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--sky-light) 100%);
}

.helps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-out);
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.help-card__icon {
  width: 52px;
  height: 52px;
  background: var(--sky-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.help-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
}

.help-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.help-card ul {
  margin-bottom: 20px;
}

.help-card li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.help-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.help-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.help-card__link:hover { gap: 10px; }

/* ═══════════════════════════════════════════
   ABOUT / DASHBOARD SECTION
   ═══════════════════════════════════════════ */
.about-dashboard {
  padding: 100px 0;
  background: var(--white);
}

.about-dashboard .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.dashboard-mockup {
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.dashboard-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dashboard-topbar {
  background: var(--navy);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.dashboard-dot:first-child { background: #ff6058; }
.dashboard-dot:nth-child(2) { background: #ffbd2e; }
.dashboard-dot:nth-child(3) { background: #27ca40; }

.dashboard-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-widget {
  background: var(--sky-pale);
  border-radius: var(--radius);
  padding: 16px;
}

.dash-widget__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.dash-widget__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.dash-widget__bar {
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}

.dash-widget__fill {
  height: 100%;
  border-radius: 3px;
  background: var(--green);
}

.about-dashboard__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-dashboard__content > p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.info-box {
  background: var(--sky-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-left: 4px solid var(--green);
  margin-top: 24px;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.15) 0%, transparent 70%);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
}

/* ═══════════════════════════════════════════
   ABOUT (DETAILED)
   ═══════════════════════════════════════════ */
.about-detail {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--sky-pale) 0%, var(--white) 100%);
}

.about-detail .container {
  max-width: 800px;
}

.about-detail h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.about-detail > .container > p {
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 48px;
  font-size: 1.02rem;
}

.mission-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--green);
}

.mission-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-block p {
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   CONTACT / DEMO
   ═══════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: linear-gradient(175deg, var(--sky-light) 0%, var(--sky) 100%);
}

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

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}

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

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

.demo-schedule {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.demo-schedule h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.calendar-placeholder {
  background: var(--sky-pale);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-header__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.calendar-header__nav {
  display: flex;
  gap: 8px;
}

.calendar-header__nav button {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: background 0.2s;
}
.calendar-header__nav button:hover { background: var(--sky-light); }

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-days .day-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.calendar-days .day {
  font-size: 0.82rem;
  padding: 8px 0;
  border-radius: 6px;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.15s;
  font-weight: 500;
}

.calendar-days .day:hover {
  background: var(--green-light);
  color: var(--green);
}

.calendar-days .day--empty {
  pointer-events: none;
}

.calendar-days .day--today {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

.calendar-times {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.time-slot {
  padding: 8px 14px;
  border-radius: 6px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.15s;
}
.time-slot:hover {
  background: var(--green);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-social:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 968px) {
  .hero .container,
  .value-prop .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .value-prop__visual { order: 2; display: none; }
  .value-prop__content { order: 1; }

  .hero { padding: 120px 0 60px; }
  .hero-heading { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .hero-visual { max-width: 420px; margin: 0 auto; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .helps-grid { grid-template-columns: 1fr 1fr !important; max-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links--desktop { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }

  .helps-grid { grid-template-columns: 1fr !important; }

  .steps-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-mini-cards { grid-template-columns: 1fr; }

  .dashboard-body { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .cta-banner { padding: 60px 0; }

  .mission-block { padding: 28px; }

  .contact-form-wrap, .demo-schedule { padding: 24px; }
}
