/* 
========================================================================
   CIRRA SOLUTIONS GLOBAL - CENTRAL DESIGN SYSTEM
   Theme: Simplify. Scale. Succeed.
   Colors: Primary (#0A3D91), Secondary (#18C2D6), Accent (#FF8A00)
========================================================================
*/

/* ---------------------------------------------------------------------
   1. GOOGLE FONTS & SYSTEM VARIABLES
--------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Brand Palette */
  --color-primary: #0A3D91;
  --color-primary-rgb: 10, 61, 145;
  --color-secondary: #18C2D6;
  --color-secondary-rgb: 24, 194, 214;
  --color-accent: #FF8A00;
  --color-accent-rgb: 255, 138, 0;
  
  /* Neutral Palette */
  --color-bg: #F8FAFC;
  --color-card-bg: #FFFFFF;
  --color-text: #111827;
  --color-text-muted: #4B5563;
  --color-text-light: #9CA3AF;
  --color-border: #E5E7EB;
  --color-white: #FFFFFF;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(10, 61, 145, 0.08);
  
  /* Shadow Systems */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(10, 61, 145, 0.15), 0 10px 10px -5px rgba(10, 61, 145, 0.04);
  
  /* Typography Scale */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Spacing */
  --header-height: 80px;
  --container-max-width: 1280px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------------------
   2. CSS RESETS & GENERAL STYLING
--------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary);
}

p {
  color: var(--color-text-muted);
}

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

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

ul, ol {
  list-style: none;
}

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

/* ---------------------------------------------------------------------
   3. LAYOUT UTILITIES
--------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.grid {
  display: grid;
  gap: 32px;
}

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

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

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

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

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

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

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

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

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  background-color: rgba(10, 61, 145, 0.08);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.section-desc {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.125rem;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
--------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  gap: 10px;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px 0 rgba(10, 61, 145, 0.3);
}

.btn-primary:hover {
  background-color: #082d6b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(10, 61, 145, 0.4);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 14px 0 rgba(24, 194, 214, 0.3);
}

.btn-secondary:hover {
  background-color: #129aa9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(24, 194, 214, 0.4);
}

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

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

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

.btn-white:hover {
  background-color: var(--color-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------------------------------------------------------------------
   5. HEADER / NAVIGATION
--------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.4rem;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

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

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 8px 0;
}

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

/* Dropdown styling */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  min-width: 260px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.dropdown-link:last-child {
  margin-bottom: 0;
}

.dropdown-link:hover {
  background-color: rgba(24, 194, 214, 0.08);
}

.dropdown-link svg {
  color: var(--color-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.dropdown-link-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.dropdown-link-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--color-primary);
}

/* ---------------------------------------------------------------------
   6. HERO SECTION
--------------------------------------------------------------------- */
.hero-wrapper {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(24, 194, 214, 0.08) 0%, rgba(10, 61, 145, 0.02) 70%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-tag-badge {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.hero-tag-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

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

.hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-trust-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-trust-bullet svg {
  color: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   7. INTERACTIVE CSS ERP DASHBOARD MOCKUP
--------------------------------------------------------------------- */
.dashboard-mockup {
  background-color: #0b1329;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.3 / 1;
  display: grid;
  grid-template-rows: 40px 1fr;
}

.db-header {
  background-color: #0f1c3f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.db-controls {
  display: flex;
  gap: 6px;
}

.db-control {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.db-control-red { background-color: #ff5f56; }
.db-control-yellow { background-color: #ffbd2e; }
.db-control-green { background-color: #27c93f; }

.db-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 500;
}

.db-body {
  padding: 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
}

.db-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.db-sidebar-item {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}

.db-sidebar-item.active {
  background-color: rgba(24, 194, 214, 0.2);
  color: var(--color-secondary);
}

.db-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.db-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.db-stat-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 14px;
}

.db-stat-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.db-stat-value {
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
}

.db-stat-trend {
  color: #27c93f;
  font-size: 0.75rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.db-charts-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.db-chart-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.db-chart-title {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* CSS Live Chart lines */
.db-chart-container {
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding-top: 10px;
}

.db-bar {
  flex: 1;
  background-color: rgba(24, 194, 214, 0.3);
  border-radius: 4px 4px 0 0;
  height: 30%;
  transition: height 1.5s ease-in-out;
}

.db-bar:nth-child(2) { height: 50%; background-color: var(--color-secondary); }
.db-bar:nth-child(3) { height: 75%; background-color: rgba(10, 61, 145, 0.6); }
.db-bar:nth-child(4) { height: 40%; background-color: rgba(24, 194, 214, 0.5); }
.db-bar:nth-child(5) { height: 90%; background-color: var(--color-secondary); }

.db-donut-chart {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-secondary) 0% 65%,
    var(--color-accent) 65% 85%,
    rgba(255, 255, 255, 0.1) 85% 100%
  );
  margin: 0 auto;
}

.db-donut-inner {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 60px;
  height: 60px;
  background-color: #0b1329;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------------------------------------------------------------------
   8. TRUST BAR (LOGOS CAROUSEL)
--------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
}

.trust-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 24px;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.logo-track {
  display: flex;
  gap: 80px;
  animation: scrollLeft 30s linear infinite;
  width: calc(240px * 10); /* Accommodate duplicating */
}

.logo-slide {
  width: 160px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition-fast);
}

.logo-slide:hover {
  filter: grayscale(0%);
  opacity: 0.9;
}

.logo-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.partner-badge svg {
  color: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   9. STATS / COUNTERS
--------------------------------------------------------------------- */
.stats-section {
  background-color: var(--color-primary);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.80);
}

/* ---------------------------------------------------------------------
   10. SERVICES & NETSUITE FOCUS
--------------------------------------------------------------------- */
.netsuite-specialty-card {
  background: linear-gradient(135deg, #0A3D91 0%, #052150 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.netsuite-specialty-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24, 194, 214, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.netsuite-specialty-title {
  color: var(--color-white);
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.netsuite-specialty-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 32px;
}

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

.netsuite-service-mini {
  display: flex;
  gap: 16px;
}

.mini-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(24, 194, 214, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.mini-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.mini-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.service-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(24, 194, 214, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(10, 61, 145, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link svg {
  transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------------
   11. ERP JOURNEY TIMELINE
--------------------------------------------------------------------- */
.timeline-stepper {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.timeline-stepper::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-border);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 25px;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  z-index: 2;
  transition: var(--transition-slow);
}

.timeline-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex: 1;
}

.step-bubble {
  width: 54px;
  height: 54px;
  background-color: var(--color-white);
  border: 4px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

.timeline-step.active .step-bubble {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  box-shadow: 0 0 15px 0 rgba(24, 194, 214, 0.4);
}

.timeline-step.completed .step-bubble {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.step-label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
}

.timeline-step.active .step-label {
  color: var(--color-primary);
}

.timeline-content-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: none;
}

.timeline-content-card.active {
  display: block;
  animation: fadeUp 0.5s ease-out;
}

.timeline-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.timeline-card-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.timeline-card-desc {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.timeline-bullet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}

.timeline-bullet-list svg {
  color: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   12. INDUSTRY SOLUTIONS
--------------------------------------------------------------------- */
.industry-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  transition: var(--transition-fast);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 61, 145, 0.15);
}

.industry-card:hover::before {
  background-color: var(--color-primary);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(24, 194, 214, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin: 0 auto 20px;
}

.industry-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.industry-desc {
  font-size: 0.85rem;
}

/* ---------------------------------------------------------------------
   13. WHY CHOOSE US & FOUNDER MESSAGE
--------------------------------------------------------------------- */
.choose-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.choose-item {
  display: flex;
  gap: 16px;
}

.choose-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(10, 61, 145, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.choose-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.choose-desc {
  font-size: 0.88rem;
}

.founder-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  margin-top: 80px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
}

.founder-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--color-white);
  width: 100%;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.founder-message h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.founder-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.founder-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}

.founder-signature {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-primary);
}

/* ---------------------------------------------------------------------
   14. CASE STUDIES & SUCCESS SLIDER
--------------------------------------------------------------------- */
.success-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.slider-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.slider-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 10px;
}

.case-study-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.case-study-img {
  position: relative;
}

.case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roi-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
}

.case-study-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-study-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.case-study-client {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.metric-card {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  border-left: 4px solid var(--color-primary);
}

.metric-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.metric-lbl {
  font-size: 0.75rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  cursor: pointer;
}

.slider-dot.active {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ---------------------------------------------------------------------
   15. TESTIMONIALS (Glassmorphic Cards)
--------------------------------------------------------------------- */
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.test-stars {
  color: #ffbd2e;
  margin-bottom: 20px;
}

.test-body {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 30px;
  flex-grow: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.test-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
}

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

/* ---------------------------------------------------------------------
   16. INTEGRATION ECOSYSTEM DIAGRAM
--------------------------------------------------------------------- */
.ecosystem-container {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}

.ecosystem-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Connecting paths */
.eco-path {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 2px;
  stroke-dasharray: 6, 6;
  transition: var(--transition-normal);
}

.eco-path.active {
  stroke: var(--color-secondary);
  stroke-width: 3px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s linear forwards;
}

.eco-node {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-normal);
}

.eco-node:hover, .eco-node.active {
  transform: scale(1.15);
  border-color: var(--color-secondary);
  box-shadow: 0 0 20px rgba(24, 194, 214, 0.4);
}

/* Node layout configurations */
.eco-node-center {
  width: 110px;
  height: 110px;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0 30px rgba(10, 61, 145, 0.3);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.eco-node-center:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(10, 61, 145, 0.5);
}

/* Positions surrounding the center */
.node-crm       { top: 5%;   left: 50%;  transform: translateX(-50%); }
.node-ecommerce { top: 18%;  left: 80%; }
.node-payments  { top: 50%;  left: 88%;  transform: translateY(-50%); }
.node-hrms      { top: 76%;  left: 80%; }
.node-banking   { top: 88%;  left: 50%;  transform: translateX(-50%); }
.node-logistics { top: 76%;  left: 10%; }
.node-bi        { top: 50%;  left: 2%;   transform: translateY(-50%); }
.node-warehouse { top: 18%;  left: 10%; }

.eco-details-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.eco-details-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.eco-details-desc {
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.eco-integration-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
}

.eco-integration-bullets svg {
  color: var(--color-secondary);
}

/* ---------------------------------------------------------------------
   17. BEFORE vs AFTER PERFORMANCE COMPARISON
--------------------------------------------------------------------- */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ba-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.ba-card-before {
  background-color: #FFF5F5;
  border: 1px solid #FEB2B2;
}

.ba-card-after {
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ba-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.ba-card-before .ba-title { color: #C53030; }
.ba-card-after .ba-title { color: #15803D; }

.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.ba-card-before svg { color: #E53E3E; flex-shrink: 0; margin-top: 4px;}
.ba-card-after svg { color: #16A34A; flex-shrink: 0; margin-top: 4px;}

/* ---------------------------------------------------------------------
   18. ENTERPRISE CONSULTATION FORM
--------------------------------------------------------------------- */
.form-container {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.form-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.form-subtitle {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

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

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(10, 61, 145, 0.1);
}

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

.form-error-msg {
  color: #C53030;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}

.form-input.error {
  border-color: #E53E3E;
  background-color: #FFF5F5;
}

.form-input.error + .form-error-msg {
  display: block;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 16px;
  text-align: center;
}

/* ---------------------------------------------------------------------
   19. BLOG GRID & INSIGHTS
--------------------------------------------------------------------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 60px;
}

.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

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

.blog-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.blog-desc {
  font-size: 1rem;
  margin-bottom: 30px;
}

.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

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

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.blog-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-desc {
  font-size: 0.88rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-category-badge {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(24, 194, 214, 0.1);
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

/* ---------------------------------------------------------------------
   20. REVENUE & CONVERSION WIDGETS
--------------------------------------------------------------------- */
/* WhatsApp Float Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-fast);
}

.whatsapp-widget:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Sticky Bottom Consultation CTA Bar (Mobile only) */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  display: none;
  z-index: 998;
  text-align: center;
}

.mobile-sticky-btn {
  width: 100%;
  padding: 12px;
  font-family: var(--font-headings);
  font-weight: 600;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.95rem;
}

/* Exit Intent Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 61, 145, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal-box {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  max-width: 540px;
  width: calc(100% - 32px);
  padding: 40px;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: var(--color-text-light);
  background: none;
  border: none;
}

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

.modal-badge {
  background-color: rgba(255, 138, 0, 0.1);
  color: var(--color-accent);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ---------------------------------------------------------------------
   21. FOOTER
--------------------------------------------------------------------- */
footer {
  background-color: #0b1329;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  margin-bottom: 60px;
}

.footer-col-title {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-address-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.footer-address-item svg {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-newsletter-text {
  font-size: 0.85rem;
  margin-bottom: 16px;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------------------------------------------------------------------
   22. ANIMATIONS & KEYFRAMES
--------------------------------------------------------------------- */
/* Scroll Reveal class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 5)); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(24, 194, 214, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(24, 194, 214, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(24, 194, 214, 0); }
}

.pulse-target {
  animation: pulse 2s infinite;
}

/* ---------------------------------------------------------------------
   23. RESPONSIVE MEDIA QUERIES (MOBILE FIRST)
--------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-title { font-size: 3rem; }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { padding-top: 20px; }
  .stat-item:nth-child(5) { padding-top: 20px; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-subtitle, .hero-buttons, .hero-trust-bullets { justify-content: center; margin-left: auto; margin-right: auto; }
  .dashboard-mockup { max-width: 600px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ecosystem-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.25rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .netsuite-specialty-card { grid-column: span 1; padding: 24px; }
  .netsuite-services-subgrid { grid-template-columns: 1fr; }
  .timeline-stepper { flex-direction: column; gap: 16px; margin-bottom: 30px; }
  .timeline-stepper::before, .timeline-progress { display: none; }
  .step-bubble { margin-bottom: 4px; }
  .timeline-card-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .choose-bullets { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; padding: 24px; text-align: center; }
  .founder-photo { max-width: 200px; margin: 0 auto; }
  .case-study-card { grid-template-columns: 1fr; }
  .case-study-content { padding: 24px; }
  .before-after-grid { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-content { padding: 24px; }
  .form-container { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  
  /* Mobile Navigation Hamburger toggles */
  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-card-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  .nav-item { width: 100%; }
  .nav-dropdown { position: static; transform: none; opacity: 1; visibility: visible; display: none; box-shadow: none; padding-left: 10px; border: none;}
  .nav-item.active .nav-dropdown { display: block; }
  
  /* Mobile Sticky widgets */
  .mobile-sticky-cta { display: block; }
  .whatsapp-widget { bottom: 80px; }
}

@media (max-width: 480px) {
  .section-padding { padding-top: 60px; padding-bottom: 60px; }
  .btn { width: 100%; }
  .hero-buttons { flex-direction: column; }
}
