/* ═══════════════════════════════════════════════════════════
   APS TERMINAL – Exact Screenshot Design
   Blue/White Corporate | Inter Font Style
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --blue: #3563e9;
  --blue-dark: #2348c7;
  --blue-light: #eef2ff;
  --blue-mid: #c7d5ff;
  --text-main: #0f172a;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-faint: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f8faff;
  --bg-hero: #f0f4ff;
  --border: #e5e9f2;
  --border-blue: rgba(53, 99, 233, 0.2);
  --card-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  --card-hover: 0 8px 28px rgba(53, 99, 233, 0.14);
  --blue-shadow: 0 8px 24px rgba(53, 99, 233, 0.32);
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 100px;
  --nav-h: 72px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ════════════════════════════════════════
   NAVIGATION  (exact screenshot match)
════════════════════════════════════════ */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--text-main);
  white-space: nowrap;
}

.logo-text span {
  color: var(--blue);
}

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

.nav-links a {
  color: var(--text-body);
  font-size: 16px;
  font-weight: 700;
  padding: 4px 0;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links .has-arrow::after {
  display: none;
}

.nav-links .has-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links .has-arrow .arr {
  font-size: 10px;
  opacity: 0.6;
}

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

.nav-phone {
  font-size: 15px;
  color: var(--text-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
}

.nav-phone .ph-icon {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: var(--blue-shadow);
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  border-left: 1px solid var(--border);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
}

.drawer-close {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.drawer-close:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.drawer-links {
  padding: 18px 22px;
}

.drawer-links li {
  margin-bottom: 3px;
}

.drawer-links a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
  transition: all var(--transition);
}

.drawer-links a:hover {
  background: var(--blue-light);
  color: var(--blue);
}

.drawer-ctas {
  padding: 0 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-social {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: center;
}

.drawer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}

.drawer-social a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  display: none !important;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 10px 5%;
  margin-top: var(--nav-h);
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-faint);
}

.breadcrumbs-inner a {
  color: var(--text-faint);
  transition: color 0.2s;
}

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

.breadcrumbs-inner .sep {
  color: var(--border);
}

.breadcrumbs-inner .current {
  color: var(--text-main);
  font-weight: 500;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--blue);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--blue);
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--blue-shadow);
}

.btn-outline {
  background: transparent;
  color: var(--text-main) !important;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--border);
  transition: all var(--transition);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
  transform: translateY(-2px);
}

.text-white { color: #fff !important; }
.border-white { border-color: rgba(255, 255, 255, 0.4) !important; }
.border-white:hover { background: rgba(255, 255, 255, 0.1) !important; border-color: #fff !important; color: #fff !important; }

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

/* ════════════════════════════════════════
   HERO SECTION  (animation stays, layout matches screenshot)
════════════════════════════════════════ */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 30px) 0 30px 5%;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 40%, #f5f8ff 100%);
}

.hero-bg {
  display: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(53, 99, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 99, 233, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  max-width: 100%;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(53, 99, 233, 0.1);
  border: 1px solid rgba(53, 99, 233, 0.25);
  border-radius: var(--radius-full);
  padding: 5px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

h1.hero-title {
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  animation: fadeUp 0.8s 0.1s ease both;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

h1.hero-title .line-red {
  color: var(--blue);
}

h1.hero-title .line-stroke {
  color: var(--text-main);
}

.hero-sub {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  margin: 22px 0 36px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border-blue);
}

.stat-text {}

.stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.stat-num span {
  color: var(--blue);
}

.stat-label {
  font-size: 11.5px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* Hero Right: Device Mockup Illustration */
.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s 0.3s ease both;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  margin-right: 0;
  padding-right: 0;
}

.hero-visual img {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  object-position: center right;
  transform: translateX(-5%);
  transform-origin: center right;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
}

.dashboard-preview-img {
  width: 280%;
  max-width: 1400px;
  min-width: 1000px;
  height: auto;
  display: block;
  position: relative;
  left: 2%;
  top: -5%;
  filter: drop-shadow(0 25px 50px rgba(15, 23, 42, 0.15));
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════
   TRUSTED BY STRIP
════════════════════════════════════════ */
.trust-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 5%;
}

.trust-logos {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
  /* For scrollbar */
}

.trust-logo {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  flex: 1 1 0;
  min-width: 140px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 16px;
  text-align: center;
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-logo .t-name {
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.trust-logo .t-sub {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
section {
  padding: 80px 5%;
}

.sec-tag,
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.sec-title,
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.3px;
}

.sec-title .blue,
.section-title .blue {
  color: var(--blue);
}

.divider {
  display: none;
}

.divider-center {
  display: none;
}

/* ════════════════════════════════════════
   SERVICES + PRODUCTS (Two-column exact layout)
════════════════════════════════════════ */
.sp-section {
  padding: 80px 5%;
  background: var(--bg);
}

.sp-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Services column */
.sp-col-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}

.sp-col-header .view-all {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap 0.2s;
}

.sp-col-header .view-all:hover {
  gap: 8px;
}

.svc-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.svc-card:hover {
  background: #fff;
  border-color: var(--border-blue);
  box-shadow: var(--card-hover);
  transform: translateY(-4px);
}

.svc-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: var(--blue-light);
  border: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.svc-grid .svc-card:last-child {
  grid-column: 1 / -1;
}

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

.svc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.svc-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.3;
}

.svc-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.svc-arrow {
  margin-top: auto;
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
  text-decoration: none;
}

.svc-card:hover .svc-arrow {
  gap: 8px;
}

/* Products column */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proj-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

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

.proj-thumb {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
}

.proj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proj-thumb .proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(53, 99, 233, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
}

.proj-card:hover .proj-thumb .proj-overlay {
  opacity: 1;
}

.proj-info {
  padding: 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.proj-info h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.proj-cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
#about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

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

.about-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all 0.35s ease;
  transform-style: preserve-3d;
}

.about-value:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-hover);
  border-color: var(--border-blue);
}

.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  border: 1px solid var(--border-blue);
}

.about-value h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.about-value p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card:hover {
  background: #fff;
  border-color: var(--border-blue);
  box-shadow: var(--card-hover);
  transform: translateY(-4px);
}

.service-num {
  font-size: 48px;
  font-weight: 800;
  color: rgba(53, 99, 233, 0.06);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  transition: gap 0.2s;
}

.service-card:hover .service-arrow {
  gap: 8px;
}



/* ==========================================================================
   PORTFOLIO PAGE STYLES (products.php) - Simple Design
   ========================================================================== */

.products-page-section {
  padding: calc(var(--nav-h) + 60px) 5% 80px;
  background-color: #f4f7fe;
  background-image: linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  text-align: center;
  min-height: 100vh;
}

.products-header-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.products-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  color: #0f172a;
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}

.products-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.products-grid-2col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
#features {
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 22px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  transform-style: preserve-3d;
}

.feature-card:hover {
  background: #fff;
  border-color: var(--border-blue);
  box-shadow: var(--card-hover);
  transform: translateY(-4px);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--blue);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════
   PROCESS SECTION  (exact screenshot)
════════════════════════════════════════ */
#process {
  background: var(--bg-alt);
}

.process-wrap {
  margin-top: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  gap: 8px;
}

/* Connector (Static line) */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 26px;
  left: 52px;
  width: calc(100% - 36px);
  height: 2px;
  background: #cbd5e1;
  z-index: 0;
}

/* Connector (Animated wave) */
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 52px;
  width: 0%;
  height: 2px;
  background: var(--blue);
  z-index: 1;
  opacity: 0;
  animation: waveFlow 6s infinite;
  box-shadow: 0 0 6px var(--blue);
}

@keyframes waveFlow {
  0% {
    width: 0%;
    left: 52px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    width: calc(100% - 36px);
    left: 52px;
    opacity: 0;
  }
}

/* Overriding icon and text alignment */
.process-step .process-icon {
  margin-bottom: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
  animation: procGlow 6s infinite;
  position: relative;
  z-index: 2;
}

.process-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
  display: block;
  text-align: left !important;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  text-align: left !important;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
  text-align: left !important;
}

.process-step:nth-child(1) .process-icon,
.process-step:nth-child(1)::before {
  animation-delay: 0s;
}

.process-step:nth-child(2) .process-icon,
.process-step:nth-child(2)::before {
  animation-delay: 1s;
}

.process-step:nth-child(3) .process-icon,
.process-step:nth-child(3)::before {
  animation-delay: 2s;
}

.process-step:nth-child(4) .process-icon,
.process-step:nth-child(4)::before {
  animation-delay: 3s;
}

.process-step:nth-child(5) .process-icon,
.process-step:nth-child(5)::before {
  animation-delay: 4s;
}

.process-step:nth-child(6) .process-icon,
.process-step:nth-child(6)::before {
  animation-delay: 5s;
}

@keyframes procGlow {

  0%,
  5% {
    transform: scale(1.15) rotateY(15deg) rotateX(-10deg) translateZ(20px);
    box-shadow: -5px 15px 30px rgba(53, 99, 233, 0.6), 0 0 25px rgba(53, 99, 233, 0.9);
    background: #1e40af;
    border-color: #dbeafe;
  }

  15%,
  100% {
    transform: scale(1) rotateY(0) rotateX(0) translateZ(0);
    box-shadow: 0 6px 18px rgba(53, 99, 233, 0.3);
    background: var(--blue);
    border-color: #fff;
  }
}

@keyframes waveFlow {

  0%,
  5% {
    width: 0%;
    opacity: 0;
  }

  6% {
    opacity: 1;
    width: 0%;
  }

  15% {
    width: 100%;
    opacity: 1;
  }

  16%,
  100% {
    width: 100%;
    opacity: 0;
  }
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#testimonials {
  background: #fff;
}

.testimonials-wrapper {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 8px;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0.4;
  transform: scale(0.9);
}

@media(min-width: 600px) {
  .testimonial-card {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 0 12px;
  }
}

@media(min-width: 768px) {
  .testimonial-card {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-inner {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--card-shadow);
}

.testimonial-inner::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 72px;
  color: rgba(53, 99, 233, 0.12);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-stars {
  margin-bottom: 14px;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.testimonial-author h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

.av-blue {
  background: linear-gradient(135deg, #3563e9, #2348c7);
}

.av-teal {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}

.av-purple {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.av-coral {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.av-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.av-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.av-red {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* ════════════════════════════════════════
   CLIENT LOGOS
════════════════════════════════════════ */
#clients {
  background: var(--bg-alt);
}

.clients-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  padding: 10px 0;
  margin-top: 50px;
}

.clients-marquee-track {
  display: inline-flex;
  gap: 36px;
  animation: scrollClientsMarquee 40s linear infinite;
}

.clients-marquee-track:hover {
  animation-play-state: paused;
}

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

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

.client-logo {
  padding: 20px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.3s;
  text-align: center;
  min-width: 160px;
  flex-shrink: 0;
}

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

.client-logo h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.client-logo p {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
#faq {
  background: #fff;
}

.faq-grid {
  max-width: 780px;
  margin: 50px auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
  background: var(--bg-alt);
}

.faq-item.active {
  border-color: var(--border-blue);
  background: #fff;
}

.faq-question {
  color: var(--text-main) !important;
  width: 100%;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  text-align: left;
  background: transparent;
  border: none;
  outline: none;
}

.faq-question:hover {
  background: #fff;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s, background 0.3s;
  color: var(--blue);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-answer-inner {
  padding: 0 20px 18px;
}

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
#blog {
  background: var(--bg-alt);
}

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

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-blue);
  box-shadow: var(--card-hover);
}

.blog-thumb {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  position: relative;
}

.blog-thumb::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.5));
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  color: var(--text-faint);
  margin-bottom: 10px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-category {
  padding: 2px 9px;
  border-radius: var(--radius-full);
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
  border: 1px solid var(--border-blue);
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-main);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.7;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-read-more {
  gap: 8px;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact {
  background: #fff;
}

#contact .section-tag,
#contact .section-title,
#contact .section-sub,
#contact .divider {
  text-align: left;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.contact-info {
  text-align: left;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  text-align: left;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.contact-item h5 {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
  text-align: left !important;
}

.contact-item p {
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 700;
  margin: 0;
  text-align: left !important;
}

.contact-social {
  margin-top: 28px;
  display: flex;
  gap: 10px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all var(--transition);
}

.contact-social a:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.contact-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--card-shadow);
}

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

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

.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(53, 99, 233, 0.1);
}

.form-group select option {
  background: #fff;
}

.form-group textarea {
  resize: none;
  height: 110px;
}

.form-submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--blue-shadow);
}

/* ── MAP ── */
.map-container {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 5% 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 44px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 9px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #fff;
}

.footer-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 22px 0;
  margin-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact-item span:first-child {
  font-size: 15px;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── PAGE HEADER (sub-pages) ── */
.page-header {
  padding: calc(var(--nav-h) + 40px) 5% 60px;
  text-align: center;
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(53, 99, 233, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 99, 233, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  letter-spacing: 2px;
  position: relative;
  color: var(--text-main);
}

.page-header .page-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  margin: 14px auto 0;
  font-weight: 400;
  position: relative;
}

/* ── LEGAL ── */
.legal-content {
  padding: 80px 5%;
  max-width: 880px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  margin: 44px 0 12px;
  color: var(--text-main);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.legal-content p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 10px 0 16px 22px;
  list-style: disc;
}

.legal-content ul li {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 5px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--blue-dark);
}

/* ── POPUP ── */
.custom-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-popup-box {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: translateY(30px) scale(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
  border: 1px solid var(--border);
}

.custom-popup-overlay.active .custom-popup-box {
  transform: translateY(0) scale(1);
}

.custom-popup-icon {
  font-size: 56px;
  color: var(--blue);
  margin-bottom: 18px;
}

.custom-popup-text {
  font-size: 19px;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 22px;
}

.custom-popup-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.custom-popup-btn:hover {
  background: var(--blue-dark);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 1024px) {

  .sp-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .process-step:not(:last-child)::after,
  .process-step:not(:last-child)::before {
    display: none;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }

  .process-step {
    min-width: 140px;
    flex: 0 0 calc(33% - 20px);
  }

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

  .hero-visual {
    display: none;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 900px) {
  .products-grid-2col {
    grid-template-columns: 1fr;
  }


  .nav-links,
  .nav-cta,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .svc-grid {
    grid-template-columns: 1fr !important;
  }

  .svc-grid .svc-card:last-child {
    grid-column: auto;
  }

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

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

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

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

  .trust-logos {
    flex-wrap: wrap;
    gap: 16px;
  }

  .trust-logo {
    border-right: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
  }

  .contact-item h5,
  .contact-item p {
    text-align: left !important;
  }
}

@media (max-width: 768px) {

  section {
    padding: 60px 5%;
  }

  .sp-section {
    padding: 60px 5%;
  }

  .hero-section {
    padding: calc(var(--nav-h) + 24px) 5% 32px;
    text-align: center;
  }

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

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

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

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

  .process-step {
    flex: 0 0 calc(50% - 20px);
  }

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

  .footer-contact-bar {
    flex-direction: column;
    gap: 12px;
  }

  .page-header {
    padding: calc(var(--nav-h) + 30px) 5% 44px;
  }

  h1.hero-title {
    white-space: normal;
  }

  .contact-item h5,
  .contact-item p {
    text-align: left !important;
  }

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

  .svc-grid {
    grid-template-columns: 1fr !important;
  }

  .svc-grid .svc-card:last-child {
    grid-column: auto;
  }

  .testimonial-card {
    flex: 0 0 80%;
    max-width: 80%;
  }

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

@media (max-width: 480px) {


  /* ── GLOBAL SPACING ── */
  section {
    padding: 40px 4%;
  }

  .sp-section {
    padding: 40px 4%;
  }

  /* ── TYPOGRAPHY – Mobile sizes ── */
  .sec-title,
  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .sec-tag,
  .section-tag {
    font-size: 10px;
    letter-spacing: 2px;
  }

  /* ── HERO ── */
  .hero-section {
    padding: calc(var(--nav-h) + 16px) 4% 24px;
  }

  h1.hero-title {
    font-size: clamp(26px, 7vw, 38px);
    white-space: normal;
    line-height: 1.15;
    letter-spacing: -0.3px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px auto 28px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 4px 12px;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 32px;
  }

  .stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    gap: 4px;
    min-width: 0;
  }

  .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

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

  .stat-num {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* ── BUTTONS – touch friendly ── */
  .btn-primary,
  .btn-outline {
    padding: 12px 20px;
    font-size: 13px;
    min-height: 44px;
  }

  /* ── TRUST / CLIENT LOGOS ── */
  .trust-strip {
    padding: 24px 4%;
  }

  .trust-logo {
    min-width: 110px;
    min-height: 100px;
    padding: 20px 12px;
  }

  .trust-logo .t-name {
    font-size: 14px;
  }

  .trust-logo .t-sub {
    font-size: 9px;
  }

  .client-logo {
    padding: 14px 18px;
    min-width: 130px;
  }

  .client-logo h4 {
    font-size: 14px;
  }

  .client-logo p {
    font-size: 10px;
  }

  .clients-marquee-wrapper {
    margin-top: 30px;
  }

  /* ── SERVICES GRID ── */
  .svc-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .svc-grid .svc-card:last-child {
    grid-column: auto;
  }

  .svc-card {
    padding: 20px 16px;
    gap: 12px;
  }

  .svc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .svc-body h3 {
    font-size: 17px;
  }

  .svc-body p {
    font-size: 13px;
  }

  /* ── PRODUCTS GRID ── */
  .proj-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proj-thumb {
    height: 170px;
  }

  .proj-info h4 {
    font-size: 16px;
  }

  .proj-cat {
    font-size: 12px;
  }

  /* ── ABOUT VALUES ── */
  .about-values {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-value {
    padding: 22px 16px;
  }

  .about-value h4 {
    font-size: 13.5px;
  }

  .about-value p {
    font-size: 12px;
  }

  /* ── PROCESS STEPS ── */
  .process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }

  .process-step {
    flex: 0 0 calc(50% - 10px);
  }

  .process-step .process-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .process-step h4 {
    font-size: 16px !important;
  }

  .process-step p {
    font-size: 13px !important;
    margin-top: 4px !important;
  }

  /* ── FEATURES GRID ── */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .feature-card .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* ── TESTIMONIALS ── */
  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 4px;
  }

  .testimonial-inner {
    padding: 22px 16px;
  }

  .testimonial-inner::before {
    font-size: 44px;
    top: 8px;
    left: 12px;
  }

  .testimonial-stars {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: left;
  }

  .testimonial-text {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 16px;
    text-align: left !important;
    font-style: italic;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .testimonial-author {
    gap: 10px;
  }

  .testimonial-author h4 {
    font-size: 13px;
    text-align: left !important;
  }

  .testimonial-author span {
    font-size: 11px;
    text-align: left !important;
  }

  .testimonial-dots {
    margin-top: 20px;
  }

  .testimonials-wrapper {
    margin-top: 30px;
  }

  /* ── FAQ ── */
  .faq-grid {
    margin: 30px auto 0;
  }

  .faq-question {
    font-size: 13.5px;
    padding: 14px 16px;
  }

  .faq-answer-inner {
    font-size: 13px;
    padding: 0 16px;
  }

  .faq-item.active .faq-answer-inner {
    padding: 0 16px 14px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  /* ── BLOG ── */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .blog-thumb {
    height: 160px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-card h3 {
    font-size: 15px;
  }

  .blog-card p {
    font-size: 12.5px;
  }

  .blog-meta {
    font-size: 10.5px;
  }

  /* ── CONTACT ── */
  .contact-form {
    padding: 24px 16px;
  }

  .contact-wrapper {
    gap: 24px;
  }

  .contact-info p {
    font-size: 13.5px;
  }

  .form-group label {
    font-size: 10.5px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 11px 13px;
    font-size: 14px;
  }

  .form-submit {
    padding: 14px;
    font-size: 13px;
  }

  .map-container {
    height: 240px;
    margin-top: 30px;
  }

  .contact-item h5,
  .contact-item p {
    text-align: left !important;
  }

  /* ── FOOTER ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  footer {
    padding: 40px 4% 20px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 12.5px;
  }

  .footer-col h5 {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .footer-col ul a {
    font-size: 12.5px;
  }

  .footer-contact-bar {
    gap: 14px;
    padding: 16px 0;
  }

  .footer-contact-item {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  /* ── PAGE HEADER (sub-pages) ── */
  .page-header {
    padding: calc(var(--nav-h) + 20px) 4% 36px;
  }

  .page-header h1 {
    font-size: clamp(32px, 8vw, 50px);
  }

  .page-header .page-desc {
    font-size: 14px;
  }

  /* ── POPUP ── */
  .custom-popup-box {
    padding: 28px 20px;
  }

  .custom-popup-text {
    font-size: 16px;
  }

  /* ── MARQUEE SECTION ── */
  .marquee-section {
    padding: 20px 0;
  }

  .marquee-label {
    font-size: 11px;
    margin-bottom: 14px;
  }

  .marquee-item {
    font-size: 16px;
  }

  /* ── BREADCRUMBS ── */
  .breadcrumbs-inner {
    font-size: 11px;
  }

  /* ── GENERAL OVERFLOW FIXES ── */
  .sp-col-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* ── SERVICES PAGE GRID ── */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 24px 18px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 13px;
  }

  /* ── LEGAL PAGES ── */
  .legal-content {
    padding: 48px 4%;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content p,
  .legal-content ul li {
    font-size: 13.5px;
  }
}

/* updated */

/* ── MARQUEE SECTION ── */
.marquee-section {
  padding: 30px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.marquee-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
}

.marquee-item {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

/* ════════════════════════════════════════
   ULTRA-SMALL PHONES (≤360px)
════════════════════════════════════════ */
@media (max-width: 360px) {
  section {
    padding: 32px 3.5%;
  }

  .sp-section {
    padding: 32px 3.5%;
  }

  h1.hero-title {
    font-size: 24px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-stats {
    gap: 6px;
  }

  .stat-num {
    font-size: 18px;
  }

  .stat-label {
    font-size: 9px;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .testimonial-inner {
    padding: 20px 14px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .sec-title,
  .section-title {
    font-size: 20px;
  }

  .feature-card {
    padding: 20px 14px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .contact-form {
    padding: 20px 12px;
  }

  .faq-question {
    font-size: 12.5px;
    padding: 12px 14px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  footer {
    padding: 32px 3.5% 16px;
  }
}

/* --- PRODUCTS PAGE REDESIGN --- */
.portfolio-hero {
  padding: calc(var(--nav-h) + 80px) 5% 160px;
  background: #f0f6ff;
  position: relative;
  overflow: hidden;
}
.portfolio-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.portfolio-hero-content {
  flex: 1;
  max-width: 600px;
}
.portfolio-badge {
  display: inline-block;
  background: #e2edff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.portfolio-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 24px;
}
.portfolio-hero-title .text-blue {
  color: var(--blue);
}
.portfolio-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.portfolio-hero-btns {
  display: flex;
  gap: 15px;
}
.portfolio-hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.portfolio-hero-visual img {
  max-width: 120%;
  height: auto;
  margin-right: -10%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

.portfolio-stats-section {
  padding: 0 5%;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}
.portfolio-stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.p-stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: none;
}
.p-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.p-stat-icon svg { width: 24px; height: 24px; }
.bg-blue-light { background: #eef2ff; color: var(--blue); }
.bg-pink-light { background: #fdf2f8; }
.bg-green-light { background: #f0fdf4; }
.bg-orange-light { background: #fff7ed; }
.p-stat-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
}
.p-stat-card p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.explore-products {
  padding: 80px 5%;
}
.p-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.p-filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.p-filter-btn:hover, .p-filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.p-product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}
.p-product-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}
.p-product-thumb {
  background: #f8f9fa;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.p-product-thumb img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.p-product-info {
  padding: 25px;
}
.p-product-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
.p-product-cat {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 15px;
}
.p-product-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.p-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 15px;
}
.p-tech-stack {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 500;
}
.p-btn-sm {
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-body);
  text-decoration: none;
  font-weight: 600;
}
.p-btn-sm:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.idea-banner-section {
  padding: 0 5% 80px;
}
.idea-banner-inner {
  background: #0f205c; /* Dark blue background */
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}
.idea-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.idea-banner-icon {
  background: var(--blue);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.idea-banner-icon svg { width: 26px; height: 26px; }
.idea-banner-text h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.idea-banner-text p {
  color: #aebce6;
  font-size: 15px;
  margin-bottom: 15px;
}
.idea-banner-checks {
  display: flex;
  gap: 15px;
}
.idea-banner-checks span {
  color: #aebce6;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.idea-banner-checks svg {
  width: 16px;
  height: 16px;
  color: var(--blue-mid);
}
.idea-banner-actions {
  display: flex;
  gap: 15px;
}
.idea-banner-actions .bg-white { background: #fff !important; color: var(--blue) !important; border:none; }
.idea-banner-actions .border-white { border: 1px solid rgba(255,255,255,0.3) !important; color: #fff !important; }
.idea-banner-actions .border-white:hover { background: rgba(255,255,255,0.1); }

.tech-logos-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  gap: 15px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.tech-logos-grid::-webkit-scrollbar {
  height: 6px;
}
.tech-logos-grid::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
.t-logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 30px;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.2s;
}
.t-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.t-icon img {
  width: 48px;
  height: 48px;
  display: block;
}
.t-icon {
  font-size: 24px;
  font-weight: 800;
}
.t-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-body);
}

.text-red { color: #f05340; }
.text-purple { color: #777bb4; }
.text-blue { color: #54c5f8; }
.text-cyan { color: #61dafb; }
.text-green { color: #68a063; }
.text-emerald { color: #4fc08d; }
.text-blue-light { color: #00758f; }
.text-green-dark { color: #4db33d; }
.text-orange { color: #ff9900; }
.text-yellow { color: #ffcb2b; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.t-quote-icon {
  font-size: 60px;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: -10px;
  font-family: serif;
}
.t-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 25px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.t-author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.t-author-info h4 {
  font-size: 15px;
  font-weight: 700;
}
.t-author-info span {
  font-size: 12px;
  color: var(--text-muted);
}
.t-flag {
  margin-left: auto;
  font-size: 20px;
}
.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
}
.t-dot.active {
  background: var(--blue);
  width: 20px;
  border-radius: 4px;
}

.faq-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.f-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.f-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}
.f-icon {
  color: var(--blue);
  font-weight: bold;
}

.bottom-cta-inner {
  background: #0f172a;
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom-cta-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bottom-cta-icon {
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-cta-icon svg { width: 30px; height: 30px; }
.bottom-cta-text h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}
.bottom-cta-text p {
  color: #94a3b8;
  font-size: 15px;
}
.bottom-cta-actions {
  display: flex;
  gap: 15px;
}
.bg-blue { background: var(--blue) !important; border:none; }

@media (max-width: 992px) {
  .portfolio-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .portfolio-hero-visual {
    margin-top: 40px;
  }
  .portfolio-hero-visual img {
    margin-right: 0;
    max-width: 100%;
  }
  .portfolio-stats-grid, .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .idea-banner-inner, .bottom-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .idea-banner-content, .bottom-cta-content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .portfolio-stats-grid, .faq-grid-2col, .testi-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-hero-title {
    font-size: 40px;
  }
}
