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

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1e2d3d;
  background: #f4f7fb;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.2;
}

/* ── FADE IN ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.anim-up    { animation: fadeUp   0.65s ease both; }
.anim-in    { animation: fadeIn   0.65s ease both; }
.anim-right { animation: slideRight 0.65s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9, 90, 180, 0.88) 0%,
    rgba(9, 132, 227, 0.72) 50%,
    rgba(9, 132, 227, 0.25) 100%
  );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-slow 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── STATS BAR ── */
.stats-bar {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: #e2e8f0;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #0984e3;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #e8eef5;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0984e3, #74b9ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(9,132,227,0.15);
  transform: translateY(-4px);
  border-color: #bdd6f5;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0984e3, #74b9ff);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(9,132,227,0.3);
  flex-shrink: 0;
}
.service-icon svg { color: white; width: 26px; height: 26px; }

/* ── FEATURE CARDS ── */
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #f0f8ff;
  border: 1px solid #bdd9f5;
  font-size: 13px;
  font-weight: 500;
  color: #0984e3;
  transition: background 0.2s, border-color 0.2s;
}
.feature-pill:hover { background: #ddeeff; border-color: #0984e3; }
.feature-pill .check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #0984e3;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── COLLAB CARDS ── */
.collab-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 2px solid #e8eef5;
  transition: all 0.3s ease;
}
.collab-card:hover {
  box-shadow: 0 8px 32px rgba(9,132,227,0.12);
  transform: translateY(-3px);
}
.collab-card.featured {
  border-color: #0984e3;
  background: linear-gradient(145deg, #f0f8ff 0%, white 100%);
}
.collab-card.featured .collab-badge {
  background: #0984e3;
  color: white;
}

/* ── SECTION DECORATIONS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0984e3;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 28px; height: 3px;
  border-radius: 999px;
  background: #0984e3;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, #0984e3 0%, #0553a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FAQ ── */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  font-size: 20px;
  line-height: 1;
  color: #0984e3;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s;
}
details[open] summary::after {
  content: '−';
}
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(9,132,227,0.1); border-color: #bdd6f5; }
details[open].faq-item { border-color: #0984e3; box-shadow: 0 4px 20px rgba(9,132,227,0.12); }
.faq-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #1e2d3d;
  user-select: none;
}
.faq-body {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  border-top: 1px solid #f1f5f9;
  margin-top: -1px;
}

/* ── TRUST STRIP ── */
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-right: 1px solid #e2e8f0;
  flex: 1;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #f0f8ff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: linear-gradient(135deg, #0553a1 0%, #0984e3 50%, #38bdf8 100%);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 12px;
  background: #0984e3;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(9,132,227,0.4);
}
.btn-primary:hover {
  background: #0770c0;
  box-shadow: 0 6px 20px rgba(9,132,227,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #0984e3; border-radius: 3px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stat-item + .stat-item::before { display: none; }
  .trust-item { border-right: none; border-bottom: 1px solid #e2e8f0; }
  .trust-item:last-child { border-bottom: none; }
  .hero-section { min-height: 100vh; }
}
