/* TRIVONE — Corporate website styles */

:root {
  --primary: #0c1f3d;
  --primary-light: #1a3560;
  --primary-glow: rgba(12, 31, 61, 0.12);
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-glow: rgba(249, 115, 22, 0.15);
  --purple: #8b5cf6;
  --purple-dark: #7c3aed;
  --purple-glow: rgba(139, 92, 246, 0.15);
  --accent: var(--orange);
  --accent-dark: var(--orange-dark);
  --accent-glow: var(--orange-glow);
  --secondary: var(--purple);
  --secondary-dark: var(--purple-dark);
  --secondary-glow: var(--purple-glow);
  --gradient-brand: linear-gradient(135deg, var(--orange) 0%, var(--purple) 100%);
  --text: #334155;
  --text-light: #64748b;
  --text-dark: #0f172a;
  --bg-light: #f1f5f9;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(12, 31, 61, 0.08);
  --shadow-lg: 0 12px 40px rgba(12, 31, 61, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.65;
}

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

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.btn-secondary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(12, 31, 61, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform var(--transition);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-brand-box {
  height: 58px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
}

.logo-brand-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}

.logo-text-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-text-brand .orange-v {
  color: #f97316;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.active {
  box-shadow: inset 0 -2px 0 var(--orange);
}

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

.nav-link {
  padding: 8px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  transition: all var(--transition);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* Page Hero (Standalone pages like contact.html) */
.page-hero {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 55%, var(--primary-light) 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  display: none;
}

.page-hero-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 20px;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.breadcrumbs a {
  color: #ffffff;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.breadcrumbs i {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* Dedicated About Page Styles */
.about-story-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
}

.story-highlights-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.04);
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--purple-light);
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.highlight-list li i {
  color: var(--purple);
  font-size: 1.125rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Mission, Vision & Values */
.mvv-section {
  background: var(--bg-light);
  padding: 80px 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.mvv-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.mvv-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mvv-card p {
  font-size: 0.96875rem;
  color: var(--text);
  line-height: 1.65;
}

/* Values Grid */
.values-header {
  text-align: center;
  margin-bottom: 36px;
}

.values-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.value-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.85;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

/* Tech Section */
.tech-section {
  background: var(--bg-white);
  padding: 80px 0;
}

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

.tech-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.tech-card:hover {
  border-color: var(--purple);
  background: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tech-icon {
  font-size: 2rem;
  color: var(--purple);
  margin-bottom: 16px;
}

.tech-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.tech-card p {
  font-size: 0.84375rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Trusted Companies / Client Logos Section */
.trusted-companies-section {
  background: var(--bg-white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trusted-companies-header {
  text-align: center;
  margin-bottom: 32px;
}

.trusted-badge {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(99, 102, 241, 0.08);
  padding: 6px 20px;
  border-radius: 100px;
  border: 1px solid rgba(99, 102, 241, 0.15);
  display: inline-block;
}

.trusted-logos-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trusted-logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: logoMarquee 28s linear infinite;
}

.trusted-logos-track:hover {
  animation-play-state: paused;
}

@keyframes logoMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trusted-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  filter: grayscale(35%);
  transition: all var(--transition);
  cursor: pointer;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
  background: var(--bg-light);
  border-color: var(--border);
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  box-shadow: 0 4px 14px rgba(12, 31, 61, 0.12);
  transition: all var(--transition);
}

.trusted-logo-item:hover .logo-icon-box {
  background: var(--orange);
  transform: scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.logo-text span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-light);
  padding: 64px 0;
}

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

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(12, 31, 61, 0.03);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h4 i {
  color: var(--purple);
  font-size: 1.125rem;
}

.faq-item p {
  font-size: 0.90625rem;
  color: var(--text);
  line-height: 1.65;
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 28px);
  padding-bottom: 64px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 55%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
}

.hero-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

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

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

/* Hero Devices Visual Mockup (Laptop + Phone) */
.hero-devices-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 10px 0 40px 0;
}

/* Background Ambient Glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, rgba(139, 92, 246, 0.15) 70%, transparent 100%);
  top: -40px;
  right: -20px;
}

.hero-glow-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(59, 130, 246, 0.1) 70%, transparent 100%);
  bottom: -20px;
  right: 10%;
}

/* --- Laptop Mockup --- */
.laptop-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
}

.laptop-screen {
  background: #0f172a;
  border: 11px solid #1e293b;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.laptop-camera {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #334155;
  border-radius: 50%;
  z-index: 10;
  border: 1px solid #090d16;
}

.laptop-display {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  overflow: hidden;
  user-select: none;
}

/* Dashboard App inside Laptop */
.dash-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 11px;
}

.dash-navbar {
  height: 32px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  flex-shrink: 0;
}

.dash-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: #4f46e5;
  font-size: 11px;
}

.dash-brand small {
  font-weight: 400;
  color: #64748b;
  font-size: 8px;
  margin-left: 2px;
}

.dash-nav-title {
  font-weight: 700;
  font-size: 12px;
  color: #0f172a;
}

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

.dash-search {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 9px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-workspace {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 8px;
  font-weight: 600;
  color: #475569;
}

.dash-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.dash-sidebar {
  width: 95px;
  background: #ffffff;
  border-right: 1px solid #e2e8f0;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #64748b;
  font-size: 9.5px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dash-nav-item.active {
  background: #e0e7ff;
  color: #4338ca;
  font-weight: 600;
}

.dash-nav-item i {
  font-size: 10px;
  width: 12px;
}

.dash-content {
  flex: 1;
  padding: 10px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

/* Stat Cards */
.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.dash-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.stat-lbl {
  font-size: 8px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 2px;
}

.stat-val {
  font-size: 10.5px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.stat-badge {
  font-size: 7px;
  font-weight: 600;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.stat-badge.positive {
  color: #16a34a;
}

/* Main Grid */
.dash-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  flex: 1;
}

.dash-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.dash-card-title {
  font-weight: 700;
  font-size: 10px;
  color: #0f172a;
}

.dash-card-filter,
.dash-card-link {
  font-size: 8px;
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
}

/* Chart SVG */
.dash-chart-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dash-chart-svg {
  width: 100%;
  height: 70px;
  overflow: visible;
}

.dash-chart-months {
  display: flex;
  justify-content: space-between;
  font-size: 7.5px;
  color: #94a3b8;
  padding: 2px 4px 0 4px;
}

/* Recent Orders */
.dash-orders-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dash-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px;
  background: #f8fafc;
  border-radius: 6px;
  border: 1px solid #f1f5f9;
}

.order-icon {
  width: 20px;
  height: 20px;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.order-info {
  flex: 1;
  margin-left: 6px;
}

.order-id {
  font-weight: 700;
  font-size: 8.5px;
  color: #1e293b;
}

.order-sub {
  font-size: 7px;
  color: #94a3b8;
}

.order-price {
  font-size: 8.5px;
  font-weight: 700;
  color: #0f172a;
}

/* Laptop Keyboard Base & Hinge */
.laptop-base {
  height: 14px;
  background: linear-gradient(to bottom, #e2e8f0 0%, #cbd5e1 40%, #94a3b8 100%);
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.laptop-notch {
  width: 60px;
  height: 4px;
  background: #64748b;
  border-radius: 0 0 4px 4px;
  position: absolute;
  top: 0;
}

.laptop-brand {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #475569;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.7;
}

.laptop-shadow {
  position: absolute;
  bottom: -15px;
  left: 5%;
  right: 5%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* --- Mobile Phone Mockup --- */
.phone-mockup {
  position: absolute;
  bottom: -15px;
  left: -65px;
  width: 215px;
  z-index: 10;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.65));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-mockup:hover {
  transform: translateY(-6px) scale(1.03);
}

/* Metallic Hardware Side Buttons */
.phone-button {
  position: absolute;
  background: linear-gradient(to right, #334155, #1e293b);
  border-radius: 2px 0 0 2px;
  z-index: 1;
}

.btn-volume-up {
  left: -4px;
  top: 75px;
  width: 4px;
  height: 24px;
}

.btn-volume-down {
  left: -4px;
  top: 106px;
  width: 4px;
  height: 24px;
}

.btn-power {
  right: -4px;
  top: 90px;
  width: 4px;
  height: 36px;
  border-radius: 0 2px 2px 0;
}

.phone-screen {
  background: #080c14;
  border: 9px solid #1e293b;
  border-radius: 36px;
  padding: 12px 10px 10px 10px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 20px rgba(99, 102, 241, 0.25);
  user-select: none;
  overflow: hidden;
}

.phone-speaker {
  width: 32px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
}

.phone-notch {
  width: 54px;
  height: 14px;
  background: #000000;
  border-radius: 12px;
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
}

.phone-camera {
  width: 6px;
  height: 6px;
  background: #09101d;
  border-radius: 50%;
  border: 1px solid #1e293b;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8.5px;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 2px 4px 0 4px;
}

.phone-time {
  color: #ffffff;
  font-weight: 700;
}

.phone-icons {
  display: flex;
  gap: 5px;
  color: #cbd5e1;
  font-size: 7.5px;
}

.phone-greeting {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.phone-avatar {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #4f46e5 0%, #38bdf8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

.phone-user-text {
  flex: 1;
}

.phone-user {
  font-size: 10.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.phone-sub {
  font-size: 7.5px;
  color: #94a3b8;
}

/* Phone Hero Card */
.phone-hero-card {
  background: linear-gradient(145deg, #131b2e 0%, #0d1322 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.phone-card-top {
  margin-bottom: 4px;
}

.phone-card-lbl {
  font-size: 8px;
  color: #94a3b8;
  margin-bottom: 2px;
  font-weight: 500;
}

.phone-card-val {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.phone-card-sub {
  font-size: 7px;
  color: #22c55e;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(34, 197, 94, 0.12);
  padding: 2px 6px;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.phone-sparkline {
  margin-top: 6px;
  height: 26px;
}

.phone-sparkline svg {
  width: 100%;
  height: 100%;
}

.phone-actions-title {
  font-size: 8.5px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.phone-actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.phone-action-btn {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.phone-action-btn:hover {
  background: #1e293b;
  border-color: rgba(56, 189, 248, 0.4);
}

.action-icon-box {
  width: 22px;
  height: 22px;
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
}

.phone-action-btn span {
  font-size: 7px;
  color: #94a3b8;
  font-weight: 500;
}

.phone-trans-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 5px;
}

.phone-trans-header a {
  color: #38bdf8;
  text-decoration: none;
  font-size: 7px;
  font-weight: 500;
}

.phone-trans-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-trans-item {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  padding: 5px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-trans-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.phone-trans-icon.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.phone-trans-icon.blue {
  background: rgba(79, 70, 229, 0.15);
  color: #818cf8;
}

.phone-trans-info {
  flex: 1;
  margin-left: 6px;
}

.phone-trans-name {
  font-size: 7.5px;
  font-weight: 600;
  color: #ffffff;
}

.phone-trans-time {
  font-size: 6.5px;
  color: #64748b;
}

.phone-trans-amount {
  font-size: 8px;
  font-weight: 700;
  color: #ffffff;
}

.phone-trans-amount.green {
  color: #4ade80;
}

.phone-home-indicator {
  width: 44px;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  margin: 6px auto 0 auto;
}

/* Mobile Media Queries */
@media (max-width: 991px) {
  .hero-devices-wrapper {
    max-width: 540px;
  }

  .phone-mockup {
    width: 175px;
    left: -35px;
    bottom: -5px;
  }
}

@media (max-width: 576px) {
  .hero-devices-wrapper {
    max-width: 100%;
    padding: 10px 0 20px 0;
  }

  .phone-mockup {
    width: 145px;
    left: 0;
    bottom: -10px;
  }

  .dash-sidebar {
    width: 32px;
    padding: 6px 2px;
  }

  .dash-nav-item span {
    display: none;
  }

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

/* Intro teaser (home) */
.intro-teaser {
  background: var(--bg-white);
}

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

.intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-icon-block {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--primary) 0%, #312e81 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--orange);
  position: relative;
  overflow: hidden;
}

.intro-icon-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, var(--purple-glow) 0%, transparent 60%);
}

.intro-icon-block i {
  position: relative;
  z-index: 1;
}

.intro-content p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.75;
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 32px;
}

.intro-highlight {
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}

.intro-highlight:nth-child(even) {
  border-left-color: var(--purple);
}

.intro-highlight strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.intro-highlight span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.section-label-purple {
  color: var(--purple);
}

.service-card:nth-child(even) .service-icon {
  background: var(--primary-glow);
  color: var(--primary);
}

.service-card:nth-child(even):hover {
  border-color: var(--primary);
}

.product-preview-card {
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.product-preview-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--purple);
  transform: translateY(-4px);
}

.product-preview-card .product-icon {
  margin: 0 auto 20px;
}

.product-preview-card:nth-child(2) .product-icon {
  color: var(--primary);
}

.product-preview-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.portfolio-thumb.thumb-orange {
  background: linear-gradient(135deg, var(--primary) 0%, #9a3412 100%);
}

.portfolio-thumb.thumb-purple {
  background: linear-gradient(135deg, var(--primary) 0%, #5b21b6 100%);
}

.process-step:nth-child(even) .process-num {
  background: var(--primary);
  color: #fff;
}

.why-card:nth-child(even) i {
  color: var(--primary);
}

.stats {
  background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
  padding: 48px 0;
  min-height: 220px;
  display: flex;
  align-items: center;
}

.stat-item:nth-child(even) h4 {
  color: var(--purple);
}

/* Compact High-Contrast CTA Banner Section */
.cta {
  background: linear-gradient(135deg, #0c1f3d 0%, #1e1b4b 50%, #312e81 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(249, 115, 22, 0.12) 50%, transparent 70%);
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.cta .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn,
.cta .btn-primary,
.cta .btn-lg {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 28px !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta .btn:hover,
.cta .btn-primary:hover,
.cta .btn-lg:hover {
  transform: translateY(-2px) !important;
  box-shadow: none !important;
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* About */
.about {
  background: var(--bg-white);
  padding-top: 72px;
}

.about-header {
  text-align: center;
  margin-bottom: 36px;
}

.about-hero-title {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.about-hero-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typewriter-dynamic {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.typewriter-cursor {
  font-weight: 300;
  color: var(--orange);
  animation: blinkCursor 0.8s infinite;
  margin-left: 2px;
}

@keyframes blinkCursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.about-hero-subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 500;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--orange-glow);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.about-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.75;
  font-size: 0.96875rem;
}

.about-list {
  margin: 20px 0 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-dark);
  font-weight: 500;
}

.about-list li i {
  color: var(--accent);
  flex-shrink: 0;
}

.about-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-quote {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  font-style: italic;
  font-size: 0.96875rem;
  line-height: 1.65;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}

.quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.quote-icon {
  font-size: 1.375rem;
  color: var(--orange);
  opacity: 0.9;
}

.quote-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.18);
  padding: 3px 10px;
  border-radius: 100px;
  font-style: normal;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.pillar-item:hover {
  transform: translateY(-2px);
  background: var(--bg-white);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--orange);
  flex-shrink: 0;
}

.pillar-item:nth-child(2) .pillar-icon {
  background: var(--primary-glow);
  color: var(--primary);
}

.pillar-item:nth-child(2):hover {
  border-color: var(--primary);
}

.pillar-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 0.84375rem;
  color: var(--text-light);
  line-height: 1.5;
}

.highlight-pill:nth-child(2) i {
  color: var(--purple);
}

/* Mission & Vision grid below */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 36px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-brand);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  border-color: rgba(249, 115, 22, 0.3);
}

.mv-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-glow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.mv-card.vision-card .mv-icon {
  background: var(--primary-glow);
  color: var(--primary);
}

.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Services */
.services {
  background: var(--bg-light);
}

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

.service-card {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Products */
.products {
  background: var(--bg-light);
  padding: 52px 0 36px;
}

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

.product-card {
  background: var(--bg-white);
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(12, 31, 61, 0.1);
  border-color: rgba(249, 115, 22, 0.35);
}

.product-mockup-wrapper {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.product-mockup-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-mockup-img {
  transform: scale(1.05);
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.btn-product {
  background: var(--primary);
  color: #ffffff;
  padding: 12px 36px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-product:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Portfolio */
.portfolio {
  background: var(--bg-light);
  padding: 36px 0 52px;
}

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

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

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-body {
  padding: 24px;
}

.portfolio-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.portfolio-subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.portfolio-client {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.portfolio-tags span {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--bg-light);
  border-radius: 100px;
  color: var(--text);
}

.portfolio-impact {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.portfolio-impact strong {
  color: var(--text-dark);
}

/* Process */
.process {
  background: var(--bg-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-num {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Why Us */
.why-us {
  background: var(--bg-light);
}

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

.why-card {
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
}

.why-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h4 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonials & CTA Banner Section */
.testimonials-cta-section {
  background: var(--bg-light);
  padding: 64px 0;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 36px;
}

.testimonials-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--purple-glow);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.testimonials-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
}

.testimonials-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  margin-bottom: 24px;
  scrollbar-width: none;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.testimonial-card {
  width: 380px;
  max-width: 82vw;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(12, 31, 61, 0.04);
}

.testimonial-card:hover {
  background: var(--bg-white);
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.quote-icon-blue {
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
}

.testimonials-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all var(--transition);
  cursor: pointer;
}

.testimonials-dots .dot.active {
  width: 24px;
  border-radius: 100px;
  background: var(--purple);
}

/* CTA Banner Box */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 55%, var(--primary-light) 100%);
  border-radius: 24px;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(12, 31, 61, 0.18);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.cta-banner-text p {
  font-size: 0.96875rem;
  color: rgba(255, 255, 255, 0.85);
}

.btn-cta-white {
  background: #ffffff;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.cta-banner-graphic {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-rocket-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

/* Contact / Footer */
/* Contact Section */
.contact-section {
  background: var(--bg-white);
  padding: 64px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--primary);
  color: #ffffff;
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(12, 31, 61, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-info-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-details-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.contact-detail-content p,
.contact-detail-content p a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-detail-content p a:hover {
  color: var(--orange);
}

.contact-social-prompt {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84375rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-social-icons {
  display: flex;
  gap: 8px;
}

.contact-social-icons a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition);
}

.contact-social-icons a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.05);
}

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

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-light);
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 31, 61, 0.08);
}

.required-star {
  color: #ef4444;
}

.btn-contact-submit {
  width: 100%;
  padding: 14px 28px;
  font-size: 0.96875rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  margin-top: 12px;
}

/* Map Section */
.map-section {
  background: var(--bg-white);
  padding: 64px 0;
}

.map-container-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(12, 31, 61, 0.06);
  max-width: 1000px;
  margin: 0 auto;
}

.map-card-header {
  padding: 20px 28px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.map-card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-pin-icon {
  color: #10b981;
  font-size: 1.25rem;
}

.map-pin-red {
  color: #dc2626;
  font-size: 1.25rem;
}

.map-iframe-wrapper {
  width: 100%;
  height: 420px;
  background: #e2e8f0;
  position: relative;
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-card-footer {
  padding: 16px 28px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  font-size: 0.90625rem;
  color: var(--text-light);
}

.map-card-footer i {
  color: var(--orange);
  margin-right: 6px;
}

/* Rich Footer Section */
.footer {
  background: #060e1a;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1.2fr 1.2fr 1.2fr 1.8fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84375rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item i {
  color: var(--orange);
  width: 16px;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.84375rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.84375rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input:focus {
  border-color: var(--orange);
}

.newsletter-btn {
  padding: 10px 16px;
  background: var(--orange);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--orange-dark);
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-link-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition);
  font-size: 1rem;
  text-decoration: none;
}

.social-link-icon i {
  font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "Font Awesome 5 Free", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  display: inline-block;
}

.social-link-icon:hover {
  background: var(--gradient-brand);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 24px;
    padding: 32px 24px;
  }

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

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

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

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

  .trusted-logos-grid {
    justify-content: center;
    gap: 20px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .form-grid,
  .faq-grid,
  .about-story-grid,
  .mvv-grid,
  .values-grid,
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 12px 16px;
  }

  .nav-cta {
    margin: 8px 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .hero-grid,
  .about-grid,
  .mv-grid,
  .intro-grid,
  .contact-grid,
  .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-icon-grid {
    max-width: 280px;
    margin: 0 auto;
  }

  .services-grid,
  .portfolio-grid,
  .why-grid,
  .process-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-icon {
    margin: 0 auto;
  }

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

/* ==========================================================================
   Products Grid & Cards Styles (Index & Dedicated Products Page)
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(12, 31, 61, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(12, 31, 61, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #4f46e5;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12);
}

.product-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(79, 70, 229, 0.08);
  color: #4f46e5;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.product-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(139, 92, 246, 0.15) 100%);
  color: #4f46e5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.product-card:nth-child(2) .product-icon-wrapper {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.15) 100%);
  color: #0284c7;
}

.product-card:nth-child(3) .product-icon-wrapper {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(236, 72, 153, 0.15) 100%);
  color: #9333ea;
}

.product-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.product-card-subtitle {
  font-size: 0.84375rem;
  font-weight: 600;
  color: #4f46e5;
  margin-bottom: 16px;
}

.product-card-desc {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-feature-list li {
  font-size: 0.84375rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.product-feature-list li i {
  color: #16a34a;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

.btn-product {
  background: #f1f5f9;
  color: #4f46e5;
  border: 1px solid #e2e8f0;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-product:hover {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.25);
}

.products-view-more {
  text-align: center;
  margin-top: 48px;
}

.products-view-more .btn-lg {
  padding: 14px 36px;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: 12px;
}

/* Dedicated Products Page Detailed Cards */
.products-page-section {
  background: #f8fafc;
  padding: 36px 0 80px 0;
}

.product-detail-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

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

.product-detail-card.reverse .product-detail-grid {
  grid-template-columns: 1fr 1.1fr;
}

.product-detail-card.reverse .product-detail-content {
  order: 2;
}

.product-detail-card.reverse .product-detail-visual {
  order: 1;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.product-badge.purple {
  background: rgba(147, 51, 234, 0.1);
  color: #9333ea;
}

.product-detail-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.product-lead {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.65;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-detail-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.p-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.p-feature-item i {
  font-size: 1.25rem;
  color: #4f46e5;
  margin-top: 2px;
  flex-shrink: 0;
}

.p-feature-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.p-feature-item p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Product Mockup Screen Frame */
.product-mockup-frame {
  background: #0f172a;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid #1e293b;
}

.mockup-header {
  height: 36px;
  background: #1e293b;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.mockup-header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-header .dot.red {
  background: #ef4444;
}

.mockup-header .dot.yellow {
  background: #f59e0b;
}

.mockup-header .dot.green {
  background: #10b981;
}

.mockup-title {
  margin-left: auto;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.mockup-body {
  padding: 20px;
  background: #f8fafc;
  min-height: 260px;
}

/* POS Demo UI */
.pos-demo-ui {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
}

.pos-demo-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.pos-status {
  font-size: 9px;
  color: #16a34a;
  font-weight: 600;
}

.pos-demo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.pos-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pos-item-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.pos-item-card span {
  display: block;
  font-size: 10px;
  color: #64748b;
}

.pos-item-card strong {
  display: block;
  font-size: 11px;
  color: #0f172a;
  margin-top: 4px;
}

.pos-cart-panel {
  background: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px;
}

.pos-cart-title {
  font-weight: 700;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.pos-cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #475569;
  margin-bottom: 6px;
}

.pos-cart-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e2e8f0;
  padding-top: 6px;
  margin: 10px 0;
  font-size: 11px;
}

.pos-pay-btn {
  background: #16a34a;
  color: #fff;
  text-align: center;
  padding: 6px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 10px;
}

/* Logistics Demo UI */
.logistics-demo-ui {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
}

.log-top {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.log-stat {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
}

.log-stat span {
  font-size: 9px;
  color: #64748b;
  display: block;
}

.log-stat strong {
  font-size: 12px;
  color: #0f172a;
}

.log-trip-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
}

.trip-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 700;
}

.status-badge.transit {
  background: #e0f2fe;
  color: #0284c7;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 9px;
}

.trip-route {
  font-size: 12px;
  color: #1e293b;
  margin-bottom: 10px;
}

.trip-progress {
  height: 6px;
  background: #f1f5f9;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.trip-progress .bar {
  height: 100%;
  background: #0284c7;
}

.trip-footer {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #64748b;
}

/* HR Demo UI */
.hr-demo-ui {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
}

.hr-top-bar {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.hr-badge {
  background: #dcfce7;
  color: #15803d;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 9px;
}

.hr-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.hr-s-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px;
}

.hr-s-card span {
  font-size: 8px;
  color: #64748b;
  display: block;
}

.hr-s-card strong {
  font-size: 10px;
  color: #0f172a;
}

.hr-emp-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.emp-avatar {
  width: 28px;
  height: 28px;
  background: #e0e7ff;
  color: #4338ca;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
}

.emp-meta strong {
  display: block;
  font-size: 10px;
  color: #0f172a;
}

.emp-meta span {
  font-size: 8px;
  color: #64748b;
}

.emp-action {
  font-size: 9px;
  color: #4f46e5;
  font-weight: 600;
}

.additional-products-section {
  margin-top: 64px;
}

@media (max-width: 991px) {

  .product-detail-grid,
  .product-detail-card.reverse .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-card.reverse .product-detail-content {
    order: 1;
  }

  .product-detail-card.reverse .product-detail-visual {
    order: 2;
  }
}

/* Category Filter Bar (Matching Reference Image) */
.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
}

.filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 8px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.filter-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
}

.filter-btn.active {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

/* ==========================================================================
   Product Card V2 (Banner Image + Header Overlay + Description + Dual Action Buttons)
   ========================================================================== */
.product-card-v2 {
  background: #ffffff;
  border: 1px solid rgba(12, 31, 61, 0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(79, 70, 229, 0.16);
  border-color: rgba(79, 70, 229, 0.4);
}

.product-card-banner {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #0f172a;
}

.product-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-v2:hover .product-banner-img {
  transform: scale(1.08);
}

.product-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.product-card-v2:nth-child(2) .product-banner-overlay {
  background: rgba(15, 23, 42, 0.85);
}

.product-card-v2:nth-child(3) .product-banner-overlay {
  background: rgba(15, 23, 42, 0.85);
}

.product-banner-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}

.product-body-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.product-body-desc {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.btn-read-more {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.84375rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-read-more:hover {
  background: #e2e8f0;
  color: #0f172a;
  border-color: #94a3b8;
}

.btn-get-started {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #ffffff;
  border: 1px solid #4338ca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.84375rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.btn-get-started:hover {
  background: linear-gradient(135deg, #3730a3 0%, #312e81 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.35);
}

/* ==========================================================================
   Dedicated Services Page Styles
   ========================================================================== */
.services-page-section {
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6fb 100%);
  padding: 64px 0 88px 0;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.service-detail-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #f97316 100%);
}

.service-detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: 0 20px 48px rgba(79, 70, 229, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-detail-card:nth-child(2n) {
  background: linear-gradient(145deg, #ffffff 0%, #fcf8ff 100%);
}

.service-detail-card:nth-child(3n) {
  background: linear-gradient(145deg, #ffffff 0%, #f2fcf8 100%);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 24px rgba(15, 23, 42, 0.08);
}

.service-icon-box.blue {
  background: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
}

.service-icon-box.purple {
  background: var(--primary-glow);
  color: var(--primary);
}

.service-icon-box.green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.service-icon-box.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.service-icon-box.cyan {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.service-icon-box.indigo {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.service-detail-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.service-lead {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-check-list li {
  font-size: 0.875rem;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.service-check-list li i {
  color: #4f46e5;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-detail-card .btn {
  align-self: flex-start;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid rgba(79, 70, 229, 0.18);
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.08);
}

.service-detail-card .btn:hover {
  background: linear-gradient(135deg, var(--primary) 0%, #4338ca 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

/* Process Section */
.process-section {
  background: #ffffff;
  padding: 80px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.process-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
}

.process-card:hover {
  border-color: #4f46e5;
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
}

.step-num {
  font-size: 2rem;
  font-weight: 900;
  color: #4f46e5;
  margin-bottom: 12px;
  opacity: 0.85;
}

.process-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Tech Stack Section */
.tech-stack-section {
  background: #0f172a;
  color: #ffffff;
  padding: 80px 0;
}

.tech-stack-section .section-title {
  color: #ffffff;
}

.tech-stack-section .section-subtitle {
  color: #94a3b8;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.tech-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: #6366f1;
  transform: translateY(-3px);
  background: #252b42;
}

.tech-card i {
  font-size: 2rem;
  color: #38bdf8;
}

.tech-card span {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 991px) {

  .services-detail-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

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

/* ==========================================================================
   Dedicated Portfolio Page Styles
   ========================================================================== */
.portfolio-page-section {
  background: #f8fafc;
  padding: 60px 0 80px 0;
}

.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 44px;
}

.portfolio-v2-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(12, 31, 61, 0.05);
  transition: all 0.35s ease;
}

.portfolio-v2-card:hover {
  transform: translateY(-8px);
  border-color: #4f46e5;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.portfolio-v2-banner {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.portfolio-v2-banner.indigo-bg {
  background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%);
}

.portfolio-v2-banner.green-bg {
  background: linear-gradient(135deg, #064e3b 0%, #10b981 100%);
}

.portfolio-v2-banner.cyan-bg {
  background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 100%);
}

.portfolio-v2-banner.orange-bg {
  background: linear-gradient(135deg, #7c2d12 0%, #ea580c 100%);
}

.portfolio-v2-banner.purple-bg {
  background: linear-gradient(135deg, #581c87 0%, #9333ea 100%);
}

.portfolio-v2-banner.blue-bg {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

.portfolio-v2-icon {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.portfolio-category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.portfolio-v2-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.portfolio-v2-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.portfolio-client-info {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 14px;
}

.portfolio-client-info i {
  color: #4f46e5;
  margin-right: 4px;
}

.portfolio-v2-desc {
  font-size: 0.90625rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.portfolio-impact-box {
  background: #f1f5f9;
  border-left: 4px solid #4f46e5;
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  font-size: 0.84375rem;
  color: #1e293b;
  margin-bottom: 20px;
}

.portfolio-impact-box i {
  color: #16a34a;
  margin-right: 4px;
}

.portfolio-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  margin-top: auto;
}

.portfolio-tech-tags span {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.portfolio-v2-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Testimonials Section */
.testimonials-section {
  background: #ffffff;
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.testimonial-v2-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.testimonial-v2-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: #4f46e5;
  box-shadow: 0 12px 32px rgba(79, 70, 229, 0.1);
}

.testimonial-v2-card .stars {
  color: #f59e0b;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.client-name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.client-role {
  font-size: 0.78125rem;
  color: #64748b;
}

@media (max-width: 991px) {

  .portfolio-showcase-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp Action Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  background: #20ba5a;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  color: #ffffff;
}

.whatsapp-float i {
  line-height: 1;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  font-family: 'Inter', sans-serif;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #0f172a;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 68px;
}