/* ========================================
   AppointDesk — Product Showcase
   A product by Bairuha Tech
   ======================================== */

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E293B;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-primary {
  background: #2563EB;
  color: #fff;
  border-color: #2563EB;
}
.btn-primary:hover {
  background: #1D4ED8;
  border-color: #1D4ED8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: #2563EB;
  border-color: #2563EB;
}
.btn-outline:hover {
  background: #2563EB;
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #1E293B;
  border-color: #fff;
}
.btn-white:hover {
  background: #F1F5F9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}


/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: #1E293B;
  letter-spacing: -0.5px;
}

.logo-icon {
  display: flex;
  align-items: center;
}

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

.nav-links li a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links li a:hover {
  color: #2563EB;
  background: #EFF6FF;
}

.nav-cta {
  background: #2563EB !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: #1D4ED8 !important;
  color: #fff !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1E293B;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* === Hero Section === */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #F0F9FF 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px; height: 600px;
  background: #2563EB;
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: #9333EA;
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: #16A34A;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563EB;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #0F172A;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: #E2E8F0;
}


/* === Hero Mockup === */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-mockup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  width: 100%;
  max-width: 540px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #E2E8F0;
}
.mockup-dots span:first-child { background: #FCA5A5; }
.mockup-dots span:nth-child(2) { background: #FDE68A; }
.mockup-dots span:last-child { background: #86EFAC; }

.mockup-title {
  font-size: 12px;
  color: #94A3B8;
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 320px;
}

.mockup-sidebar {
  width: 48px;
  background: #0F2257;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-nav-item {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}
.mockup-nav-item.active {
  background: #3B82F6;
}

.mockup-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-stat-card {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}
.mockup-stat-card.c1 { border-left: 3px solid #2563EB; }
.mockup-stat-card.c2 { border-left: 3px solid #10B981; }
.mockup-stat-card.c3 { border-left: 3px solid #8B5CF6; }

.msc-icon { margin-bottom: 4px; }
.msc-number { font-size: 18px; font-weight: 800; color: #0F172A; }
.msc-label { font-size: 9px; color: #94A3B8; font-weight: 500; }

/* Chart bars */
.mockup-chart {
  background: #F8FAFC;
  border-radius: 8px;
  padding: 12px;
  height: 80px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
}
.bar {
  flex: 1;
  background: linear-gradient(180deg, #3B82F6, #93C5FD);
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

/* Mockup table */
.mockup-table {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  overflow: hidden;
}
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 6px 10px;
  font-size: 10px;
  align-items: center;
  border-bottom: 1px solid #F1F5F9;
}
.table-row:last-child { border-bottom: none; }
.table-row.header {
  background: #F8FAFC;
  font-weight: 600;
  color: #64748B;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.name-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.avatar-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #3B82F6;
}
.avatar-dot.d2 { background: #10B981; }
.avatar-dot.d3 { background: #F59E0B; }

.status-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
}
.status-badge.confirmed { background: #DBEAFE; color: #1D4ED8; }
.status-badge.checked { background: #D1FAE5; color: #059669; }
.status-badge.pending { background: #FEF3C7; color: #D97706; }


/* === Trusted By === */
.trusted-by {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid #F1F5F9;
}

.trusted-label {
  text-align: center;
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748B;
  font-size: 14px;
  font-weight: 500;
}
.trust-item svg { opacity: 0.6; }


/* === Section Headers === */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.section-tag.green {
  background: #F0FDF4;
  color: #16A34A;
  border-color: rgba(22, 163, 74, 0.1);
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #0F172A;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: #64748B;
  line-height: 1.7;
}


/* === Features Section === */
.features {
  padding: 100px 0;
  background: #fff;
}

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

.feature-card {
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  background: #fff;
}
.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}


/* === How It Works === */
.how-it-works {
  padding: 100px 0;
  background: #F8FAFC;
}

.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #2563EB;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translate(-4px, -4px);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.timeline-content {
  padding-top: 4px;
  padding-bottom: 0;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  max-width: 480px;
}

.timeline-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, #CBD5E1, #E2E8F0);
  margin-left: 27px;
  border-radius: 1px;
}


/* === WhatsApp Section === */
.whatsapp-section {
  padding: 100px 0;
  background: #fff;
}

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

.whatsapp-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #0F172A;
  margin-bottom: 16px;
}

.whatsapp-content > p {
  font-size: 17px;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 32px;
}

.whatsapp-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whatsapp-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.whatsapp-features li strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 2px;
}

.whatsapp-features li span {
  font-size: 14px;
  color: #64748B;
}


/* Phone Mockup */
.whatsapp-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 320px;
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  background: #E5DDD5;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.wa-header {
  background: #075E54;
  padding: 40px 16px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-back { opacity: 0.8; }

.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #128C7E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.wa-name span {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.wa-name small {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
}

.wa-chat {
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  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='%23000000' fill-opacity='0.03'%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");
}

.wa-message {
  background: #DCF8C6;
  padding: 8px 12px;
  border-radius: 8px;
  max-width: 90%;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.wa-message.incoming {
  background: #fff;
  align-self: flex-start;
}

.wa-message p {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 4px;
}

.wa-detail {
  font-size: 12px !important;
  color: #555 !important;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #999;
  margin-top: 4px;
}

.wa-qr {
  background: #f0f0f0;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.wa-message.reminder {
  border-left: 3px solid #25D366;
}


/* === Reports Section === */
.reports-section {
  padding: 100px 0;
  background: #F8FAFC;
}

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

.report-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s;
}
.report-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: transparent;
  transform: translateY(-2px);
}

.report-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.report-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
}

.report-card > p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 20px;
}

.report-preview {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 16px;
}

/* Mini bar chart */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}
.mini-bar {
  flex: 1;
  background: linear-gradient(180deg, #3B82F6, #93C5FD);
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  transition: height 0.5s ease;
}

/* Scan lines */
.scan-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scan-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #475569;
  font-weight: 500;
  padding: 4px 0;
}
.scan-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.scan-dot.green { background: #22C55E; }
.scan-dot.yellow { background: #F59E0B; }
.scan-dot.blue { background: #3B82F6; }

/* Trend chart */
.trend-line-visual {
  height: 60px;
}
.trend-svg {
  width: 100%;
  height: 100%;
}

/* Custom report bars */
.custom-report-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cr-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cr-label {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
  width: 80px;
  flex-shrink: 0;
}
.cr-bar {
  flex: 1;
  height: 8px;
  background: #E2E8F0;
  border-radius: 100px;
  overflow: hidden;
}
.cr-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #16A34A, #4ADE80);
  border-radius: 100px;
}
.cr-val {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  width: 36px;
  text-align: right;
}


/* Report card wide variant (spans 2 columns) */
.report-card-wide {
  grid-column: 1 / -1;
}

/* Trend legend */
.trend-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.dashed {
  border: 2px dashed;
  border-color: inherit;
  background: transparent !important;
}

/* Scanning Trend stacked bars */
.scan-trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 70px;
}
.scan-trend-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
}
.stg-label {
  font-size: 10px;
  color: #94A3B8;
  font-weight: 500;
  order: 2;
}
.stg-bar-stack {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.stg-bar {
  width: 100%;
  border-radius: 2px;
  min-height: 3px;
}
.stg-bar.ontime { background: #22C55E; }
.stg-bar.late { background: #F59E0B; }
.stg-bar.early { background: #3B82F6; }

/* Feedback report preview */
.feedback-preview {
  padding: 20px;
}
.feedback-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.fb-stat {
  text-align: center;
  flex-shrink: 0;
}
.fb-rating {
  font-size: 36px;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
  margin-bottom: 6px;
}
.fb-rating span {
  font-size: 16px;
  color: #94A3B8;
  font-weight: 500;
}
.fb-stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 4px;
}
.fb-label {
  font-size: 12px;
  color: #94A3B8;
  font-weight: 500;
}
.fb-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fb-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fb-bar-label {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
  width: 42px;
  flex-shrink: 0;
}
.fb-bar-track {
  flex: 1;
  height: 8px;
  background: #F1F5F9;
  border-radius: 100px;
  overflow: hidden;
}
.fb-bar-fill {
  display: block;
  height: 100%;
  border-radius: 100px;
  transition: width 0.5s ease;
}
.fb-bar-pct {
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
  width: 32px;
  text-align: right;
}


/* === Industries === */
.industries {
  padding: 100px 0;
  background: #fff;
}

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

.industry-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  text-align: center;
  transition: all 0.3s;
}
.industry-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.industry-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}


/* === CTA Section === */
.cta-section {
  padding: 100px 0;
  background: #F8FAFC;
}

.cta-card {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%);
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* CTA decoration circles */
.cta-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-circle.c1 {
  width: 400px; height: 400px;
  top: -100px; right: -100px;
}
.cta-circle.c2 {
  width: 300px; height: 300px;
  bottom: -80px; left: -60px;
}
.cta-circle.c3 {
  width: 200px; height: 200px;
  top: 50%; left: 10%;
  border-color: rgba(255,255,255,0.04);
}


/* === Footer === */
.footer {
  background: #0F172A;
  padding: 64px 0 0;
  color: #94A3B8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1E293B;
}

.footer-brand .logo {
  margin-bottom: 16px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748B;
  max-width: 300px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #64748B;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #93C5FD;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}

.footer-bottom a {
  color: #93C5FD;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #BFDBFE;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: #475569;
}
.footer-bottom-links a:hover {
  color: #93C5FD;
}


/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #1E293B;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1E293B;
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}


/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .section-header h2 { font-size: 34px; }
  .whatsapp-content h2 { font-size: 34px; }
  .cta-content h2 { font-size: 34px; }

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

  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .hero-mockup {
    max-width: 480px;
  }

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 1px solid #E2E8F0;
    gap: 4px;
  }
  .nav-links.active { display: flex; }

  .nav-links li a {
    display: block;
    padding: 12px 16px;
  }

  .navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .hero {
    padding: 120px 0 60px;
  }
  .hero h1 { font-size: 34px; }
  .hero-subtitle { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 22px; }

  .section-header h2 { font-size: 28px; }
  .whatsapp-content h2 { font-size: 28px; }
  .cta-content h2 { font-size: 28px; }

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

  .timeline-step {
    gap: 16px;
  }
  .timeline-content h3 {
    font-size: 16px;
  }

  .whatsapp-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .cta-card {
    padding: 48px 24px;
  }

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

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

  .trust-items { gap: 20px; }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-tooltip { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .hero-mockup { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .mockup-stat-row { grid-template-columns: 1fr; }
}
