/* ==========================================================================
   Jasmitra Company Profile — Design System
   Color: #3B82F6 (Blue) + #10B981 (Emerald)
   Font: Inter (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary:       #3B82F6;
  --color-primary-dark:  #2563EB;
  --color-primary-light: #60A5FA;
  --color-accent:        #10B981;
  --color-accent-dark:   #059669;
  --color-accent-light:  #34D399;

  --color-dark:          #0F172A;
  --color-dark-2:        #1E293B;
  --color-dark-3:        #334155;
  --color-text:          #1E293B;
  --color-subtle:        #64748B;
  --color-muted:         #94A3B8;
  --color-border:        #E2E8F0;
  --color-bg:            #F8FAFC;
  --color-white:         #FFFFFF;

  /* Gradients */
  --gradient-primary:    linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  --gradient-accent:     linear-gradient(135deg, #10B981 0%, #059669 100%);
  --gradient-hero:       linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #0F172A 100%);
  --gradient-card:       linear-gradient(145deg, rgba(59,130,246,0.05) 0%, rgba(16,185,129,0.05) 100%);

  /* Typography */
  --font-family:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs:        0.75rem;   /* 12px */
  --font-size-sm:        0.875rem;  /* 14px */
  --font-size-base:      1rem;      /* 16px */
  --font-size-lg:        1.125rem;  /* 18px */
  --font-size-xl:        1.25rem;   /* 20px */
  --font-size-2xl:       1.5rem;    /* 24px */
  --font-size-3xl:       1.875rem;  /* 30px */
  --font-size-4xl:       2.25rem;   /* 36px */
  --font-size-5xl:       3rem;      /* 48px */
  --font-size-6xl:       3.75rem;   /* 60px */

  /* Spacing (8pt grid) */
  --space-1:  0.25rem;  /* 4px */
  --space-2:  0.5rem;   /* 8px */
  --space-3:  0.75rem;  /* 12px */
  --space-4:  1rem;     /* 16px */
  --space-5:  1.25rem;  /* 20px */
  --space-6:  1.5rem;   /* 24px */
  --space-8:  2rem;     /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl:   0 20px 60px rgba(0,0,0,0.15);
  --shadow-blue: 0 8px 30px rgba(59,130,246,0.25);
  --shadow-green:0 8px 30px rgba(16,185,129,0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-navbar: 1000;
  --z-modal:  2000;
  --z-toast:  3000;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

.section-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(59,130,246,0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-subtle);
  line-height: 1.7;
  max-width: 600px;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --------------------------------------------------------------------------
   4. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

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

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59,130,246,0.35);
  color: var(--color-white);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-green);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.35);
  color: var(--color-white);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  color: var(--color-white);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

/* --------------------------------------------------------------------------
   6. Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: var(--space-4) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-3) 0;
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar-logo {
  color: var(--color-dark);
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}

.navbar-logo span {
  color: var(--color-primary-light);
}

.navbar.scrolled .navbar-logo span {
  color: var(--color-primary);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.navbar-menu a {
  display: inline-block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.navbar.scrolled .navbar-menu a {
  color: var(--color-text);
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--color-primary-light);
  background: rgba(59,130,246,0.08);
}

.navbar.scrolled .navbar-menu a:hover,
.navbar.scrolled .navbar-menu a.active {
  color: var(--color-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar.scrolled .hamburger span {
  background: var(--color-dark);
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-navbar) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-24) var(--space-8);
}

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

.mobile-menu a {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--color-primary-light);
  background: rgba(59,130,246,0.1);
}

.mobile-menu .mobile-cta {
  margin-top: var(--space-6);
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated background blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--color-accent);
  bottom: -50px;
  left: -100px;
  animation: blobFloat 10s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid dots pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59,130,246,0.2) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-16) var(--space-6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--color-primary-light);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-title .typing-slot {
  color: var(--color-primary-light);
  border-right: 3px solid var(--color-primary-light);
  padding-right: 4px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: var(--color-primary-light); }
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto var(--space-10);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-6) var(--space-8);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

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

.hero-stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.hero-stat-label {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Swiper */
.hero-swiper-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(59,130,246,0.2);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-swiper-wrapper swiper-container,
.hero-swiper-wrapper .swiper {
  border-radius: var(--radius-xl);
}

.hero-swiper-wrapper img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: top;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--font-size-xs);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

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

/* --------------------------------------------------------------------------
   8. Client Logos Ticker
   -------------------------------------------------------------------------- */
.clients {
  padding: var(--space-12) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.clients-label {
  text-align: center;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-6);
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
  display: flex;
  gap: var(--space-12);
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-muted);
  transition: color var(--transition-fast);
  flex-shrink: 0;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-white);
}

.ticker-item:hover {
  color: var(--color-primary);
  border-color: rgba(59,130,246,0.3);
}

.ticker-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   9. About Section
   -------------------------------------------------------------------------- */
.about {
  background: var(--color-white);
}

.about-video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
}

.about-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-video-wrapper:hover img {
  transform: scale(1.03);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15,23,42,0.3);
  transition: background var(--transition-base);
}

.about-video-wrapper:hover .play-btn {
  background: rgba(15,23,42,0.4);
}

.play-btn-circle {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform var(--transition-base);
}

.about-video-wrapper:hover .play-btn-circle {
  transform: scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid var(--color-primary);
  margin-left: 4px;
}

.about-content {
  padding-left: var(--space-8);
}

.about-tag {
  display: inline-block;
  color: var(--color-primary);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.about-description {
  font-size: var(--font-size-base);
  color: var(--color-subtle);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.about-description strong {
  color: var(--color-dark);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.about-stat-card {
  padding: var(--space-4);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
}

.about-stat-card:hover {
  border-color: var(--color-primary);
  background: rgba(59,130,246,0.04);
  transform: translateY(-2px);
}

.about-stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.about-stat-label {
  font-size: var(--font-size-xs);
  color: var(--color-subtle);
  font-weight: 500;
}

.about-socials {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--color-subtle);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   10. Services Section
   -------------------------------------------------------------------------- */
.services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.2);
}

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

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon-wrap {
  background: var(--gradient-primary);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}

.service-card:hover .service-icon-wrap svg {
  stroke: white;
}

.service-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-3);
}

.service-desc {
  font-size: var(--font-size-sm);
  color: var(--color-subtle);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Products Section
   -------------------------------------------------------------------------- */
.products {
  background: var(--color-white);
}

.product-swiper {
  overflow: visible !important;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.2);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-card-img-wrap {
  overflow: hidden;
}

.product-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(16,185,129,0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.product-card-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-3);
}

.product-card-desc {
  font-size: var(--font-size-sm);
  color: var(--color-subtle);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-5);
}

/* --------------------------------------------------------------------------
   12. Portfolio CTA Section
   -------------------------------------------------------------------------- */
.portfolio-cta {
  background: var(--color-bg);
}

.portfolio-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.portfolio-cta-image {
  position: relative;
  overflow: hidden;
}

.portfolio-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-cta-card:hover .portfolio-cta-image img {
  transform: scale(1.04);
}

.portfolio-cta-content {
  background: var(--gradient-hero);
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-cta-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59,130,246,0.2) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.portfolio-cta-content .section-label {
  position: relative;
  color: var(--color-accent-light);
  background: rgba(16,185,129,0.15);
}

.portfolio-cta-title {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  position: relative;
}

.portfolio-cta-desc {
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-8);
  font-size: var(--font-size-base);
  position: relative;
}

/* --------------------------------------------------------------------------
   13. Process Section
   -------------------------------------------------------------------------- */
.process {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59,130,246,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.process .section-label {
  color: var(--color-accent-light);
  background: rgba(16,185,129,0.15);
}

.process .section-title {
  color: var(--color-white);
}

.process .section-subtitle {
  color: rgba(255,255,255,0.55);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, rgba(59,130,246,0.3), rgba(16,185,129,0.3));
}

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

.process-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-size: var(--font-size-lg);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  box-shadow: var(--shadow-blue);
  position: relative;
  z-index: 1;
  transition: transform var(--transition-base);
}

.process-step:hover .process-step-num {
  transform: scale(1.15);
}

.process-step-title {
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.process-step-desc {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials {
  background: var(--color-bg);
}

.testimonial-swiper {
  overflow: visible !important;
  padding-bottom: var(--space-8) !important;
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.2);
}

.testimonial-quote-icon {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  color: rgba(59,130,246,0.08);
  font-size: 64px;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-stars span {
  color: #F59E0B;
  font-size: 14px;
}

.testimonial-text {
  font-size: var(--font-size-sm);
  color: var(--color-subtle);
  line-height: 1.8;
  flex: 1;
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.testimonial-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: var(--font-size-base);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-dark);
}

.testimonial-role {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   15. FAQ Section
   -------------------------------------------------------------------------- */
.faq {
  background: var(--color-white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(59,130,246,0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  background: var(--color-white);
  transition: background var(--transition-fast);
  user-select: none;
}

.faq-question:hover {
  background: rgba(59,130,246,0.02);
}

.faq-item.open .faq-question {
  background: rgba(59,130,246,0.03);
}

.faq-question-text {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--color-primary);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}

.faq-item.open .faq-icon svg {
  stroke: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow) cubic-bezier(0, 1, 0, 1);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  transition: max-height var(--transition-slow) cubic-bezier(1, 0, 1, 0);
}

.faq-answer-content {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--color-subtle);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   16. Blog / Articles Section
   -------------------------------------------------------------------------- */
.articles {
  background: var(--color-bg);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.article-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59,130,246,0.15);
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-card-img {
  transform: scale(1.04);
}

.article-card-img-wrap {
  overflow: hidden;
}

.article-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.article-tag {
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(59,130,246,0.08);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.article-date {
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

.article-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-3);
  line-height: 1.4;
  flex: 1;
  transition: color var(--transition-fast);
}

.article-card:hover .article-title {
  color: var(--color-primary);
}

.article-excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-subtle);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.article-card:hover .article-read-more {
  gap: var(--space-3);
}

/* --------------------------------------------------------------------------
   17. CTA Banner Section
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59,130,246,0.2) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
}

.cta-blob-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.08;
  filter: blur(60px);
  top: -100px;
  right: 10%;
}

.cta-blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.08;
  filter: blur(60px);
  bottom: -50px;
  left: 10%;
}

.cta-banner .section-label {
  color: var(--color-accent-light);
  background: rgba(16,185,129,0.15);
  position: relative;
}

.cta-title {
  font-size: clamp(var(--font-size-3xl), 5vw, var(--font-size-5xl));
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto var(--space-10);
  position: relative;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  position: relative;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-dark);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-brand .navbar-logo {
  color: white;
  margin-bottom: var(--space-4);
}

.footer-brand-desc {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary-light);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: var(--space-8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.3);
}

.footer-copyright span {
  color: var(--color-primary-light);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-primary-light);
}

/* --------------------------------------------------------------------------
   19. Swiper Custom Styles
   -------------------------------------------------------------------------- */
.swiper-pagination-bullet {
  background: var(--color-muted) !important;
  opacity: 1 !important;
  width: 8px !important;
  height: 8px !important;
  transition: all var(--transition-base) !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
  width: 24px !important;
  border-radius: var(--radius-full) !important;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--color-primary) !important;
  background: white !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--color-border);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* --------------------------------------------------------------------------
   20. Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: #25D366;
  color: white;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-base);
  animation: whatsappFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37,211,102,0.45);
  color: white;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: white;
}

@keyframes whatsappFloat {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 12px 48px rgba(37,211,102,0.5); }
}

/* --------------------------------------------------------------------------
   21. AOS Custom (Scroll Animations)
   -------------------------------------------------------------------------- */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   22. Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.hidden      { display: none; }
.relative    { position: relative; }
.overflow-hidden { overflow: hidden; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
}

.badge-blue {
  background: rgba(59,130,246,0.1);
  color: var(--color-primary);
}

.badge-green {
  background: rgba(16,185,129,0.1);
  color: var(--color-accent);
}

/* Highlight text */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(59,130,246,0.15);
  border-radius: 2px;
  z-index: -1;
}

/* --------------------------------------------------------------------------
   23. Responsive — Tablet (max 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .portfolio-cta-content {
    padding: var(--space-12) var(--space-8);
  }
}

/* --------------------------------------------------------------------------
   24. Responsive — Mobile (max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .section {
    padding: var(--space-16) 0;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .about-content {
    padding-left: 0;
    padding-top: var(--space-6);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .hero-stats {
    gap: var(--space-6);
    flex-wrap: wrap;
    padding: var(--space-5) var(--space-6);
  }

  .hero-stat-divider {
    display: none;
  }

  .portfolio-cta-card {
    grid-template-columns: 1fr;
  }

  .portfolio-cta-image {
    height: 220px;
  }

  .portfolio-cta-content {
    padding: var(--space-8);
  }

  .portfolio-cta-title {
    font-size: var(--font-size-3xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

  .navbar-menu, .navbar-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: var(--space-3);
    border-radius: 50%;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}
