/* ============================================
   GULLA NARESH — Digital Marketing Consultant
   Theme: Light Orange + Light Blue + Syntec
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ===== LIGHT ORANGE PALETTE ===== */
  --orange-50: #FFF8F0;
  --orange-100: #FFEAD6;
  --orange-200: #FFD4B0;
  --orange-300: #FFB088;
  --orange-400: #FF8C42;
  --orange-500: #FA7A35;
  --orange-600: #E8652A;
  --orange-700: #C54E1E;

  /* ===== LIGHT BLUE PALETTE ===== */
  --blue-50: #EFF6FF;
  --blue-100: #DBE8FF;
  --blue-200: #B3D4FF;
  --blue-300: #7CB4FF;
  --blue-400: #4A9EFF;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;

  /* ===== SYNTEC (Tech Accent) ===== */
  --syntec-50: #F5F3FF;
  --syntec-100: #EDE9FE;
  --syntec-200: #DDD6FE;
  --syntec-300: #C4B5FD;
  --syntec-400: #A78BFA;
  --syntec-500: #8B5CF6;
  --syntec-600: #7C3AED;
  --syntec-700: #6D28D9;

  /* ===== NEUTRALS ===== */
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-50: #F1F3F5;
  --gray-100: #E2E6EA;
  --gray-200: #CED4DA;
  --gray-300: #9CA3AF;
  --gray-400: #6B7280;
  --gray-500: #4B5563;
  --gray-600: #374151;
  --gray-700: #1E293B;
  --gray-800: #0F172A;
  --gray-900: #0B0F1A;

  /* ===== GRADIENTS ===== */
  --gradient-primary: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
  --gradient-accent: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
  --gradient-syntec: linear-gradient(135deg, var(--syntec-600) 0%, var(--blue-600) 60%, var(--orange-500) 100%);
  --gradient-hero: linear-gradient(160deg, #F5F3FF 0%, #EFF6FF 35%, #FFF8F0 65%, #FDF2F8 100%);
  --gradient-warm: linear-gradient(135deg, var(--orange-100) 0%, var(--orange-50) 100%);
  --gradient-cool: linear-gradient(135deg, var(--blue-50) 0%, var(--syntec-50) 100%);
  --gradient-mesh: linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(59,130,246,0.04) 50%, rgba(255,138,66,0.03) 100%);
  --gradient-card: linear-gradient(135deg, var(--orange-50), var(--blue-50));
  --gradient-glow: linear-gradient(135deg, rgba(255, 138, 66, 0.12), rgba(59, 130, 246, 0.08));

  /* ===== SHADOWS ===== */
  --shadow-xs: 0 1px 2px rgba(124, 58, 237, 0.04);
  --shadow-sm: 0 1px 3px rgba(124, 58, 237, 0.06), 0 1px 2px rgba(124, 58, 237, 0.04);
  --shadow-md: 0 4px 12px rgba(124, 58, 237, 0.06), 0 6px 20px rgba(124, 58, 237, 0.04);
  --shadow-lg: 0 10px 30px rgba(124, 58, 237, 0.06), 0 20px 50px rgba(124, 58, 237, 0.04);
  --shadow-xl: 0 20px 60px rgba(124, 58, 237, 0.08);
  --shadow-orange: 0 8px 30px rgba(255, 138, 66, 0.20);
  --shadow-blue: 0 8px 30px rgba(59, 130, 246, 0.20);
  --shadow-syntec: 0 8px 30px rgba(124, 58, 237, 0.20);
  --shadow-card: 0 2px 8px rgba(124, 58, 237, 0.04), 0 8px 24px rgba(124, 58, 237, 0.04);

  /* ===== RADII ===== */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;

  /* ===== TRANSITIONS ===== */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ===== TYPOGRAPHY ===== */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-alt: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================
   CONTAINER & SECTION
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; position: relative; }
.section-dark { background: var(--gradient-hero); color: var(--gray-700); }
.section-orange { background: var(--orange-50); }
.section-blue { background: var(--blue-50); }
.section-syntec { background: var(--syntec-50); }
.section-white { background: var(--white); }

.section-header {
  text-align: center; max-width: 720px; margin: 0 auto 50px;
}
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--orange-400); margin-bottom: 16px;
}
.section-label::before, .section-label::after {
  content: ''; width: 24px; height: 2px; background: var(--orange-400); border-radius: 2px;
}
.section-dark .section-label { color: var(--syntec-600); }
.section-dark .section-label::before, .section-dark .section-label::after { background: var(--syntec-600); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 16px; color: var(--gray-800);
  letter-spacing: -0.02em;
}
.section-dark .section-title { color: var(--gray-800); }
.section-subtitle {
  font-size: 1rem; color: var(--gray-400);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}
.section-dark .section-subtitle { color: var(--gray-400); }

/* ============================================
   HEADER — STICKY NAV
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,58,237,0.06);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 3px rgba(124,58,237,0.04), 0 4px 12px rgba(124,58,237,0.04);
  border-bottom-color: rgba(124,58,237,0.10);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px;
}
.header-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 800; white-space: nowrap;
  background: linear-gradient(135deg, var(--syntec-600) 0%, var(--blue-500) 60%, var(--orange-400) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.header-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--gradient-syntec);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.85rem;
  color: white; font-weight: 900;
  -webkit-text-fill-color: white; flex-shrink: 0;
}
.header-logo span { color: var(--syntec-500); }

/* Navigation */
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav > li { position: relative; }
.header-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 10px; font-size: 0.79rem; font-weight: 600;
  color: var(--gray-500); border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}
.header-nav > li > a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--syntec-500), var(--blue-500), var(--orange-400));
  border-radius: 2px; transition: width 0.3s ease;
}
.header-nav > li > a:hover::after,
.header-nav > li > a.active::after { width: 60%; }
.header-nav > li > a:hover,
.header-nav > li > a.active {
  background: linear-gradient(135deg, var(--syntec-50) 0%, var(--blue-50) 50%, var(--orange-50) 100%);
  color: var(--syntec-600);
}
.header-nav > li > a i { font-size: 0.65rem; transition: var(--transition-fast); }
.header-nav > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: var(--transition);
  z-index: 100;
}
.header-nav > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(4px);
}
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 8px;
  font-size: 0.82rem; color: var(--gray-500);
  transition: var(--transition-fast);
}
.dropdown a:hover {
  background: linear-gradient(135deg, var(--syntec-50) 0%, var(--blue-50) 50%, var(--orange-50) 100%);
  color: var(--syntec-600);
}
.dropdown a i {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--syntec-50); color: var(--syntec-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
  transition: var(--transition-fast);
}
.dropdown a:hover i { background: var(--gradient-accent); color: white; }

.header.scrolled { box-shadow: 0 1px 3px rgba(124,58,237,0.04), 0 4px 12px rgba(124,58,237,0.04); border-bottom-color: rgba(124,58,237,0.10); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-consult {
  padding: 10px 24px; font-size: 0.8rem; font-weight: 600;
  background: var(--gradient-syntec); color: white;
  border-radius: var(--radius-full); border: none;
  cursor: pointer; transition: var(--transition-fast);
  box-shadow: var(--shadow-syntec);
}
.btn-consult:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,58,237,0.35); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2.5px; background: var(--gray-600);
  border-radius: 4px; transition: var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-weight: 600; font-size: 0.88rem;
  border-radius: var(--radius-full); transition: var(--transition);
  border: none; cursor: pointer; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gradient-accent); color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,138,66,0.35); }
.btn-secondary {
  background: transparent; color: var(--gray-700);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--orange-400); color: var(--orange-400); }
.btn-blue {
  background: var(--gradient-primary); color: white;
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,130,246,0.35); }
.btn-syntec {
  background: var(--gradient-syntec); color: white;
  box-shadow: var(--shadow-syntec);
}
.btn-syntec:hover { transform: translateY(-3px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex; align-items: center; position: relative;
  overflow: hidden; padding-top: 72px;
}

.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-glow-1 {
  top: -20%; right: -10%; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  animation: heroPulse 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  bottom: -20%; left: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  animation: heroPulse 10s ease-in-out infinite alternate-reverse;
}
.hero-glow-3 {
  top: 40%; left: 50%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,138,66,0.05) 0%, transparent 70%);
  animation: heroPulse 12s ease-in-out infinite alternate;
}
@keyframes heroPulse { 0% { transform: scale(1) translate(0,0); opacity: 0.5; } 100% { transform: scale(1.3) translate(30px,-20px); opacity: 1; } }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,138,66,0.08); border: 1px solid rgba(255,138,66,0.12);
  padding: 8px 20px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600; color: var(--orange-500);
  margin-bottom: 24px; backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem); font-weight: 900;
  line-height: 1.08; color: var(--gray-800); margin-bottom: 20px;
  letter-spacing: -0.02em; animation: fadeUp 0.8s ease 0.3s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--syntec-500) 50%, var(--blue-500) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 1.05rem; color: var(--gray-400);
  max-width: 560px; line-height: 1.8; margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.4s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-stats {
  display: flex; gap: 40px; margin-top: 40px;
  padding-top: 32px; border-top: 1px solid rgba(124,58,237,0.08);
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-stat-value { font-size: 2rem; font-weight: 800; color: var(--gray-700); font-family: var(--font-heading); line-height: 1; }
.hero-stat-value .counter { color: var(--orange-500); }
.hero-stat-label { font-size: 0.76rem; color: var(--gray-300); margin-top: 6px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; animation: fadeIn 1s ease 0.6s both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-image-frame {
  position: relative; width: 400px; height: 400px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(124,58,237,0.15);
  box-shadow: 0 30px 80px rgba(124,58,237,0.12);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-ring-1 { inset: -16px; border: 1.5px solid rgba(124,58,237,0.10); animation: spin 25s linear infinite; }
.hero-ring-2 { inset: -32px; border: 1.5px dashed rgba(59,130,246,0.08); animation: spin 35s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   IMPACT / RECOGNIZED SECTION
   ============================================ */
.impact-section {
  background: linear-gradient(135deg, var(--syntec-50) 0%, var(--blue-50) 50%, var(--orange-50) 100%);
  padding: 80px 0;
}
.impact-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 20px;
}
.impact-item {
  text-align: center; padding: 28px 16px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(124,58,237,0.08);
  transition: var(--transition);
}
.impact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--syntec-200); }
.impact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--syntec-100), var(--blue-100));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.1rem; color: var(--syntec-600);
}
.impact-stat {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--syntec-600), var(--blue-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.impact-label {
  font-size: 0.75rem; color: var(--gray-400);
  margin-top: 6px; font-weight: 500;
}

/* ============================================
   ABOUT US (HOME)
   ============================================ */
.about-home-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center;
}
.about-home-image { position: relative; display: flex; justify-content: center; }
.about-home-frame {
  width: 320px; height: 320px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--syntec-200);
  box-shadow: 0 20px 60px rgba(124,58,237,0.15);
}
.about-home-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-home-experience {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--gradient-syntec);
  color: white; padding: 16px 20px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-syntec);
}
.about-exp-num { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.about-exp-label { font-size: 0.68rem; opacity: 0.85; margin-top: 2px; }
.about-home-intro {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.85; margin-bottom: 16px; font-weight: 500;
}
.about-home-text { font-size: 0.92rem; color: var(--gray-400); line-height: 1.8; margin-bottom: 24px; }
.about-home-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-home-value {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--syntec-50); border: 1px solid var(--syntec-100);
}
.about-home-value i {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gradient-syntec); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.about-home-value strong { display: block; font-size: 0.82rem; color: var(--gray-600); margin-bottom: 2px; }
.about-home-value span { font-size: 0.75rem; color: var(--gray-400); line-height: 1.4; }

/* ============================================
   WHO WE ARE
   ============================================ */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.who-image-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.who-image-wrapper img { width: 100%; border-radius: var(--radius-lg); }
.who-image-wrapper::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,138,66,0.08), rgba(59,130,246,0.05));
  border-radius: var(--radius-lg); z-index: 1;
}
.who-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.who-value {
  padding: 16px 20px; border-radius: var(--radius);
  background: var(--orange-50); border: 1px solid var(--orange-100);
  transition: var(--transition);
}
.who-value:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.who-value h4 { font-size: 0.9rem; font-weight: 700; color: var(--gray-700); margin-bottom: 4px; }
.who-value h4 i { color: var(--orange-400); margin-right: 8px; }
.who-value p { font-size: 0.8rem; color: var(--gray-400); }
.who-text { color: var(--gray-400); line-height: 1.8; margin-bottom: 16px; }
.who-text:last-of-type { margin-bottom: 24px; }

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--gray-100);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent); transform: scaleX(0);
  transform-origin: left; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-200); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--orange-50); display: flex;
  align-items: center; justify-content: center;
  color: var(--orange-400); font-size: 1.3rem; margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--gradient-accent); color: white; box-shadow: var(--shadow-orange); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-700); }
.service-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 14px; }
.service-features { list-style: none; margin-bottom: 16px; }
.service-features li {
  font-size: 0.78rem; color: var(--gray-400);
  padding: 4px 0 4px 20px; position: relative; line-height: 1.5;
}
.service-features li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; left: 0; color: var(--syntec-400); font-size: 0.65rem;
}
.service-card-link {
  font-size: 0.82rem; font-weight: 600; color: var(--orange-400);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition-fast);
}
.service-card-link:hover { gap: 10px; color: var(--orange-500); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  padding: 36px 28px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-100);
  text-align: center; transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange-200); }
.why-card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange-50); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
  font-size: 1.5rem; color: var(--orange-400);
  transition: var(--transition);
}
.why-card:hover .why-card-icon { background: var(--gradient-accent); color: white; box-shadow: var(--shadow-orange); }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-700); }
.why-card p { font-size: 0.84rem; color: var(--gray-400); line-height: 1.7; }

/* ============================================
   PROCESS
   ============================================ */
.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.process-step {
  padding: 32px 24px; border-radius: var(--radius-lg);
  background: var(--white); border: 1px solid var(--gray-100);
  text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--syntec-200); }
.process-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-syntec); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 1rem; margin: 0 auto 16px;
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; }
.process-step p { font-size: 0.8rem; color: var(--gray-400); line-height: 1.65; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.industry-item {
  padding: 28px 20px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--gray-100);
  text-align: center; transition: var(--transition);
}
.industry-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.industry-item i { font-size: 2rem; color: var(--blue-400); margin-bottom: 12px; }
.industry-item h4 { font-size: 0.9rem; font-weight: 600; color: var(--gray-600); }

/* ============================================
   CASE STUDIES
   ============================================ */
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.case-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.case-card-body { padding: 32px; }
.case-tag {
  display: inline-block; padding: 4px 14px;
  background: var(--orange-50); color: var(--orange-500);
  font-size: 0.68rem; font-weight: 600; border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.case-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--gray-700); }
.case-card p { font-size: 0.84rem; color: var(--gray-400); line-height: 1.7; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; margin-top: 20px; border-top: 1px solid var(--gray-50); }
.case-metric {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid var(--gray-50);
  border-bottom: 1px solid var(--gray-50);
}
.case-metric:nth-child(2n) { border-right: none; }
.case-metric:nth-last-child(-n+2) { border-bottom: none; }
.case-metric-value { font-size: 1.5rem; font-weight: 800; color: var(--orange-400); font-family: var(--font-heading); }
.case-metric-label { font-size: 0.68rem; color: var(--gray-300); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================
   TESTIMONIALS (SLIDER)
   ============================================ */
.testimonial-slider { position: relative; max-width: 800px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-slide { min-width: 100%; padding: 0 12px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; border: 1px solid var(--gray-100);
  text-align: center;
}
.testimonial-stars { color: var(--orange-400); font-size: 1rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-card blockquote {
  font-size: 1rem; color: var(--gray-500); line-height: 1.85;
  font-style: italic; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; justify-content: center; padding-top: 20px; border-top: 1px solid var(--gray-50); }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient-accent); display: flex;
  align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.testimonial-author-info h4 { font-size: 0.88rem; font-weight: 700; color: var(--gray-700); text-align: left; }
.testimonial-author-info p { font-size: 0.74rem; color: var(--gray-300); text-align: left; margin-top: 2px; }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  color: var(--gray-400); font-size: 0.85rem;
}
.slider-btn:hover { border-color: var(--orange-400); color: var(--orange-400); box-shadow: var(--shadow-md); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-200); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.slider-dot.active { background: var(--orange-400); width: 28px; border-radius: 5px; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--orange-300); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; cursor: pointer; font-weight: 600;
  font-size: 0.92rem; color: var(--gray-600); background: none;
  border: none; width: 100%; text-align: left; font-family: var(--font-body);
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--orange-400); }
.faq-question i { transition: var(--transition); color: var(--gray-200); font-size: 0.8rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--orange-400); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p { font-size: 0.86rem; color: var(--gray-400); line-height: 1.8; }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 200px; overflow: hidden; position: relative;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; gap: 16px; font-size: 0.72rem; color: var(--gray-300); margin-bottom: 10px; }
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-700); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 16px; }
.blog-card-link { font-size: 0.8rem; font-weight: 600; color: var(--orange-400); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition-fast); }
.blog-card-link:hover { gap: 10px; color: var(--orange-500); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(160deg, var(--syntec-50) 0%, var(--blue-50) 40%, var(--orange-50) 100%);
  padding: 80px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}
.cta-banner h2 { font-family: var(--font-heading); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: var(--gray-800); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { font-size: 1rem; color: var(--gray-400); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-banner .btn { font-size: 1rem; padding: 18px 40px; position: relative; z-index: 1; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--gray-400); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--orange-50);
  border-radius: var(--radius); transition: var(--transition);
}
.contact-detail-item:hover { background: var(--orange-100); transform: translateX(6px); }
.contact-detail-item .icon-box {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--white); display: flex; align-items: center;
  justify-content: center; color: var(--orange-400); font-size: 1rem;
  box-shadow: var(--shadow-sm);
}
.contact-detail-item h4 { font-size: 0.8rem; font-weight: 700; color: var(--gray-600); margin-bottom: 2px; }
.contact-detail-item p { font-size: 0.84rem; color: var(--gray-400); }

.contact-form-wrap {
  background: var(--white); padding: 36px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; color: var(--gray-700); }
.contact-form-wrap .form-intro { font-size: 0.84rem; color: var(--gray-400); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--gray-500); margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-100); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.88rem;
  transition: var(--transition); background: var(--off-white);
  color: var(--gray-600); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--orange-400);
  box-shadow: 0 0 0 4px rgba(255,138,66,0.06);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%; padding: 16px;
  background: var(--gradient-accent); color: white;
  border: none; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: var(--transition); font-family: var(--font-body);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { box-shadow: var(--shadow-orange); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulseWA 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); color: white; }
@keyframes pulseWA { 0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 36px rgba(37,211,102,0.65); } 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: linear-gradient(160deg, #1E1029 0%, #162032 40%, #1A1F3A 70%, #1E293B 100%);
  padding: 70px 0 0;
  overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--syntec-500), var(--blue-500), var(--orange-400), var(--syntec-500));
  background-size: 300% 100%;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 0%; } }
.footer::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
  margin-bottom: 48px; position: relative; z-index: 1;
}
.footer-brand .footer-logo {
  font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand .footer-logo span { color: var(--orange-400); }
.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  line-height: 1.8; max-width: 340px;
}
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-social a:hover { background: var(--gradient-accent); color: white; transform: translateY(-3px); border-color: transparent; box-shadow: 0 8px 24px rgba(255,138,66,0.25); }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; color: var(--white);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--orange-400), var(--syntec-500));
  border-radius: 2px;
}
.footer-col a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.4);
  margin-bottom: 12px; transition: var(--transition);
}
.footer-col a i { font-size: 0.7rem; width: 16px; color: var(--orange-400); }
.footer-col a:hover { color: var(--orange-300); transform: translateX(4px); }
.footer-col p {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.footer-col i { width: 20px; color: var(--orange-400); font-size: 0.85rem; }
.footer-bottom-wrap {
  background: rgba(0,0,0,0.2);
  position: relative; z-index: 1;
}
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.2);
}
.footer-bottom i { color: var(--orange-400); font-size: 0.7rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.2); transition: var(--transition); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--orange-400); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }
.stagger-7 { transition-delay: 0.35s; }
.stagger-8 { transition-delay: 0.4s; }

/* ============================================
   SERVICE PAGE SPECIFIC
   ============================================ */
.service-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--syntec-50) 0%, var(--blue-50) 50%, var(--orange-50) 100%);
  position: relative; overflow: hidden;
}
.service-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.5;
}
.service-hero-content { max-width: 720px; position: relative; z-index: 2; }
.service-hero .section-label { color: var(--syntec-600); }
.service-hero .section-label::before, .service-hero .section-label::after { background: var(--syntec-600); }
.service-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; color: var(--gray-800); line-height: 1.12; margin-bottom: 16px; }
.service-hero p { font-size: 1.05rem; color: var(--gray-400); line-height: 1.75; margin-bottom: 28px; max-width: 600px; }

.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.benefits-list { display: flex; flex-direction: column; gap: 16px; }
.benefit-item {
  display: flex; gap: 16px; padding: 20px;
  border-radius: var(--radius); background: var(--orange-50);
  border: 1px solid var(--orange-100); transition: var(--transition);
}
.benefit-item:hover { transform: translateX(6px); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gradient-accent); display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; flex-shrink: 0;
}
.benefit-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--gray-600); margin-bottom: 4px; }
.benefit-item p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.6; }

.service-cta {
  background: linear-gradient(135deg, var(--syntec-50), var(--blue-50));
  border-radius: var(--radius-lg);
  padding: 48px; text-align: center;
  border: 1px solid var(--syntec-100);
}
.service-cta h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-700); margin-bottom: 12px; }
.service-cta p { color: var(--gray-400); margin-bottom: 24px; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--syntec-50) 0%, var(--blue-50) 50%, var(--orange-50) 100%);
  text-align: center;
}
.blog-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--gray-800); margin-bottom: 12px; }
.blog-hero p { font-size: 1rem; color: var(--gray-400); max-width: 560px; margin: 0 auto; }
.blog-listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* Blog Post Single */
.blog-post-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--syntec-50) 0%, var(--blue-50) 50%, var(--orange-50) 100%);
  text-align: center;
}
.blog-post-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800; color: var(--gray-800);
  max-width: 800px; margin: 0 auto 16px; line-height: 1.15;
}
.blog-post-breadcrumb {
  font-size: 0.8rem; color: var(--gray-300);
  margin-bottom: 20px;
}
.blog-post-breadcrumb a { color: var(--syntec-600); }
.blog-post-breadcrumb a:hover { color: var(--syntec-700); }
.blog-post-breadcrumb span { margin: 0 8px; }
.blog-post-meta {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; font-size: 0.82rem; color: var(--gray-400);
}
.blog-post-meta i { margin-right: 6px; color: var(--orange-500); }

.blog-post-container {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: start;
}
.blog-post-content {
  max-width: 780px;
}
.blog-post-content .blog-post-lead {
  font-size: 1.12rem; color: var(--gray-500);
  line-height: 1.85; margin-bottom: 32px;
  font-weight: 500;
}
.blog-post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem; font-weight: 700;
  color: var(--gray-800); margin: 40px 0 16px;
  line-height: 1.25;
}
.blog-post-content p {
  font-size: 0.95rem; color: var(--gray-400);
  line-height: 1.85; margin-bottom: 16px;
}
.blog-post-cta {
  background: var(--orange-50);
  border: 1px solid var(--orange-100);
  border-radius: var(--radius-lg);
  padding: 36px; text-align: center;
  margin: 48px 0 32px;
}
.blog-post-cta h3 { font-size: 1.3rem; font-weight: 700; color: var(--gray-700); margin-bottom: 8px; }
.blog-post-cta p { color: var(--gray-400); margin-bottom: 20px; }

.blog-post-share {
  display: flex; align-items: center; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--gray-100);
}
.blog-post-share span { font-size: 0.82rem; font-weight: 600; color: var(--gray-400); }
.blog-post-share a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); font-size: 0.85rem;
  transition: var(--transition-fast);
}
.blog-post-share a:hover {
  background: var(--gradient-accent);
  border-color: transparent; color: white;
}

/* Sidebar */
.blog-post-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--gray-700); margin-bottom: 16px;
}
.sidebar-author {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.sidebar-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.sidebar-author strong { display: block; font-size: 0.85rem; color: var(--gray-700); }
.sidebar-author span { font-size: 0.74rem; color: var(--gray-300); }
.sidebar-widget p { font-size: 0.82rem; color: var(--gray-400); line-height: 1.7; margin-bottom: 16px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; font-size: 0.8rem; font-weight: 600;
  border: 1.5px solid var(--orange-400); color: var(--orange-400);
  border-radius: var(--radius-full); background: transparent;
  transition: var(--transition-fast);
}
.btn-outline:hover { background: var(--orange-400); color: white; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid, .blog-listing-grid { grid-template-columns: repeat(2,1fr); }
  .impact-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .about-home-grid { gap: 40px; }
}

@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-visual { order: -1; }
  .hero-image-frame { width: 260px; height: 260px; }
  .hero-floating-card { display: none; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .who-image-wrapper { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex; flex-direction: column; position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 24px; gap: 2px; overflow-y: auto;
  }
  .header-nav.open > li > a {
    padding: 14px 16px; font-size: 0.95rem; font-weight: 600;
    border-radius: 10px;
  }
  .header-nav.open > li > a::after { display: none; }
  .header-nav.open > li > a i { font-size: 0.75rem; margin-left: auto; }
  .header-nav > li:has(.dropdown).open > a i { transform: rotate(180deg); }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; border: none;
    padding: 0 0 0 16px; display: none;
    background: var(--off-white); border-radius: var(--radius);
    margin-top: 2px;
  }
  .header-nav.open > li.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .header-actions .btn-consult { display: none; }
  .header-nav.open .dropdown a {
    padding: 12px 14px; font-size: 0.88rem;
    border-radius: 8px;
  }
  .header-nav.open .dropdown a i {
    width: 28px; height: 28px; font-size: 0.75rem;
  }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-listing-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .about-home-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about-home-values { justify-items: center; }
  .about-home-image { order: -1; }
  .about-home-frame { width: 240px; height: 240px; }
  .about-home-intro { margin-left: auto; margin-right: auto; max-width: 560px; }
  .about-home-text { margin-left: auto; margin-right: auto; max-width: 560px; }
  .blog-post-container { grid-template-columns: 1fr; }
  .blog-post-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.6rem; }
  .testimonial-card { padding: 28px 20px; }
  .service-card { padding: 28px 24px; }
  .service-cta { padding: 32px 24px; }
  .slider-btn { width: 38px; height: 38px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.3rem; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero-stat-value { font-size: 1.5rem; }
  .who-values { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .about-home-values { grid-template-columns: 1fr; }
  .about-home-frame { width: 200px; height: 200px; }
  .case-metric-value { font-size: 1.2rem; }
}
