@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Bootstrap overrides */
  --bs-primary: #00db6b;
  --bs-primary-rgb: 0, 219, 107;
  --bs-link-color: #00db6b;
  --bs-link-hover-color: #00b356;

  /* Brand */
  --color-primary: #00db6b;
  --color-primary-dark: #00b356;
  --color-primary-darker: #009147;
  --color-primary-light: #e6fff3;

  /* Products */
  --color-pass: #00db6b;
  --color-pass-dark: #00b356;
  --color-pass-light: #e6fff3;

  --color-gate: #2563eb;
  --color-gate-dark: #1e40af;
  --color-gate-light: #dbeafe;

  --color-crm: #f59e0b;
  --color-crm-dark: #d97706;
  --color-crm-light: #fef3c7;

  --color-school: #0d9488;
  --color-school-dark: #0f766e;
  --color-school-light: #ccfbf1;

  /* Neutrals — brand darks */
  --color-dark: #1f1c1c;
  --color-dark-soft: #2d2a2a;
  --color-dark-medium: #403d3d;
  --color-gray: #6b6868;
  --color-gray-light: #9c9898;
  --color-border: #e5e3e3;
  --color-light: #f7f6f6;
  --color-white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 8px 24px rgba(31, 28, 28, 0.08);
  --shadow-md: 0 16px 40px rgba(31, 28, 28, 0.12);
  --shadow-lg: 0 24px 60px rgba(31, 28, 28, 0.16);

  --container-max: 1200px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }

p { color: var(--color-gray); line-height: 1.75; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-primary-dark); }

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

.container { max-width: var(--container-max); padding: 0 1.5rem; margin: 0 auto; }

/* ─── Navbar ─── */
.navbar-identup {
  background: transparent;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.navbar-identup.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(31, 28, 28, 0.2);
  padding: 0.6rem 0;
}
.navbar-identup .navbar-brand img { height: 36px; width: auto; }
.navbar-identup .nav-link {
  color: var(--color-dark-soft);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  transition: color var(--transition);
}
.navbar-identup .nav-link:hover,
.navbar-identup .nav-link.active { color: var(--color-primary); }
.navbar-identup .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 220px;
}
.navbar-identup .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition);
}
.navbar-identup .dropdown-item:hover {
  background: var(--color-light);
  color: var(--color-primary);
}
.navbar-identup .dropdown-item .product-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.navbar-identup .navbar-toggler { border: none; padding: 0.4rem; color: var(--color-dark); }
.navbar-identup .navbar-toggler:focus { box-shadow: none; }

/* ─── Buttons ─── */
.btn-identup {
  background: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-identup:hover {
  background: var(--color-primary-dark);
  color: var(--color-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 219, 107, 0.35);
}
.btn-identup-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-identup-outline:hover {
  background: var(--color-primary);
  color: var(--color-dark);
  transform: translateY(-1px);
}
.btn-sm-identup { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg-identup { padding: 1rem 2.25rem; font-size: 1rem; }

/* ─── Sections ─── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-dark { background: var(--color-dark); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark p { color: var(--color-gray-light); }
.section-light { background: var(--color-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-darker);
  background: var(--color-pass-light);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ─── Hero ─── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1f1c1c 0%, #2d2a2a 50%, #1f1c1c 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(0, 219, 107, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 40%; height: 80%;
  background: radial-gradient(ellipse, rgba(0, 219, 107, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 219, 107, 0.12);
  border: 1px solid rgba(0, 219, 107, 0.3);
  color: #86efac;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-section h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero-section h1 span {
  background: linear-gradient(135deg, #00db6b, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .hero-desc {
  color: #9c9898;
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-product-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}
.hero-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
}
.hero-product-card .product-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.hero-product-card h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.hero-product-card p {
  color: #9c9898;
  font-size: 0.8rem;
  line-height: 1.5;
}
.hero-product-card.pass .product-icon  { background: rgba(0, 219, 107, 0.18); color: #00db6b; }
.hero-product-card.gate .product-icon  { background: rgba(37, 99, 235, 0.2);  color: #60a5fa; }
.hero-product-card.crm  .product-icon  { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.hero-product-card.school .product-icon { background: rgba(13, 148, 136, 0.2); color: #2dd4bf; }
.hero-product-card.full {
  grid-column: 1 / -1;
  background: rgba(0, 219, 107, 0.06);
  border-color: rgba(0, 219, 107, 0.2);
}

/* ─── Stats ─── */
.stats-band {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 3rem 0;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--color-gray);
  font-weight: 500;
}

/* ─── CTA Band ─── */
.cta-band {
  background: linear-gradient(135deg, #1f1c1c 0%, #2d2a2a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -60%; right: -5%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(0, 219, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 2rem; }

.btn-cta-white {
  background: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-cta-white:hover {
  background: var(--color-primary-dark);
  color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 219, 107, 0.3);
}
.btn-cta-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-cta-outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
  color: white;
}

/* ─── Footer ─── */
.footer {
  background: var(--color-dark);
  color: var(--color-gray-light);
  padding: 80px 0 0;
}
.footer-brand img { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer h6 {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul li a {
  color: var(--color-gray-light);
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer ul li a:hover { color: var(--color-primary); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-contact-item i { color: var(--color-primary); margin-top: 0.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 3rem;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--color-gray); font-size: 0.82rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--color-primary); }

/* ─── Back to top ─── */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--color-primary);
  color: var(--color-dark);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 219, 107, 0.4);
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ─── Badge soft ─── */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-soft-pass    { background: var(--color-pass-light); color: var(--color-primary-darker); }
.badge-soft-gate    { background: var(--color-gate-light); color: var(--color-gate); }
.badge-soft-crm     { background: var(--color-crm-light);  color: var(--color-crm-dark); }
.badge-soft-school  { background: var(--color-school-light); color: var(--color-school-dark); }
.badge-soft-primary { background: var(--color-pass-light); color: var(--color-primary-darker); }

/* ─── FAQ ─── */
.faq-item .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
  background: transparent;
  box-shadow: none;
  padding: 1.25rem 0;
}
.faq-item .accordion-button:not(.collapsed) { color: var(--color-primary-darker); }
.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300db6b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
}
.faq-item .accordion-body {
  color: var(--color-gray);
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

/* ─── Page header ─── */
.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #1f1c1c 0%, #2d2a2a 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse, rgba(0, 219, 107, 0.12) 0%, transparent 70%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: var(--color-white); margin-bottom: 1rem; }
.page-header p { color: #9c9898; font-size: 1.1rem; max-width: 600px; }
.page-header .breadcrumb-identup {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
.page-header .breadcrumb-identup a { color: #6b6868; transition: color var(--transition); }
.page-header .breadcrumb-identup a:hover { color: var(--color-primary); }
.page-header .breadcrumb-identup span { color: #6b6868; }
.page-header .breadcrumb-identup .current { color: #9c9898; }
