/* ============================================================
   EVENWARE ERP — Global Stylesheet
   Design System: INN-EVW-2026-P01 v2.0
   Font: DM Sans | White/Light background
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---- Design Tokens ---- */
:root {
  --color-bg:          #FFFFFF;
  --color-bg-secondary:#F7F8FA;
  --color-bg-tertiary: #EEF2F7;
  --color-accent:      #1A73E8;
  --color-accent-dark: #1558b0;
  --color-teal:        #0E9E7E;
  --color-teal-dark:   #0a7d63;
  --color-heading:     #111111;
  --color-body:        #444444;
  --color-muted:       #888888;
  --color-border:      #E8E8E8;
  --color-footer-bg:   #F7F8FA;
  --color-footer-text: #555555;
  --color-footer-link: #111111;

  --font-family: 'DM Sans', Inter, -apple-system, sans-serif;

  --radius-card:   12px;
  --radius-btn:    6px;
  --radius-img:    16px;
  --radius-sm:     8px;

  --shadow-card:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-nav:    0 2px 12px rgba(0,0,0,0.08);

  --section-pad-desktop: 110px;
  --section-pad-tablet:  72px;
  --section-pad-mobile:  56px;
  --container-width: 1200px;

  --transition: 0.25s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0; } }

/* ---- Section ---- */
.section { padding: var(--section-pad-desktop) 0; }
.section--grey { background: var(--color-bg-secondary); }
.section--light { background: var(--color-bg-tertiary); }

@media (max-width: 1023px) { .section { padding: var(--section-pad-tablet) 0; } }
@media (max-width: 767px)  { .section { padding: var(--section-pad-mobile) 0; } }

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
h1, h2, h3, h4 { color: var(--color-heading); line-height: 1.15; }
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; letter-spacing: -0.3px; line-height: 1.2; }
h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 600; }
h4 { font-size: 19px; font-weight: 600; }
p  { color: var(--color-body); line-height: 1.75; }

.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header p {
  font-size: 17px;
  color: var(--color-body);
  max-width: 640px;
  margin-top: 16px;
}
.section-header--center p { margin: 16px auto 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: var(--radius-btn);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
  padding: 14px 28px;
  border: 1.5px solid var(--color-accent);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--color-accent);
  padding: 12px 24px;
  border: 1.5px solid var(--color-accent);
}
.btn--secondary:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: 12px 24px;
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.btn--teal {
  background: var(--color-teal);
  color: #fff;
  padding: 14px 28px;
  border: 1.5px solid var(--color-teal);
}
.btn--teal:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  transform: translateY(-1px);
}
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 0.5px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-nav);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 36px; height: 36px;
  background: var(--color-accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-heading);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  display: flex; align-items: center; gap: 4px;
  position: relative;
}
.nav__link:hover { color: var(--color-accent); background: var(--color-bg-secondary); }
.nav__link--active { color: var(--color-accent); }

/* Mega-menu */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger { cursor: pointer; }
.nav__dropdown-trigger svg { transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%; transform: translateX(-50%);
  width: 680px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  pointer-events: none;
}
.nav__dropdown:hover .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav__mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav__mega-item:hover { background: var(--color-bg-secondary); }
.nav__mega-icon {
  width: 36px; height: 36px;
  background: var(--color-bg-tertiary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}
.nav__mega-content h4 { font-size: 14px; font-weight: 600; color: var(--color-heading); margin-bottom: 2px; }
.nav__mega-content p  { font-size: 12px; color: var(--color-muted); line-height: 1.4; }

/* Nav CTA */
.nav__cta { margin-left: 12px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--transition);
}
.nav__hamburger:hover { background: var(--color-bg-secondary); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-heading);
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.nav__mobile-link:hover { color: var(--color-accent); }
.nav__mobile-submenu { padding-left: 16px; }
.nav__mobile-submenu-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-muted);
  padding: 16px 0 8px;
}
.nav__mobile-cta { margin-top: 24px; }

@media (max-width: 1023px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: block; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding-top: calc(70px + 80px);
  padding-bottom: 100px;
  background: var(--color-bg);
  overflow: hidden;
}
@media (max-width: 767px) { .hero { padding-top: calc(70px + 56px); padding-bottom: 64px; } }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1023px) { .hero__inner { grid-template-columns: 1fr; gap: 48px; } }

.hero__content {}
.hero__eyebrow { margin-bottom: 20px; }
.hero__headline {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__headline span { color: var(--color-accent); }
.hero__sub {
  font-size: 18px;
  color: var(--color-body);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual — CSS dashboard mockup */
.hero__visual {
  position: relative;
}
.hero__dashboard {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(26,115,232,0.08), 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}
.hero__dash-header {
  background: var(--color-heading);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero__dash-dot:nth-child(1) { background: #FF5F57; }
.hero__dash-dot:nth-child(2) { background: #FFBD2E; }
.hero__dash-dot:nth-child(3) { background: #28CA41; }
.hero__dash-title { color: #888; font-size: 12px; margin-left: 8px; }

.hero__dash-body { padding: 24px; }
.hero__dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.hero__dash-stat {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px;
}
.hero__dash-stat-label { font-size: 11px; color: var(--color-muted); font-weight: 500; margin-bottom: 4px; }
.hero__dash-stat-value { font-size: 22px; font-weight: 700; color: var(--color-heading); }
.hero__dash-stat-value.accent { color: var(--color-accent); }
.hero__dash-stat-value.teal   { color: var(--color-teal); }

.hero__dash-chart {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}
.hero__dash-chart-label { font-size: 12px; font-weight: 600; color: var(--color-heading); margin-bottom: 12px; }
.hero__dash-bars { display: flex; align-items: flex-end; gap: 8px; height: 60px; }
.hero__dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--color-bg-tertiary);
  transition: background 0.3s;
}
.hero__dash-bar.active { background: var(--color-accent); }

.hero__dash-rows {}
.hero__dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}
.hero__dash-row:last-child { border-bottom: none; }
.hero__dash-row-label { color: var(--color-body); font-weight: 500; }
.hero__dash-row-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.badge--green { background: #E6F9F4; color: var(--color-teal); }
.badge--blue  { background: #E8F1FD; color: var(--color-accent); }
.badge--grey  { background: var(--color-bg-secondary); color: var(--color-muted); }

/* Floating cards */
.hero__float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero__float-card .icon { font-size: 18px; }
.hero__float-card--tl { top: -16px; left: -24px; }
.hero__float-card--br { bottom: 32px; right: -24px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  padding: 48px 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust__label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 767px) { .trust__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.trust__stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1;
  margin-bottom: 6px;
}
.trust__stat-value span { color: var(--color-accent); }
.trust__stat-label {
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.videos { background: var(--color-bg); }

.video-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.video-block:last-of-type { margin-bottom: 0; }
.video-block--reverse { direction: rtl; }
.video-block--reverse > * { direction: ltr; }
@media (max-width: 1023px) {
  .video-block { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .video-block--reverse > * { direction: ltr; }
}

.video-frame {
  position: relative;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame__placeholder {
  text-align: center;
  color: var(--color-muted);
}
.video-frame__play {
  width: 64px; height: 64px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}
.video-frame__play:hover { transform: scale(1.1); background: var(--color-accent-dark); }
.video-frame__play svg { margin-left: 4px; }
.video-frame__caption { font-size: 14px; }

.video-content__eyebrow { margin-bottom: 16px; }
.video-content h2 { margin-bottom: 20px; }
.video-content p { margin-bottom: 24px; color: var(--color-body); }

/* Interactive keyword strip */
.keyword-strip {
  text-align: center;
  padding: 64px 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 80px 0;
}
.keyword-strip h3 { margin-bottom: 24px; color: var(--color-muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.keyword-strip__words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.keyword {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-heading);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}
.keyword.visible { opacity: 1; transform: translateY(0); }
.keyword--accent { color: var(--color-accent); }
.keyword--teal   { color: var(--color-teal); }

/* ============================================================
   FEATURES BENTO
   ============================================================ */
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1023px) { .features-bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .features-bento { grid-template-columns: 1fr; } }

.feature-card {
  --accent: #1A73E8;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 32px 32px;
  transition: box-shadow 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}

/* Coloured top accent bar */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 20px 20px 0 0;
}

/* Soft gradient wash from accent colour */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 70%);
  pointer-events: none;
  border-radius: inherit;
}

.feature-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.10), 0 6px 16px rgba(0,0,0,0.06);
}

/* Ghost number watermark */
.fc-ghost {
  position: absolute;
  bottom: -10px;
  right: 18px;
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
}

/* Icon */
.feature-card__icon {
  width: 52px; height: 52px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
  position: relative; z-index: 1;
  transition: transform 0.25s ease;
}
.feature-card:hover .feature-card__icon { transform: scale(1.1); }

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.feature-card p {
  font-size: 15px;
  color: var(--color-body);
  margin-bottom: 20px;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.feature-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  position: relative; z-index: 1;
}
.feature-card__link:hover { gap: 10px; }

/* Wide card — spans 2 columns */
.fbento-wide {
  grid-column: span 2;
  padding: 44px 40px 40px;
}
.fbento-wide h3 { font-size: 22px; }
.fbento-wide p  { font-size: 16px; max-width: 520px; }
@media (max-width: 1023px) { .fbento-wide { grid-column: span 1; } }

/* Full-width card — spans all columns, horizontal layout */
.fbento-full {
  grid-column: 1 / -1;
  padding: 40px 44px;
}
.fc-full-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative; z-index: 1;
}
.fbento-full .feature-card__icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  flex-shrink: 0;
  margin-bottom: 0;
}
.fc-full-body h3 { font-size: 20px; }
.fc-full-body p  { margin-bottom: 16px; max-width: 680px; }
@media (max-width: 599px) {
  .fbento-full { padding: 32px 24px; }
  .fc-full-inner { flex-direction: column; gap: 20px; }
}

.features-cta { text-align: center; margin-top: 56px; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1023px) { .about__inner { grid-template-columns: 1fr; gap: 48px; } }

.about__content h2 { margin-bottom: 20px; }
.about__content p  { margin-bottom: 16px; color: var(--color-body); }
.about__content p:last-of-type { margin-bottom: 32px; }

.about__visual {
  position: relative;
}
.about__img-wrap {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-img);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__img-placeholder {
  text-align: center;
  color: var(--color-muted);
  padding: 40px;
}
.about__img-placeholder svg { margin: 0 auto 16px; color: var(--color-accent); opacity: 0.4; }
.about__img-placeholder p { font-size: 14px; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--color-border);
}
@media (max-width: 767px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat-item { text-align: center; }
.stat-item__value {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__value .accent { color: var(--color-accent); }
.stat-item__label { font-size: 14px; color: var(--color-muted); font-weight: 500; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1023px) { .contact__inner { grid-template-columns: 1fr; gap: 48px; } }

/* Form */
.form-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--color-accent); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 15px;
  color: var(--color-heading);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control::placeholder { color: var(--color-muted); }
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 599px) { .form-row { grid-template-columns: 1fr; } }

/* Contact sidebar */
.contact__info h2 { margin-bottom: 16px; }
.contact__info > p { margin-bottom: 32px; color: var(--color-body); }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-card);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 32px;
  transition: background var(--transition), transform var(--transition);
}
.whatsapp-btn:hover { background: #1fb855; transform: translateY(-2px); }
.whatsapp-btn__icon { font-size: 28px; flex-shrink: 0; }
.whatsapp-btn__text { font-size: 13px; font-weight: 400; opacity: 0.85; }

.contact__details { display: flex; flex-direction: column; gap: 16px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-body);
}
.contact__detail-icon {
  width: 40px; height: 40px;
  background: var(--color-bg-tertiary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--color-bg-tertiary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p  { max-width: 560px; margin: 0 auto 36px; color: var(--color-body); }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   LEGAL PAGES (privacy, terms, cookie policy)
   ============================================================ */
.legal-section {
  padding: 60px 0 100px;
}

.legal-body {
  max-width: 780px;
}

.legal-body p {
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.legal-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: var(--space-8) 0 var(--space-3);
}

.legal-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-heading);
  margin: var(--space-6) 0 var(--space-2);
}

.legal-body ul {
  margin: 0 0 var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-body ul li {
  color: var(--color-body);
  line-height: 1.7;
  list-style: disc;
}

.legal-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body a:hover { opacity: 0.8; }

/* Cookie table */
.cookie-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-6);
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cookie-table th {
  background: var(--color-bg-secondary);
  color: var(--color-heading);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.cookie-table td {
  padding: 12px 16px;
  color: var(--color-body);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  line-height: 1.6;
}

.cookie-table tr:last-child td { border-bottom: none; }

.cookie-table code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85em;
  background: var(--color-bg-tertiary);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--color-accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}
.footer__grid,
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 1023px) { .footer__grid, .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 599px)  { .footer__grid, .footer__inner { grid-template-columns: 1fr; } }

/* footer__col ul links (used in legal/secondary pages) */
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 14px; color: var(--color-footer-text); transition: color var(--transition); }
.footer__col ul a:hover { color: var(--color-accent); }
.footer__brand p { font-size: 14px; line-height: 1.6; margin-bottom: 24px; color: var(--color-footer-text); }

.footer__brand { }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 16px;
}
.footer__logo-mark {
  width: 32px; height: 32px;
  background: var(--color-accent);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer__tagline { font-size: 14px; line-height: 1.6; margin-bottom: 24px; color: var(--color-footer-text); }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-footer-text);
  transition: background var(--transition), color var(--transition);
}
.footer__social-link:hover { background: var(--color-accent); color: #fff; }

.footer__col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--color-heading); margin-bottom: 20px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 14px;
  color: var(--color-footer-text);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--color-accent); }

.footer__bottom {
  border-top-color: var(--color-border);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: var(--color-muted); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--color-accent); }

/* ============================================================
   STICKY WHATSAPP BUTTON
   ============================================================ */
.wa-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  color: #fff;
}
.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}
.wa-sticky svg { width: 28px; height: 28px; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  background: var(--color-heading);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.8); max-width: 640px; }
.cookie-banner p a { color: var(--color-accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-btn--accept { background: var(--color-accent); color: #fff; }
.cookie-btn--accept:hover { background: var(--color-accent-dark); }
.cookie-btn--reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.cookie-btn--reject:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   PAGE HERO BANNER (feature/blog/legal pages)
   ============================================================ */
.page-hero {
  background: var(--color-bg-secondary);
  padding: calc(70px + 64px) 0 64px;
  border-bottom: 1px solid var(--color-border);
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: var(--color-accent); }
.page-hero__breadcrumb span { color: var(--color-muted); }
.page-hero h1 { max-width: 760px; margin-bottom: 16px; }
.page-hero p  { font-size: 18px; color: var(--color-body); max-width: 640px; }

/* ============================================================
   FEATURE SUB-PAGE SECTIONS
   ============================================================ */
.feature-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1023px) { .feature-overview__inner { grid-template-columns: 1fr; gap: 40px; } }

.screenshot-frame {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.screenshot-frame__placeholder {
  text-align: center;
  color: var(--color-muted);
  padding: 32px;
}
.screenshot-frame__placeholder svg { margin: 0 auto 12px; opacity: 0.35; }

/* Benefits strip */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1023px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
}
.benefit-card__icon {
  width: 44px; height: 44px;
  background: var(--color-bg-tertiary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.benefit-card h4 { margin-bottom: 8px; font-size: 17px; }
.benefit-card p  { font-size: 14px; color: var(--color-body); line-height: 1.6; }

/* How it works */
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step__left { display: flex; flex-direction: column; align-items: center; }
.step__num {
  width: 44px; height: 44px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.step__line {
  width: 2px;
  flex: 1;
  background: var(--color-border);
  margin-top: 8px;
  min-height: 32px;
}
.step:last-child .step__line { display: none; }
.step__content { padding-top: 8px; }
.step__content h4 { margin-bottom: 8px; }
.step__content p  { font-size: 15px; color: var(--color-body); }

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) { .checklist { grid-template-columns: 1fr; } }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-body);
}
.checklist-item__icon {
  width: 22px; height: 22px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Related features */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURES OVERVIEW PAGE
   ============================================================ */
.features-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1023px) { .features-overview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .features-overview-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1023px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 599px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,115,232,0.08);
}
.blog-card__img {
  background: var(--color-bg-tertiary);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  font-size: 13px;
  overflow: hidden;
}
.blog-card__body { padding: 24px; }
.blog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  background: #E8F1FD;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.35; }
.blog-card p  { font-size: 14px; color: var(--color-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-card__meta { font-size: 13px; color: var(--color-muted); display: flex; gap: 12px; }
.blog-card__read { color: var(--color-accent); font-size: 14px; font-weight: 600; }

/* Blog post */
.post__header { margin-bottom: 48px; }
.post__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--color-muted); margin-top: 16px; }
.post__body { max-width: 760px; }
.post__body h2 { font-size: 28px; margin: 40px 0 16px; }
.post__body h3 { font-size: 22px; margin: 32px 0 12px; }
.post__body p  { margin-bottom: 20px; font-size: 17px; line-height: 1.8; }
.post__body ul { margin: 0 0 20px 24px; }
.post__body ul li { margin-bottom: 8px; font-size: 17px; line-height: 1.75; list-style: disc; }

/* Author bio */
.author-bio {
  display: flex;
  gap: 20px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px;
  margin-top: 64px;
}
.author-bio__avatar {
  width: 60px; height: 60px;
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
}
.author-bio h4 { margin-bottom: 6px; }
.author-bio p  { font-size: 14px; color: var(--color-muted); }

/* Social share */
.social-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; }
.social-share__label { font-size: 14px; font-weight: 600; color: var(--color-heading); }
.social-share__btn {
  width: 36px; height: 36px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-muted);
  transition: background var(--transition), color var(--transition);
}
.social-share__btn:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* ============================================================
   LEGAL / SUPPORTING PAGES
   ============================================================ */
.legal__body {
  max-width: 760px;
}
.legal__body h2 { font-size: 24px; margin: 40px 0 12px; color: var(--color-heading); }
.legal__body h3 { font-size: 19px; margin: 28px 0 10px; color: var(--color-heading); }
.legal__body p  { margin-bottom: 16px; font-size: 16px; line-height: 1.75; color: var(--color-body); }
.legal__body ul { margin: 0 0 16px 24px; }
.legal__body ul li { margin-bottom: 8px; font-size: 16px; line-height: 1.75; list-style: disc; color: var(--color-body); }
.legal__body a  { color: var(--color-accent); text-decoration: underline; }

/* Thank you page */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.thankyou__icon {
  width: 80px; height: 80px;
  background: var(--color-bg-tertiary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  color: var(--color-teal);
}
.thankyou h1 { font-size: 36px; margin-bottom: 16px; }
.thankyou p  { max-width: 480px; margin: 0 auto 32px; font-size: 17px; color: var(--color-body); }

/* 404 page */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.notfound__num {
  font-size: 140px;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -24px;
}
.notfound h1 { font-size: 36px; margin-bottom: 16px; }
.notfound p  { max-width: 440px; margin: 0 auto 32px; color: var(--color-body); }
.notfound__links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }
.fade-up-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-accent { color: var(--color-accent); }
.text-teal   { color: var(--color-teal); }
.text-muted  { color: var(--color-muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px;  }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.d-flex { display: flex; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
