/* ========== CRAWL-DATA PREMIUM DESIGN SYSTEM ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1629;
  --bg-card: #141b2d;
  --bg-card-hover: #1a2340;
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.15);
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.15);
  --amber: #f59e0b;
  --violet: #8b5cf6;
  --rose: #f43f5e;
  --cyan: #06b6d4;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --header-bg: rgba(10, 14, 26, 0.85);
}

.no-transition,
.no-transition * {
  transition: none !important;
}

:root.light-theme {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.12);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --header-bg: rgba(255, 255, 255, 0.9);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
}

body.light-theme .theme-toggle .fa-moon {
  display: none
}

body.light-theme .theme-toggle .fa-sun {
  display: block
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700
}

a {
  text-decoration: none;
  color: inherit
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: var(--bg-primary)
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card-hover);
  border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue)
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  font-family: 'Inter', sans-serif;
  white-space: nowrap
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4)
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover)
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--blue);
  transform: translateY(-2px)
}

.btn-emerald {
  background: linear-gradient(135deg, var(--emerald), #059669);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3)
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4)
}

.btn-white {
  background: #fff;
  color: var(--bg-primary);
  font-weight: 700
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15)
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem
}

.btn-sm {
  padding: 10px 20px;
  font-size: .85rem
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition), border-color var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary)
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem
}

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

.nav a {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative
}

.nav a:hover {
  color: var(--text-primary)
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .3s
}

.nav a:hover::after {
  width: 100%
}

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  transition: background var(--transition), color var(--transition);
  padding: 8px;
  border-radius: 50%
}

.theme-toggle:hover {
  background: var(--bg-card-hover);
  color: var(--blue)
}

.theme-toggle .fa-sun {
  display: none
}

body.light-theme .theme-toggle .fa-moon {
  display: none
}

body.light-theme .theme-toggle .fa-sun {
  display: block
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999
}

.mobile-nav.active {
  display: flex
}

.mobile-nav a {
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 8px 0;
  font-weight: 500
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.12), transparent), radial-gradient(ellipse 60% 40% at 80% 60%, rgba(16, 185, 129, 0.06), transparent)
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent)
}

.hero .container {
  position: relative;
  z-index: 1
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  color: var(--text-secondary);
  margin-bottom: 32px
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse 2s infinite
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap
}

.hero-stat {
  text-align: center
}

.hero-stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary)
}

.hero-stat .label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 4px
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color)
}

.trust-bar p {
  text-align: center;
  font-size: .85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  margin-bottom: 24px
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: .4
}

.trust-logos span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary)
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid
}

.section-label.blue {
  color: var(--blue);
  border-color: rgba(59, 130, 246, 0.2);
  background: var(--blue-glow)
}

.section-label.emerald {
  color: var(--emerald);
  border-color: rgba(16, 185, 129, 0.2);
  background: var(--emerald-glow)
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -.02em
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8
}

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

.section-header .section-subtitle {
  margin: 0 auto
}

/* ===== PRODUCT SECTIONS ===== */
.product-section {
  padding: 100px 0;
  position: relative
}

.product-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .5
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition)
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1rem
}

.feature-card .icon.blue {
  background: var(--blue-glow);
  color: var(--blue)
}

.feature-card .icon.emerald {
  background: var(--emerald-glow);
  color: var(--emerald)
}

.feature-card h4 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 6px
}

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

.product-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative
}

.product-mockup img {
  width: 100%;
  display: block
}

.product-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.3);
  pointer-events: none
}

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition)
}

.industry-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.industry-card .ind-icon {
  font-size: 2rem;
  margin-bottom: 16px
}

.industry-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px
}

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

/* ===== HOW IT WORKS ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative
}

.step {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative
}

.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px)
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px
}

.step p {
  font-size: .9rem;
  color: var(--text-muted)
}

/* ===== CASE STUDIES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition)
}

.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.case-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--border-color)
}

.case-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px
}

.case-tag.blue {
  background: var(--blue-glow);
  color: var(--blue)
}

.case-tag.emerald {
  background: var(--emerald-glow);
  color: var(--emerald)
}

.case-header h4 {
  font-size: 1.05rem;
  margin-bottom: 8px
}

.case-header p {
  font-size: .85rem;
  color: var(--text-muted)
}

.case-metrics {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.metric {
  text-align: center
}

.metric .val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--emerald)
}

.metric .desc {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition)
}

.testimonial:hover {
  border-color: var(--border-hover)
}

.testimonial .stars {
  color: var(--amber);
  font-size: .85rem;
  margin-bottom: 16px
}

.testimonial blockquote {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem
}

.testimonial-info h5 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary)
}

.testimonial-info p {
  font-size: .8rem;
  color: var(--text-muted)
}

/* ===== PRICING ===== */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-color)
}

.pricing-toggle button {
  padding: 12px 28px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif
}

.pricing-toggle button.active {
  background: var(--blue);
  color: #fff
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px)
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.1)
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 16px;
  border-radius: 50px
}

.price-card .tier {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px
}

.price-card .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px
}

.price-card .amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted)
}

.price-card .price-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 32px
}

.price-features {
  list-style: none;
  margin-bottom: 32px
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color)
}

.price-features li:last-child {
  border: none
}

.price-features li i {
  color: var(--emerald);
  font-size: .8rem
}

.price-card .btn {
  width: 100%
}

/* ===== FAQ ===== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto
}

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

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  gap: 16px;
  transition: color .2s
}

.faq-q:hover {
  color: var(--blue)
}

.faq-q i {
  transition: transform .3s;
  color: var(--text-muted);
  font-size: .85rem
}

.faq-a {
  margin-top: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .95rem;
  display: none
}

.faq-item.active .faq-a {
  display: block
}

.faq-item.active .faq-q i {
  transform: rotate(45deg)
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.cta-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.08), transparent 50%), radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.06), transparent 50%)
}

.cta-box .container {
  position: relative;
  z-index: 1
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 16px
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 32px
}

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

.footer-about .logo {
  margin-bottom: 16px
}

.footer-about p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7
}

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-primary);
  margin-bottom: 20px
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: .9rem;
  padding: 4px 0;
  transition: color .2s
}

.footer-col a:hover {
  color: var(--blue)
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--text-muted)
}

.footer-social {
  display: flex;
  gap: 12px
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: .85rem
}

.footer-social a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue)
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .pricing-grid,
  .cases-grid,
  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 3rem
  }

  .section-title {
    font-size: 2.25rem
  }

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

@media(max-width:768px) {
  .nav {
    display: none
  }

  .mobile-toggle {
    display: block
  }

  .hero {
    padding: 120px 0 72px
  }

  .hero h1 {
    font-size: 2.25rem
  }

  .hero-sub {
    font-size: 1rem
  }

  .hero-stats {
    gap: 24px
  }

  .section {
    padding: 72px 0
  }

  .product-features {
    grid-template-columns: 1fr
  }

  .industries-grid {
    grid-template-columns: 1fr
  }

  .steps-row {
    grid-template-columns: 1fr
  }

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

  .cta-box {
    padding: 48px 24px
  }

  .cta-box h2 {
    font-size: 1.75rem
  }

  .header-cta .btn-secondary {
    display: none
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero h1 {
    font-size: 1.85rem
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch
  }

  .pricing-toggle {
    flex-direction: column
  }

  .price-card {
    padding: 32px 20px
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s, transform .6s
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.float {
  animation: float 4s ease-in-out infinite
}