/* =============================================================
   Bizkare Corporate Website — style.css
   Font: Inter via Google Fonts
   Color Palette:
     Primary Blue  : #1a6fe8
     Dark Blue     : #0d4abf
     Dark Text     : #0f172a
     Body Text     : #374151
     Muted Text    : #6b7280
     Light BG      : #f8faff
     Border        : #e2e8f0
   ============================================================= */

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

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #374151;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ── Utilities ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a6fe8;
  background: #e8f0fd;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: #6b7280;
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  line-height: 1;
}

.btn-primary {
  background: #1a6fe8;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(26,111,232,0.32);
}

.btn-primary:hover {
  background: #0d4abf;
  box-shadow: 0 6px 20px rgba(26,111,232,0.42);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #1a6fe8;
  border: 2px solid #1a6fe8;
}

.btn-outline:hover {
  background: #1a6fe8;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: #1a6fe8;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.btn-white:hover {
  background: #f0f6ff;
  transform: translateY(-2px);
}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

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

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.nav-logo span { color: #1a6fe8; }

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #1a6fe8;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.nav-links a:hover { color: #1a6fe8; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #1a6fe8; }

.nav-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.hamburger:hover { background: #f1f5f9; }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid #e2e8f0;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a.active { background: #e8f0fd; color: #1a6fe8; }

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

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a6fe8;
  background: #e8f0fd;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #1a6fe8;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title .accent { color: #1a6fe8; }

.hero-text {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid #e2e8f0;
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(26,111,232,0.18);
}

.hero-floating-card {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #0f172a;
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card svg { color: #1a6fe8; }

.hero-card-1 { bottom: 32px; left: -24px; animation-delay: 0s; }
.hero-card-2 { top: 24px; right: -24px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════
   SERVICES PREVIEW
═══════════════════════════════════════════════ */
.services-preview { background: #ffffff; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  cursor: default;
}

.service-card:hover {
  border-color: #1a6fe8;
  box-shadow: 0 16px 48px rgba(26,111,232,0.14);
  transform: translateY(-6px);
}

.service-card:hover .service-icon { background: #1a6fe8; color: #ffffff; }

.service-icon {
  width: 56px;
  height: 56px;
  background: #e8f0fd;
  color: #1a6fe8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-card p { font-size: 14px; color: #6b7280; line-height: 1.7; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1a6fe8;
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════ */
.why-us { background: #f8faff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 12px 40px rgba(26,111,232,0.12);
  transform: translateY(-4px);
  border-color: #c7d9f9;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #1a6fe8, #0d4abf);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #ffffff;
}

.why-icon svg { width: 28px; height: 28px; }

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

.why-card p { font-size: 14px; color: #6b7280; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #1a6fe8 0%, #0d4abf 100%);
  padding: 96px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #f8faff 0%, #eef3ff 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 18px;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.about-intro img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26,111,232,0.14);
  width: 100%;
}

.about-text .section-subtitle { max-width: 100%; }

.about-text p { margin-top: 16px; font-size: 15px; color: #6b7280; line-height: 1.8; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.mv-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 32px;
  border-top: 4px solid #1a6fe8;
  transition: box-shadow 0.3s;
}

.mv-card:hover { box-shadow: 0 12px 40px rgba(26,111,232,0.12); }

.mv-icon {
  width: 52px;
  height: 52px;
  background: #e8f0fd;
  color: #1a6fe8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mv-icon svg { width: 24px; height: 24px; }

.mv-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.mv-card p { font-size: 15px; color: #6b7280; line-height: 1.75; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: #1a6fe8;
  box-shadow: 0 10px 32px rgba(26,111,232,0.12);
  transform: translateY(-4px);
}

.value-number {
  font-size: 38px;
  font-weight: 800;
  color: #1a6fe8;
  display: block;
  margin-bottom: 8px;
}

.value-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════ */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.full-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.full-service-card:hover {
  border-color: #1a6fe8;
  box-shadow: 0 20px 56px rgba(26,111,232,0.14);
  transform: translateY(-6px);
}

.full-service-card:hover .full-service-icon { background: #1a6fe8; color: #ffffff; }

.full-service-icon {
  width: 64px;
  height: 64px;
  background: #e8f0fd;
  color: #1a6fe8;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.full-service-icon svg { width: 30px; height: 30px; }

.full-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.full-service-card p { font-size: 15px; color: #6b7280; line-height: 1.75; }

.service-features {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.service-feature svg { color: #1a6fe8; flex-shrink: 0; width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-card {
  background: linear-gradient(135deg, #1a6fe8 0%, #0d4abf 100%);
  border-radius: 20px;
  padding: 40px 36px;
  color: #ffffff;
}

.contact-info-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-info-card > p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail:last-of-type { margin-bottom: 0; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; color: #ffffff; }

.contact-detail-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
}

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.2s;
}

.contact-social a:hover { background: rgba(255,255,255,0.3); }
.contact-social a svg { width: 18px; height: 18px; }

/* Contact Form */
.contact-form-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 36px;
}

.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #0f172a;
  background: #f8faff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1a6fe8;
  box-shadow: 0 0 0 3px rgba(26,111,232,0.12);
  background: #ffffff;
}

.form-group textarea { min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 10px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #065f46;
  margin-top: 16px;
  text-align: center;
}

/* Map */
.map-section { background: #f8faff; padding: 80px 0; }

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  margin-top: 48px;
  height: 420px;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-brand-logo {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-brand-logo span { color: #1a6fe8; }

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #94a3b8;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.2s;
}

.footer-social a:hover { background: #1a6fe8; border-color: #1a6fe8; color: #ffffff; }
.footer-social a svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover { color: #1a6fe8; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: #1a6fe8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span { font-size: 14px; color: #94a3b8; line-height: 1.6; }

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
}

.footer-bottom a { color: #64748b; transition: color 0.2s; }
.footer-bottom a:hover { color: #1a6fe8; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 60px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-floating-card { display: none; }
  .hero-image { order: -1; }

  /* About */
  .about-intro, .mv-grid, .contact-layout { grid-template-columns: 1fr; gap: 36px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid, .why-grid, .all-services-grid, .values-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   ADDITIONS — Extended homepage sections + WhatsApp button
   ============================================================= */

/* ── Digital Services (6-card grid) ── */
.digital-services { background: #f8faff; }

.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: stretch;
}

.digital-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.digital-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a6fe8, #0d4abf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.digital-card:hover::before { transform: scaleX(1); }

.digital-card:hover {
  border-color: #c7d9f9;
  box-shadow: 0 12px 36px rgba(26,111,232,0.12);
  transform: translateY(-5px);
}

.digital-card:hover .digital-icon { background: #1a6fe8; color: #ffffff; }

.digital-icon {
  width: 50px;
  height: 50px;
  background: #e8f0fd;
  color: #1a6fe8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.digital-icon svg { width: 22px; height: 22px; }

.digital-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.digital-card p { font-size: 13px; color: #6b7280; line-height: 1.65; }

/* ── Our Process ── */
.process-section { background: #ffffff; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #1a6fe8 0%, #e2e8f0 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6fe8, #0d4abf);
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(26,111,232,0.28);
  transition: transform 0.3s ease;
}

.process-step:hover .process-number { transform: scale(1.1); }

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.process-step p { font-size: 14px; color: #6b7280; line-height: 1.7; }

/* ── Industries ── */
.industries-section { background: #f8faff; }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  align-items: stretch;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.industry-card:hover {
  border-color: #1a6fe8;
  box-shadow: 0 8px 28px rgba(26,111,232,0.12);
  transform: translateY(-4px);
}

.industry-card:hover .industry-icon { background: #1a6fe8; color: #ffffff; }

.industry-icon {
  width: 52px;
  height: 52px;
  background: #e8f0fd;
  color: #1a6fe8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.industry-icon svg { width: 22px; height: 22px; }

.industry-card span {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* ── Tech Stack ── */
.tech-section { background: #0f172a; padding: 80px 0; }

.tech-section .section-label { background: rgba(26,111,232,0.2); color: #93c5fd; }
.tech-section .section-title { color: #ffffff; }
.tech-section .section-subtitle { color: #94a3b8; }

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  justify-content: center;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 20px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.tech-badge:hover {
  background: rgba(26,111,232,0.2);
  border-color: #1a6fe8;
  color: #ffffff;
  transform: translateY(-2px);
}

.tech-badge svg { width: 18px; height: 18px; color: #1a6fe8; }

/* ── Testimonials ── */
.testimonials-section { background: #ffffff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: #f8faff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 16px 48px rgba(26,111,232,0.1);
  transform: translateY(-4px);
  border-color: #c7d9f9;
}

.testimonial-quote {
  font-size: 48px;
  color: #1a6fe8;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star {
  width: 16px;
  height: 16px;
  background: #f59e0b;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6fe8, #0d4abf);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  display: block;
}

.author-role {
  font-size: 13px;
  color: #6b7280;
}

/* ── FAQ ── */
.faq-section { background: #f8faff; }

.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
  border-color: #1a6fe8;
  box-shadow: 0 4px 20px rgba(26,111,232,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: #1a6fe8; }
.faq-item.open .faq-question { color: #1a6fe8; }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f0fd;
  color: #1a6fe8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { background: #1a6fe8; color: #ffffff; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer { max-height: 300px; padding: 0 28px 22px; }

.faq-answer p { font-size: 15px; color: #6b7280; line-height: 1.8; }

/* ── Final CTA (enhanced) ── */
.final-cta {
  background: linear-gradient(135deg, #1a6fe8 0%, #0d4abf 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 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.04'%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") repeat;
}

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

.final-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-white-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}

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

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50px;
  padding: 14px 22px 14px 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: all 0.3s ease;
  animation: wa-bounce 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  transform: translateY(-3px) scale(1.03);
  animation: none;
}

.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }

.whatsapp-label { white-space: nowrap; }

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .digital-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { padding: 13px 16px; }
  .whatsapp-label { display: none; }
}

@media (max-width: 480px) {
  .process-steps, .digital-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
