/* ============================================================
   GrowDigitly — Premium Design System (main.css)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --primary: #ee4619;
  --primary-dark: #ca3913;
  --primary-light: #fef1ed;
  --accent: #171717;
  --accent-dark: #000000;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;
  --success: #10b981;

  /* Neutrals */
  --bg: #ffffff;
  --bg2: #f9f9f9;
  --bg3: #f2f2f2;
  --surface: #ffffff;
  --surface2: #fdfdfd;
  --border: rgba(23, 23, 23, 0.1);
  --border-light: rgba(23, 23, 23, 0.05);

  /* Text */
  --text: #171717;
  --text-muted: #666666;
  --text-light: #333333;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #ee4619 0%, #ff8c6b 100%);
  --grad-accent: linear-gradient(135deg, #171717 0%, #333333 100%);
  --grad-hero: linear-gradient(135deg, #f9f9f9 0%, #ffffff 50%, #f9f9f9 100%);
  --grad-card: linear-gradient(145deg, rgba(238, 70, 25, 0.04) 0%, rgba(23, 23, 23, 0.02) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(238, 70, 25, 0.15);
  --shadow-accent-glow: 0 0 40px rgba(23, 23, 23, 0.1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-full);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

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

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

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

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

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

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-lg {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.col-2 {
  flex: 0 0 calc(50% - 15px);
}

.col-3 {
  flex: 0 0 calc(33.333% - 20px);
}

.col-4 {
  flex: 0 0 calc(25% - 22.5px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--grad-primary);
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(238, 70, 25, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(238, 70, 25, 0.6);
}

.btn-accent {
  background: var(--grad-accent);
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(23, 23, 23, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(23, 23, 23, 0.5);
}

.btn-outline {
  border: 2px solid var(--border-light);
  color: var(--text);
  background: transparent;
  backdrop-filter: blur(10px);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-danger {
  background: var(--danger);
  color: #ffffff;
}

.btn-success {
  background: var(--success);
  color: #ffffff;
}

/* --- Cards --- */
.card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card-shine {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 70, 25, 0.5), transparent);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 70, 25, 0.5), transparent);
}

.card:hover {
  border-color: rgba(238, 70, 25, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

/* --- Glass Card --- */
.glass {
  background: rgba(23, 23, 23, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(238, 70, 25, 0.15);
  color: var(--primary-dark);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.badge-info {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.badge-secondary {
  background: rgba(23, 23, 23, 0.08);
  color: var(--text-muted);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(23, 23, 23, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(238, 70, 25, 0.06);
  box-shadow: 0 0 0 3px rgba(238, 70, 25, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

select.form-control {
  appearance: none;
  cursor: pointer;
}

/* --- Alert --- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border-left: 4px solid;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--success);
  color: #34d399;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border-color: var(--danger);
  color: #f87171;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--warning);
  color: #fbbf24;
}

.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--info);
  color: #60a5fa;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

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

.navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: var(--transition);
}

.brand-logo-img {
  height: 120px;
  max-width: 280px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: all 0.25s ease;
}

.navbar.scrolled .brand-logo-img {
  height: 64px;
}

.navbar-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.nav-drawer-logo .brand-logo-img {
  height: 56px;
}

.footer-logo-img {
  height: 76px;
  max-width: 340px;
  margin-bottom: 16px;
}

/* Hide mobile-only drawer header on desktop */
.nav-drawer-header {
  display: none;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(23, 23, 23, 0.06);
}

.nav-links a.btn-primary {
  color: #ffffff;
  padding: 10px 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  z-index: 1200;
}

.nav-toggle:hover {
  border-color: var(--primary);
  background: rgba(238, 70, 25, 0.06);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

/* Animated X state */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(0);
}

.nav-toggle.open span:nth-child(2) {
  transform: scaleX(0);
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(0);
}

.nav-toggle.open {
  border-color: var(--primary);
  background: rgba(238, 70, 25, 0.1);
}

/* --- Mobile Overlay Backdrop --- */
#navOverlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 995;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#navOverlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* --- Dropdown --- */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-light);
}

.dropdown-menu a:hover {
  background: rgba(238, 70, 25, 0.1);
  color: var(--primary);
}

.dropdown-menu a i {
  font-size: 1.1rem;
}

/* --- Mega Menu --- */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: min(1100px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  z-index: 1100;
}

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

.mega-menu-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
}

.mega-menu-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  transition: var(--transition);
}

.mega-menu-col a i {
  color: var(--primary);
  font-size: 1.1rem;
}

.mega-menu-col a:hover {
  background: rgba(238, 70, 25, 0.1);
  color: var(--primary);
}

/* @media(max-width:1024px): tablet — keep desktop hover mega-menu but smaller */
@media (min-width: 769px) and (max-width: 1024px) {
  .mega-menu {
    min-width: min(680px, calc(100vw - 48px));
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: #ff8c6b;
  top: 30%;
  left: 40%;
  animation-delay: -2s;
}

@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);
  }
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(238, 70, 25, 0.15);
  border: 1px solid rgba(238, 70, 25, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title #heroTyping {
  display: block;
  min-height: 1.3em;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 1s 0.2s ease both;
}

.hero-visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 16px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-img-main {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  transition: transform 0.6s ease;
}

.hero-visual-card:hover .hero-img-main {
  transform: scale(1.03);
}

.hero-image-overlay-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(18, 18, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-chart-bar {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  margin-bottom: 16px;
}

.bar {
  flex: 1;
  background: var(--grad-primary);
  border-radius: 6px 6px 0 0;
  opacity: 0.85;
  transform-origin: bottom;
  animation: growBar 1s ease forwards;
}

@keyframes growBar {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.hero-floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-floating-card.card-1 {
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: -20px;
  right: -20px;
  animation-delay: -2s;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Team Section Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
  justify-content: center;
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(238, 70, 25, 0.3);
  box-shadow: var(--shadow-glow);
}

.team-img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background: var(--bg2);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

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

.team-info {
  padding: 24px 20px;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.88rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: left;
  font-size: 0.82rem;
}

.team-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

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

.team-contact-link i {
  color: var(--primary);
  font-size: 1rem;
}

/* Founder Spotlight Section */
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.founder-image-col {
  text-align: center;
}

.founder-photo-wrap {
  width: 100%;
  max-width: 300px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--border);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  position: relative;
}

.founder-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.skill-pill {
  background: rgba(238, 70, 25, 0.08);
  border: 1px solid rgba(238, 70, 25, 0.2);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.skill-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.exp-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.exp-item {
  position: relative;
  padding-left: 28px;
  border-left: 2px solid rgba(238, 70, 25, 0.3);
}

.exp-item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.exp-period {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.exp-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.exp-company {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.exp-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  width: 100%;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(238, 70, 25, 0.1);
  border: 1px solid rgba(238, 70, 25, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0;
  line-height: 1.75;
}

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

/* ============================================================
   SERVICES
   ============================================================ */
.section-services {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(249, 249, 249, 0.6) 45%, var(--bg) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Homepage featured services — always even 2-column grid (no 3+1 orphan) */
.services-grid--home {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .services-grid--home {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* Full services listing page — responsive auto grid */
@media (min-width: 640px) {
  .services-grid:not(.services-grid--home) {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .services-grid:not(.services-grid--home) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.service-card:hover {
  border-color: rgba(238, 70, 25, 0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(238, 70, 25, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 22px;
  transition: var(--transition);
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background: var(--grad-primary);
  color: #ffffff;
  transform: scale(1.05);
}

.service-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-link {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.service-card:hover .service-link {
  gap: 10px;
}

/* ============================================================
   WHY US / FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-item:hover {
  border-color: rgba(238, 70, 25, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(238, 70, 25, 0.3);
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   STATS / COUNTER
   ============================================================ */
.stats-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  padding: 40px 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--bg2);
}

.blog-card:hover {
  border-color: rgba(238, 70, 25, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--bg3);
}

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

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

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

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

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

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-read-more {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(238, 70, 25, 0.2);
  box-shadow: var(--shadow-glow);
}

.stars {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238, 70, 25, 0.15) 0%, rgba(23, 23, 23, 0.08) 100%);
}

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

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 40px;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 260px;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(238, 70, 25, 0.1);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--text);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

/* ============================================================
   CHATBOT WIDGET — Premium Redesign
   ============================================================ */

/* --- Floating toggle button --- */
.chatbot-widget-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  box-shadow: 0 6px 32px rgba(238, 70, 25, 0.55);
  z-index: 960;
  cursor: pointer;
  transition: var(--transition);
  animation: botPulse 3s ease infinite;
}

@keyframes botPulse {

  0%,
  100% {
    box-shadow: 0 6px 32px rgba(238, 70, 25, 0.55);
  }

  50% {
    box-shadow: 0 8px 48px rgba(238, 70, 25, 0.85), 0 0 0 8px rgba(238, 70, 25, 0.12);
  }
}

.chatbot-widget-btn:hover {
  transform: scale(1.12) rotate(-5deg);
}

.chatbot-widget-btn.is-open {
  animation: none;
  transform: rotate(90deg);
}

/* Unread badge */
.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: #10b981;
  border-radius: 50%;
  border: 2px solid #fff;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.chatbot-badge.has-unread {
  display: flex;
}

.chatbot-widget-btn.is-open .chatbot-badge {
  display: none !important;
}

@keyframes badgePop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* --- Chat window --- */
.chatbot-window {
  position: fixed;
  bottom: 108px;
  right: 28px;
  width: 380px;
  height: 560px;
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 24px;
  overflow: hidden;
  z-index: 950;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 20px rgba(238, 70, 25, 0.15);
  display: none;
  flex-direction: column;
  transform-origin: bottom right;
}

.chatbot-window.open {
  display: flex;
  animation: chatOpen 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes chatOpen {
  from {
    opacity: 0;
    transform: scale(0.7) translateY(30px);
  }

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

/* --- Header --- */
.chatbot-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, #ee4619 0%, #ff6b42 60%, #ff8c6b 100%);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.chatbot-header::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -40px;
  right: -20px;
}

.chatbot-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
}

/* Online indicator */
.chatbot-avatar::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.chatbot-header-info {
  flex: 1;
  color: #fff;
}

.chatbot-header-info .name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.chatbot-header-info .status {
  font-size: 0.72rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.chatbot-header-info .status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: onlinePulse 2s ease infinite;
}

@keyframes onlinePulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.chatbot-header-actions {
  display: flex;
  gap: 6px;
}

.chatbot-header-btn {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.chatbot-header-btn:hover {
  background: rgba(255, 255, 255, 0.32);
}

/* --- Message area --- */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f9fb;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(238, 70, 25, 0.2);
  border-radius: 99px;
}

/* --- Messages --- */
.chat-msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.55;
  animation: msgSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes msgSlide {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }

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

.chat-msg.bot {
  background: #ffffff;
  border: 1px solid rgba(23, 23, 23, 0.08);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #171717;
}

.chat-msg.user {
  background: linear-gradient(135deg, #ee4619, #ff6b42);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 16px rgba(238, 70, 25, 0.3);
}

.chat-msg a {
  color: inherit;
  text-decoration: underline;
}

/* Timestamp beneath messages */
.chat-time {
  font-size: 0.68rem;
  color: #aaa;
  margin-top: 2px;
  padding: 0 4px;
  align-self: flex-start;
}

.chat-time.user-time {
  align-self: flex-end;
}

/* --- Quick reply chips --- */
.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
  align-self: flex-start;
  max-width: 100%;
  animation: msgSlide 0.35s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.chip {
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid rgba(238, 70, 25, 0.35);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ee4619;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.chip:hover {
  background: #ee4619;
  color: #fff;
  border-color: #ee4619;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 70, 25, 0.3);
}

/* --- Input area --- */
.chatbot-input-area {
  padding: 12px 14px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  background: #f3f4f6;
  border: 1.5px solid transparent;
  border-radius: 99px;
  padding: 10px 18px;
  color: #171717;
  font-size: 0.88rem;
  transition: all 0.2s;
  outline: none;
  font-family: inherit;
}

.chatbot-input:focus {
  border-color: rgba(238, 70, 25, 0.4);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(238, 70, 25, 0.12);
}

.chatbot-input::placeholder {
  color: #aaa;
}

.chatbot-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ee4619, #ff6b42);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(238, 70, 25, 0.4);
}

.chatbot-send:hover {
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 6px 20px rgba(238, 70, 25, 0.6);
}

/* --- Chat date divider --- */
.chat-divider {
  text-align: center;
  font-size: 0.7rem;
  color: #aaa;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 6px 0;
  position: relative;
}

.chat-divider::before,
.chat-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: rgba(23, 23, 23, 0.1);
}

.chat-divider::before {
  left: 0;
}

.chat-divider::after {
  right: 0;
}

/* WA Float */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #ffffff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   PAGE-LEVEL: PAGE HEADERS (About, Blog, etc.)
   ============================================================ */
.page-header {
  padding: 140px 0 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.04;
  top: -200px;
  right: -200px;
  filter: blur(60px);
}

/* SERVICE DETAIL HERO */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero-bg-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.04;
  top: -200px;
  right: -200px;
  filter: blur(60px);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i {
  font-size: 0.7rem;
}

/* ============================================================
   BLOG DETAIL PAGE
   ============================================================ */
.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

.blog-detail-content {
  font-family: var(--font-sans);
}

.blog-detail-content h2,
.blog-detail-content h3 {
  margin: 32px 0 16px;
}

.blog-detail-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.blog-detail-content ul,
.blog-detail-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.blog-detail-content li {
  margin-bottom: 8px;
}

.blog-detail-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  background: rgba(238, 70, 25, 0.05);
  margin: 24px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.sidebar-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   TABLE
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.04);
  font-size: 0.9rem;
  color: var(--text-light);
  vertical-align: middle;
}

.data-table tr:hover td {
  background: rgba(23, 23, 23, 0.02);
}

/* ============================================================
   CONTACT / FORMS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(238, 70, 25, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: var(--text);
}

/* ============================================================
   ANIMATIONS — keyframes only (reveal classes in animations.css)
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.page-link:hover,
.page-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .mega-menu {
    min-width: min(900px, calc(100vw - 48px));
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

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

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

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

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

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

  .section-sm {
    padding: 40px 0;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar.scrolled {
    padding: 6px 0;
  }

  .navbar .brand-logo-img {
    height: 64px;
    max-width: 270px;
  }

  .nav-toggle {
    display: flex;
  }

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

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* ---- Mobile slide-in drawer ---- */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    width: min(340px, 86vw);
    background: #ffffff !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 86px 0 24px;
    z-index: 1050;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.22);
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  /* Drawer Header */
  .nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 86px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    z-index: 10;
  }

  .nav-drawer-logo .brand-logo-img {
    height: 58px;
    max-width: 240px;
  }

  .nav-drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(23, 23, 23, 0.06);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .nav-drawer-close:hover {
    background: rgba(238, 70, 25, 0.12);
    color: var(--primary);
    transform: scale(1.05);
  }

  /* Nav link rows */
  .nav-links>a {
    display: flex;
    align-items: center;
    padding: 15px 22px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid rgba(23, 23, 23, 0.06);
    background: transparent;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
  }

  .nav-links>a:hover,
  .nav-links>a.active {
    background: rgba(238, 70, 25, 0.07);
    color: var(--primary);
    padding-left: 28px;
  }

  /* CTA buttons in drawer */
  .nav-links>a.btn-primary {
    margin: 12px 20px 4px;
    border-radius: var(--radius-full);
    justify-content: center;
    padding: 13px 24px;
    color: #ffffff;
    border-bottom: none;
    background: var(--grad-primary);
    box-shadow: 0 4px 20px rgba(238, 70, 25, 0.35);
    font-weight: 600;
  }

  .nav-links>a.btn-primary:hover {
    padding-left: 24px;
  }

  .nav-links>a.btn-outline {
    margin: 0 20px 0;
    border-radius: var(--radius-full);
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid rgba(23, 23, 23, 0.12);
    border-bottom: none;
    font-weight: 600;
  }

  .nav-links>a.btn-outline:hover {
    padding-left: 24px;
  }

  /* ---- Services accordion in mobile drawer ---- */
  .nav-dropdown {
    display: flex !important;
    flex-direction: column;
    border-bottom: 1px solid rgba(23, 23, 23, 0.06);
    position: static !important;
  }

  .nav-dropdown>a {
    padding: 15px 22px !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: var(--text) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    transition: background 0.2s, color 0.2s !important;
    width: 100%;
  }

  .nav-dropdown>a:hover,
  .nav-dropdown.active>a {
    background: rgba(238, 70, 25, 0.07) !important;
    color: var(--primary) !important;
  }

  .nav-dropdown>a .ri-arrow-down-s-line {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-dropdown.active>a .ri-arrow-down-s-line {
    transform: rotate(-180deg);
    color: var(--primary);
  }

  /* ---- Mega menu accordion panel ---- */
  .mega-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    left: auto !important;
    top: auto !important;
    min-width: 0 !important;
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease !important;
    background: var(--bg2) !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .nav-dropdown:hover .mega-menu {
    max-height: 0 !important;
    padding: 0 !important;
  }

  .nav-dropdown.active .mega-menu {
    max-height: 1400px !important;
    padding: 6px 0 10px !important;
  }

  .mega-menu-col {
    padding: 0 20px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.05);
  }

  .mega-menu-col:last-child {
    border-bottom: none;
  }

  .mega-menu-col-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 10px 0 4px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(23, 23, 23, 0.07);
  }

  .mega-menu-col a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 9px 4px !important;
    font-size: 0.85rem !important;
    border-bottom: none !important;
    border-radius: var(--radius-sm) !important;
    color: var(--text-light) !important;
    background: transparent !important;
    transition: background 0.2s, color 0.2s, padding-left 0.2s !important;
    width: 100%;
  }

  .mega-menu-col a:hover {
    background: rgba(238, 70, 25, 0.08) !important;
    color: var(--primary) !important;
    padding-left: 8px !important;
  }

  .mega-menu-col a i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
  }

  /* Layout fixes */
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .col-2,
  .col-3,
  .col-4 {
    flex: 0 0 100%;
  }

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

  /* Card */
  .card {
    padding: 24px;
  }

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

  /* Hero spacing for scroll indicator */
  .hero {
    padding-bottom: 70px;
  }

  /* Page headers */
  .page-header {
    padding: 110px 0 60px;
  }

  .page-hero {
    padding: 110px 0 60px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 40px;
  }

  .section-description {
    font-size: 1rem;
  }
}

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

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

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

  .hero-stat-number {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .stat-item {
    padding: 28px 12px;
  }

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

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

  .hero-label {
    font-size: 0.65rem;
    padding: 6px 12px;
  }

  .hero-title #heroTyping {
    min-height: 2.6em;
  }

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

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

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

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

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

  .footer-grid {
    gap: 32px;
  }

  .page-header {
    padding: 100px 0 50px;
  }

  .page-hero {
    padding: 100px 0 50px;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* --- FAQ Accordion Section (SEO Optimized) --- */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 22px 28px;
}