/* 
   Marketplace & Quick-Commerce Expert Portfolio
   Theme: Minimalist & Clean Light Mode
   Typography: Outfit (Headings) & Inter (Body)
*/

/* Fonts loaded via <link> in HTML for better performance */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --color-primary: #2563eb; /* Marketplace Blue */
  --color-primary-light: #dbeafe;
  --color-secondary: #10b981; /* Q-Commerce Emerald */
  --color-secondary-light: #d1fae5;
  --color-accent: #f59e0b; /* Marketplace Gold (Amazon/Flipkart vibe) */
  --color-accent-light: #fef3c7;
  
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.04), 0 10px 10px -5px rgba(15, 23, 42, 0.02);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  --max-width: 1200px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.logo span {
  color: var(--color-primary);
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
}

.mobile-only {
  display: none !important;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-normal);
}

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

.btn-consultation {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--text-primary);
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-consultation:hover {
  background: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

/* Sections General */
section {
  padding: 8rem 2rem 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* Hero Section */
.hero {
  padding-top: 11rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.hero-badge .pulse::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title span.accent-marketplace {
  color: var(--color-primary);
  background: linear-gradient(120deg, var(--color-primary), #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.accent-qcommerce {
  color: var(--color-secondary);
  background: linear-gradient(120deg, var(--color-secondary), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid var(--text-primary);
  transition: var(--transition-normal);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Partner Badges Row */
.partner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.partner-badges .badge-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-badges .badge-item {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  cursor: default;
}

.partner-badges .badge-item:hover {
  background: var(--bg-secondary);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero Visual Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-canvas {
  width: 100%;
  aspect-ratio: 1;
  max-width: 450px;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.canvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-tertiary);
  padding-bottom: 1rem;
}

.canvas-title {
  font-size: 1rem;
  font-weight: 600;
}

.canvas-badge {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.canvas-metric {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
  color: var(--color-primary);
}

.canvas-trend {
  color: var(--color-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

/* Simple Mock Graph */
.mock-graph {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  padding-top: 1rem;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.mock-graph::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--border-color);
}

.mock-graph::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--border-color);
}

.graph-bar {
  width: 14%;
  background: linear-gradient(180deg, var(--color-primary-light), var(--bg-primary));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  height: 20%;
  transition: height 1s ease-out;
  position: relative;
  border-top: 2px solid var(--color-primary);
}

.graph-bar.active {
  background: linear-gradient(180deg, var(--color-secondary-light), var(--bg-primary));
  border-top: 2px solid var(--color-secondary);
}

/* Float items in hero */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 6s ease-in-out infinite;
}

.fc-1 {
  top: 10%;
  left: -15%;
  animation-delay: 0s;
}

.fc-2 {
  bottom: 15%;
  right: -10%;
  animation-delay: 2s;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.fc-1 .fc-icon {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.fc-2 .fc-icon {
  background: var(--color-secondary-light);
  color: var(--color-secondary);
}

.fc-text h5 {
  font-size: 0.875rem;
  font-weight: 700;
}

.fc-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

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

/* Platforms Scroller (Social Proof) */
.platforms-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
  padding: 2.5rem 0;
  overflow: hidden;
}

.platforms-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.platforms-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
}

.platforms-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  gap: 3rem;
}

.platforms-wrapper::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.platform-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.platform-logo:hover {
  color: var(--text-primary);
}

.platform-logo svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Client Brands Bar */
.clients-bar {
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 2.5rem 0;
  overflow: hidden;
}

.clients-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.clients-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  white-space: nowrap;
}

.clients-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  gap: 3rem;
}

.clients-wrapper::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.client-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
  white-space: nowrap;
  opacity: 0.8;
}

.client-logo:hover {
  color: var(--text-primary);
  opacity: 1;
  transform: translateY(-2px);
}

/* Services / Expertise */
.expertise {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  max-width: none;
  width: 100%;
}

.expertise-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.expertise-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text-muted);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.exp-performance .card-icon-wrapper {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.exp-qcommerce .card-icon-wrapper {
  background: var(--color-secondary-light);
  color: var(--color-secondary);
}

.exp-branding .card-icon-wrapper {
  background: #ede9fe;
  color: #8b5cf6;
}

.exp-tech .card-icon-wrapper {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.expertise-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.expertise-card p {
  color: var(--text-secondary);
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.expertise-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.expertise-card li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.expertise-card li::before {
  content: "✓";
  color: var(--color-secondary);
  font-weight: bold;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.card-link:hover {
  gap: 0.5rem;
  color: var(--color-primary);
}



/* Case Studies */
.case-studies {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  max-width: none;
  width: 100%;
}

.cases-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.case-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text-muted);
}

.case-hero-stat {
  padding: 3rem;
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
  color: var(--bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.case-card.alt .case-hero-stat {
  background: linear-gradient(135deg, var(--color-secondary), #047857);
}

.case-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.case-stat-lbl {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.case-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.case-card.alt .case-tag {
  color: var(--color-secondary);
}

.case-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.case-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.case-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.case-metric-box span {
  display: block;
}

.case-metric-box .val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.case-metric-box .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.case-testimonial {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--border-color);
  text-align: left;
}

.case-testimonial .quote {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.case-testimonial .author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* How We Work / Process Section */
.process-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  max-width: none;
  width: 100%;
}

.process-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.process-step {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--text-muted);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary-light);
  margin-bottom: 1rem;
  transition: var(--transition-normal);
}

.process-step:hover .step-num {
  color: var(--color-primary);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-channels {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.channel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.channel-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.channel-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.channel-details p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-form-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-premium);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition-normal);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  justify-content: center;
}

/* Footer */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.social-link:hover {
  color: var(--text-primary);
}

/* Floating Meeting Scheduler Component */
.meeting-scheduler-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.scheduler-trigger {
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--color-primary), #1d4ed8);
  color: var(--bg-primary);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4), 0 8px 10px -6px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  transition: all var(--transition-normal);
  position: relative;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
  animation: scheduler-pulse 2s infinite;
}

.scheduler-trigger:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.5), 0 10px 15px -5px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.scheduler-icon {
  flex-shrink: 0;
  animation: scheduler-shake 8s infinite ease-in-out;
}

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

/* Glow Pulse Animation */
@keyframes scheduler-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7), 0 10px 25px -5px rgba(37, 99, 235, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0), 0 10px 25px -5px rgba(37, 99, 235, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0), 0 10px 25px -5px rgba(37, 99, 235, 0.4);
  }
}

/* Subtle icon shaking to draw user eye */
@keyframes scheduler-shake {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(15deg); }
  94% { transform: rotate(-15deg); }
  96% { transform: rotate(10deg); }
  98% { transform: rotate(-10deg); }
}

/* Proactive Scheduler Callout Bubble */
.scheduler-bubble {
  position: absolute;
  bottom: 65px;
  right: 5px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  z-index: 2000;
}

.scheduler-bubble.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scheduler-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 10px;
  height: 10px;
  background: var(--bg-primary);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transform: rotate(45deg);
}

.bubble-text {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
}

.bubble-close {
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.15rem;
  line-height: 1;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-close:hover {
  color: var(--text-primary);
}

/* Audit Request Confirmation Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: var(--color-secondary-light);
  color: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.modal-box h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.modal-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.meet-link-box {
  background: var(--color-secondary-light);
  border: 1px solid var(--color-secondary);
  color: #065f46;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.meet-link-box svg {
  flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  max-width: none;
  width: 100%;
}

.pricing-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.gst-toggle-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gst-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.gst-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}

.gst-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gst-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--border-color);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

.gst-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--bg-primary);
  border-radius: 50%;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.gst-switch input:checked + .gst-slider {
  background: var(--color-primary);
}

.gst-switch input:checked + .gst-slider::before {
  transform: translateX(20px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-slow);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text-muted);
}

.pricing-featured {
  border-color: var(--color-primary);
  background: var(--bg-primary);
  box-shadow: var(--shadow-premium);
}

.pricing-featured:hover {
  border-color: var(--color-primary);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.pricing-platform-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.pricing-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.pricing-cta {
  text-align: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.pricing-note {
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.reveal.active .expertise-card,
.reveal.active .process-step,
.reveal.active .case-card {
  opacity: 0;
  transform: translateY(20px);
  animation: revealChild 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal.active .expertise-card:nth-child(1),
.reveal.active .process-step:nth-child(1),
.reveal.active .case-card:nth-child(1) { animation-delay: 0.1s; }

.reveal.active .expertise-card:nth-child(2),
.reveal.active .process-step:nth-child(2),
.reveal.active .case-card:nth-child(2) { animation-delay: 0.2s; }

.reveal.active .expertise-card:nth-child(3),
.reveal.active .process-step:nth-child(3) { animation-delay: 0.3s; }

.reveal.active .expertise-card:nth-child(4),
.reveal.active .process-step:nth-child(4) { animation-delay: 0.4s; }

.reveal.active .process-step:nth-child(5) { animation-delay: 0.5s; }

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

/* WhatsApp FAB green theme */
.whatsapp-trigger {
  background: linear-gradient(135deg, #25D366, #128C7E) !important;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4), 0 8px 10px -6px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-trigger:hover {
  background: linear-gradient(135deg, #128C7E, #075E54) !important;
  box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.5), 0 10px 15px -5px rgba(37, 211, 102, 0.5) !important;
}

@keyframes scheduler-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 10px 25px -5px rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 10px 25px -5px rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 25px -5px rgba(37, 211, 102, 0.4);
  }
}

/* Footer enhancement */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE — Tablet (≤ 1024px)
   ======================================== */
@media (max-width: 1024px) {
  section {
    padding: 5rem 2rem 4rem 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 8rem;
    text-align: center;
    min-height: auto;
  }

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

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

  .hero-description {
    max-width: 600px;
  }

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

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

  .partner-badges {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

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

  .expertise-card {
    padding: 2rem 1.5rem;
  }

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

  .process-step:last-child {
    grid-column: span 2;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* ========================================
   RESPONSIVE — Mobile (≤ 768px)
   ======================================== */
@media (max-width: 768px) {
  /* — Nav — */
  .mobile-only {
    display: block !important;
  }

  .btn-consultation {
    display: none !important;
  }

  .nav-container {
    padding: 1rem 1.25rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 1000;
  }

  .nav-links.active a {
    display: block;
    width: 100%;
    font-size: 1.05rem;
    padding: 0.5rem 0;
  }

  .menu-toggle {
    display: block;
  }

  /* — Sections general — */
  section {
    padding: 4rem 1.25rem 3rem 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* — Hero — */
  .hero {
    padding-top: 6rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .partner-badges {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }

  .partner-badges .badge-tag {
    width: 100%;
    text-align: center;
    margin-bottom: 0.25rem;
  }

  .partner-badges .badge-item {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  /* — Hero Visual — */
  .hero-visual {
    max-width: 340px;
    margin: 0 auto;
  }

  .visual-canvas {
    padding: 1.25rem;
    max-width: 100%;
  }

  .canvas-metric {
    font-size: 2rem;
  }

  .mock-graph {
    height: 80px;
  }

  .floating-card {
    padding: 0.625rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
  }

  .fc-1 {
    left: -5px !important;
    top: 5% !important;
  }

  .fc-2 {
    right: -5px !important;
    bottom: 10% !important;
  }

  .fc-icon {
    width: 28px;
    height: 28px;
  }

  .fc-icon svg {
    width: 14px;
    height: 14px;
  }

  .fc-text h5 {
    font-size: 0.75rem;
  }

  .fc-text p {
    font-size: 0.65rem;
  }

  /* — Platforms / Clients Bars — */
  .platforms-bar,
  .clients-bar {
    padding: 1.5rem 0;
  }

  .platforms-container,
  .clients-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0 1.25rem;
  }

  .platforms-wrapper,
  .clients-wrapper {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .platform-logo {
    font-size: 0.95rem;
  }

  .platform-logo svg {
    width: 18px;
    height: 18px;
  }

  .client-logo {
    font-size: 1rem;
  }

  /* — Services — */
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .expertise-card {
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-md);
  }

  .expertise-card h3 {
    font-size: 1.25rem;
  }

  .card-icon-wrapper {
    width: 44px;
    height: 44px;
    margin-bottom: 1.25rem;
  }

  /* — Case Studies — */
  .case-hero-stat {
    padding: 2rem 1.5rem;
  }

  .case-stat-num {
    font-size: 3rem;
  }

  .case-body {
    padding: 1.5rem;
  }

  .case-body h3 {
    font-size: 1.25rem;
  }

  .case-metrics-row {
    gap: 1rem;
  }

  /* — Process — */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step:last-child {
    grid-column: span 1;
  }

  .process-step {
    padding: 1.75rem 1.5rem;
  }

  .step-num {
    font-size: 2rem;
  }

  /* — Pricing — */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-badge {
    font-size: 0.7rem;
  }

  /* — Contact — */
  .contact-section {
    gap: 2rem;
  }

  .contact-form-box {
    padding: 1.5rem;
    border-radius: var(--radius-md);
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem 1rem;
    font-size: 1rem; /* Prevents iOS zoom on focus */
  }

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

  .submit-btn {
    padding: 1rem;
    font-size: 1rem;
  }

  /* — Footer — */
  .footer-container {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  footer {
    padding: 2.5rem 1.25rem;
  }

  /* — Meeting Scheduler FAB — */
  .meeting-scheduler-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .scheduler-trigger {
    height: 44px;
    padding: 0 1rem;
    font-size: 0.85rem;
  }

  .scheduler-bubble {
    right: 0;
    width: calc(100vw - 2rem);
    max-width: 300px;
    white-space: normal;
    bottom: 55px;
  }

  /* — Modal — */
  .modal-box {
    padding: 2rem 1.5rem;
    width: 92%;
  }

  .modal-box h3 {
    font-size: 1.5rem;
  }

  .meet-link-box {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

/* ========================================
   RESPONSIVE — Small Phone (≤ 480px)
   ======================================== */
@media (max-width: 480px) {
  section {
    padding: 3rem 1rem 2.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 5rem;
  }

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

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  /* Hide hero visual on very small screens to save space */
  .hero-visual {
    display: none;
  }

  .partner-badges .badge-item {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }

  .platforms-wrapper,
  .clients-wrapper {
    gap: 0.75rem;
  }

  .platform-logo {
    font-size: 0.8rem;
    gap: 0.2rem;
  }

  .platform-logo svg {
    width: 14px;
    height: 14px;
  }

  .client-logo {
    font-size: 0.85rem;
  }

  .expertise-card {
    padding: 1.5rem 1.25rem;
  }

  .expertise-card h3 {
    font-size: 1.1rem;
  }

  .expertise-card p {
    font-size: 0.875rem;
  }

  .case-stat-num {
    font-size: 2.5rem;
  }

  .case-body {
    padding: 1.25rem;
  }

  .case-metrics-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .case-testimonial .quote {
    font-size: 0.8rem;
  }

  .process-step {
    padding: 1.5rem 1.25rem;
  }

  .step-num {
    font-size: 1.75rem;
  }

  /* — Pricing — */
  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  .pricing-card-header h3 {
    font-size: 1.25rem;
  }

  .contact-form-box {
    padding: 1.25rem;
  }

  .contact-channels {
    gap: 1.25rem;
  }

  .channel-icon {
    width: 36px;
    height: 36px;
  }

  /* Scheduler — icon only on small phones */
  .scheduler-label {
    display: none;
  }

  .scheduler-trigger {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .modal-box {
    padding: 1.5rem 1.25rem;
    width: 95%;
  }

  .modal-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .modal-box h3 {
    font-size: 1.25rem;
  }
}
