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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(0.938rem, 0.9rem + 0.25vw, 1.063rem);
  line-height: 1.7;
  color: #1a1d23;
  background-color: #f6f7f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.15;
  color: #1a1d23;
  font-weight: 700;
}

h1 { font-size: clamp(2.25rem, 2rem + 1.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 1.5rem + 1vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem); }
h4 { font-size: clamp(1.063rem, 1rem + 0.3vw, 1.25rem); }

p, li, span, a, label, input, textarea, button {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 150, 199, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0077b6, #0096c7);
  box-shadow: 0 6px 24px rgba(0, 150, 199, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #0096c7;
  border: 2px solid #d0e4ee;
}

.btn-secondary:hover {
  border-color: #0096c7;
  background: rgba(0, 150, 199, 0.06);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: #0096c7;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-white:hover {
  background: #f0f7fb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.813rem;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(246, 247, 249, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #1a1d23;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a5568;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0096c7;
  background: rgba(0, 150, 199, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1d23;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero ── */
.page-hero {
  padding: clamp(8rem, 10vw + 4rem, 11rem) 0 clamp(4rem, 6vw + 2rem, 7rem);
  background: linear-gradient(165deg, #0d1117 0%, #1a1d23 35%, #1e293b 65%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 50px;
  font-size: 0.813rem;
  font-weight: 600;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.25rem, 2rem + 1.5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-title .accent {
  background: linear-gradient(135deg, #00b4d8, #48cae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.063rem, 1rem + 0.3vw, 1.2rem);
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

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

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.813rem;
  color: #64748b;
  margin-top: 0.25rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual .image {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ── Section Wrapper ── */
.section-wrapper {
  padding: clamp(4rem, 6vw + 2rem, 7rem) 0;
}

.section-wrapper.dark-section {
  background: #1a1d23;
  color: #e2e8f0;
}

.section-wrapper.dark-section h2,
.section-wrapper.dark-section h3,
.section-wrapper.dark-section h4 {
  color: #ffffff;
}

.section-wrapper.alt-bg {
  background: #ffffff;
  border-top: 1px solid #e8ecf1;
  border-bottom: 1px solid #e8ecf1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

.section-heading {
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.lead-paragraph {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  color: #64748b;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.dark-section .lead-paragraph {
  color: #94a3b8;
}

/* ── Eyebrow / Label ── */
.eyebrow-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0096c7;
  margin-bottom: 0.75rem;
}

/* ── Body Text ── */
.body-text {
  color: #4a5568;
  line-height: 1.75;
}

.dark-section .body-text {
  color: #94a3b8;
}

/* ── Card Grid ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
}

.card-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.card-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
}

/* ── Card ── */
.card {
  background: #ffffff;
  border-radius: 14px;
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid #e8ecf1;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: #c8dce8;
}

.card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 150, 199, 0.1), rgba(0, 180, 216, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card .icon-wrap svg {
  width: 22px;
  height: 22px;
  color: #0096c7;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #1a1d23;
}

.card p {
  font-size: 0.938rem;
  color: #64748b;
  line-height: 1.65;
}

.dark-section .card {
  background: #232730;
  border-color: #2d3140;
}

.dark-section .card:hover {
  border-color: #3d4560;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.dark-section .card .card-title {
  color: #ffffff;
}

.dark-section .card p {
  color: #94a3b8;
}

.dark-section .card .icon-wrap {
  background: linear-gradient(135deg, rgba(0, 150, 199, 0.15), rgba(0, 180, 216, 0.2));
}

/* ── Image ── */
.image {
  border-radius: 12px;
  background: #e2e8f0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.image-square {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
}

.image-tall {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}

/* ── Divider ── */
.section-divider {
  height: 1px;
  background: #e8ecf1;
  margin: 0;
  border: none;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2rem;
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8ecf1;
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.blog-card .image {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0096c7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1d23;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ── Footer ── */
.site-footer {
  background: #0d1117;
  color: #94a3b8;
  padding: clamp(3rem, 5vw + 1rem, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
  color: #64748b;
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #00b4d8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.813rem;
  color: #4a5568;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: rgba(0, 180, 216, 0.15);
  color: #00b4d8;
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(246, 247, 249, 0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1.063rem;
  font-weight: 500;
  color: #1a1d23;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(0, 150, 199, 0.07);
  color: #0096c7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links,
  .header-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual .image {
    max-width: 360px;
  }

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

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-grid { gap: clamp(1.5rem, 3vw, 2.5rem); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0096c7, #0077b6);
  border-radius: 20px;
  padding: clamp(2.5rem, 4vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  position: relative;
}

/* ── Testimonial ── */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid #e8ecf1;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a1d23;
}

.testimonial-role {
  font-size: 0.813rem;
  color: #94a3b8;
}

/* ── Orange Accent Elements ── */
.accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b35;
}

.pricing-highlight {
  border-color: #0096c7 !important;
  box-shadow: 0 8px 30px rgba(0, 150, 199, 0.15);
  position: relative;
}

.pricing-highlight::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0096c7, #00b4d8);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 1rem;
  border-radius: 50px;
}

/* ── Integration Logo Row ── */
.integration-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
}

.integration-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8ecf1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #64748b;
  transition: all 0.3s ease;
}

.integration-logo:hover {
  border-color: #0096c7;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.dark-section .integration-logo {
  background: #232730;
  border-color: #2d3140;
}

/* ── Use Case Tabs ── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.use-case-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8ecf1;
  transition: all 0.3s ease;
}

.use-case-item:hover {
  border-color: #0096c7;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.dark-section .use-case-item {
  background: #232730;
  border-color: #2d3140;
}

.use-case-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 150, 199, 0.1), rgba(0, 180, 216, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.use-case-icon svg {
  width: 20px;
  height: 20px;
  color: #0096c7;
}

.use-case-text h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.use-case-text p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.dark-section .use-case-text p {
  color: #94a3b8;
}

.dark-section .use-case-text h4 {
  color: #fff;
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
