/* ========================================
   INOVASI SOLUSI GRIYA — Design System
   ======================================== */

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

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --primary: #e65100;
  --primary-light: #ff8a3d;
  --primary-dark: #ac1900;
  --primary-50: #fff3e0;
  --primary-100: #ffe0b2;
  --primary-gradient: linear-gradient(135deg, #e65100, #ff8a3d);
  
  /* Accent Colors */
  --blue: #1e40af;
  --blue-light: #3b82f6;
  --blue-dark: #1e3a5f;
  --wa-green: #25D366;
  --wa-green-dark: #128C7E;
  
  /* Neutrals */
  --dark: #0f172a;
  --dark-light: #1e293b;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  
  /* Typography */
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 40px rgba(230, 81, 0, 0.15);
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Section Common --- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section-alt {
  background-color: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--primary-50);
  border-radius: var(--radius-full);
}

.section-dark .section-label {
  background: rgba(230, 81, 0, 0.15);
  color: var(--primary-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: var(--gray-400);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230, 81, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 81, 0, 0.4);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: var(--wa-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--duration) var(--ease);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

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

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

.nav-links a {
  padding: 8px 16px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  display: none;
}

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

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.active .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-xl);
  z-index: 100;
}

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

.nav-dropdown-label {
  display: block;
  padding: 8px 20px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px 8px 28px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7) !important;
  background: none !important;
  border-radius: 0 !important;
  transition: all 0.2s var(--ease);
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.05) !important;
  color: var(--white) !important;
  padding-left: 32px;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners {
  padding: 80px 0;
  background: var(--gray-50);
  overflow: hidden;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--gray-50), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--gray-50), transparent);
}

.partners-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: marqueeScroll 60s linear infinite;
  width: max-content;
}

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

.partner-logo {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.3s var(--ease);
  object-fit: contain;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================================
   SERVICE PAGE STYLES
   ======================================== */
.service-hero {
  padding: 140px 0 80px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

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

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

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

.service-breadcrumb .sep {
  color: var(--gray-600);
}

.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}

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

.service-hero-desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.8;
}

.service-content {
  padding: var(--section-padding);
}

.service-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-800);
}

.service-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 32px 0 48px;
}

.service-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.service-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-type-card .icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.service-type-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.service-type-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.service-benefits {
  padding: 80px 0;
  background: var(--gray-50);
}

.service-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
}

.service-benefit-item:hover {
  box-shadow: var(--shadow-md);
}

.service-benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.service-benefit-item p {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.service-cta-section {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
  color: var(--white);
}

.service-cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.service-cta-section p {
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

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

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(230,81,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(230, 81, 0, 0.15);
  border: 1px solid rgba(230, 81, 0, 0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

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

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 550px;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-value span {
  color: var(--primary-light);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 8px;
}

/* ========================================
   USP SECTION
   ======================================== */
.usp {
  padding: 80px 0;
  background: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.usp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.usp-card:hover::before {
  opacity: 1;
}

.usp-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.usp-icon svg {
  width: 28px;
  height: 28px;
}

.usp-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.usp-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.services-tab {
  padding: 12px 28px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  color: var(--gray-600);
  font-family: var(--font-sans);
}

.services-tab.active,
.services-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.services-panel {
  display: none;
}

.services-panel.active {
  display: block;
  animation: fadeIn 0.5s var(--ease);
}

/* Konstruksi Baja - Process Flow */
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gray-200);
  z-index: 0;
}

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

.process-number {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  transition: all var(--duration) var(--ease);
}

.process-step:hover .process-number {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.process-step-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.process-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.process-step-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Pekerjaan Rumahan - Grid Icons */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-item-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.service-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.service-item-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */
.portfolio {
  padding: var(--section-padding);
  background: var(--dark);
  color: var(--white);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.portfolio-filter {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  font-family: var(--font-sans);
}

.portfolio-filter.active,
.portfolio-filter:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  group: true;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.portfolio-item-category {
  font-size: 0.8rem;
  color: var(--primary-light);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  font-family: var(--font-sans);
}

.portfolio-back-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.portfolio-cover-item .portfolio-item-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.portfolio-cover-item .portfolio-item-title {
  font-size: 1.3rem;
  font-weight: 800;
}

.portfolio-cover-item .portfolio-item-category {
  font-size: 0.85rem;
  color: var(--primary-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration) var(--ease);
}

.portfolio-cover-item:hover .portfolio-item-category {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: var(--radius-full);
}

/* ========================================
   ORDER FLOW SECTION
   ======================================== */
.order-flow {
  padding: var(--section-padding);
  background: var(--white);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

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

.order-step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(230, 81, 0, 0.25);
  transition: transform var(--duration) var(--ease);
}

.order-step:hover .order-step-number {
  transform: scale(1.1);
}

.order-step-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.order-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.order-step-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.order-step-connector {
  position: absolute;
  top: 40px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--gray-300);
  display: none;
}

.order-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   PRODUCTS SECTION (Pintu)
   ======================================== */
.products {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.products-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.products-scroll::-webkit-scrollbar {
  height: 6px;
}

.products-scroll::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 3px;
}

.products-scroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.product-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--gray-200);
}

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

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-body {
  padding: 20px;
}

.product-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ========================================
   ABOUT / VISI MISI
   ======================================== */
.about {
  padding: var(--section-padding);
  background: var(--dark);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.about-card-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.about-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-card-text {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.about-card ol {
  counter-reset: item;
  margin-top: 12px;
}

.about-card ol li {
  counter-increment: item;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.about-card ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.blog-coming-soon {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
}

.blog-coming-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.blog-coming-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.blog-coming-desc {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: var(--section-padding);
  background: var(--dark);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--duration) var(--ease);
}

.contact-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.contact-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.contact-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-card-text {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.contact-card-text a {
  color: var(--gray-400);
  transition: color var(--duration) var(--ease);
}

.contact-card-text a:hover {
  color: var(--primary-light);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-social a {
  color: var(--gray-400);
  font-size: 0.92rem;
  transition: color var(--duration) var(--ease);
}

.contact-social a:hover {
  color: var(--primary-light);
}

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

/* ========================================
   FOOTER
   ========================================*/
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 80px 0 32px;
}

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

.footer-brand-logo {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  font-size: 0.88rem;
  transition: color var(--duration) var(--ease);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

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

/* ========================================
   FLOATING WA BUTTON
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.wa-float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  transition: all var(--duration) var(--ease);
  animation: floatBounce 3s ease-in-out infinite;
}

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

.wa-float-btn svg {
  width: 22px;
  height: 22px;
}

/* WA Popup for choosing contact */
.wa-popup {
  position: absolute;
  bottom: 64px;
  right: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  display: none;
  animation: fadeInUp 0.3s var(--ease);
}

.wa-popup.active {
  display: block;
}

.wa-popup-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.wa-popup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease);
}

.wa-popup-item:hover {
  background: var(--gray-50);
}

.wa-popup-item-avatar {
  width: 40px;
  height: 40px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.wa-popup-item-info {
  flex: 1;
}

.wa-popup-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
}

.wa-popup-item-phone {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-family: var(--font-mono);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.7s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.7s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-flow::before {
    display: none;
  }
  
  .order-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 1000;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    padding: 12px 24px;
  }
  
  .nav-cta {
    display: inline-flex;
    margin-top: 16px;
  }
  
  /* Mobile dropdown */
  .nav-dropdown {
    width: 100%;
    text-align: center;
  }
  
  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: var(--radius-sm);
    padding: 8px 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  
  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
    transform: none;
  }
  
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
  
  .nav-dropdown.active:hover .nav-dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .nav-dropdown-menu a {
    font-size: 1rem !important;
    padding: 10px 20px !important;
  }
  
  .nav-dropdown-label {
    font-size: 0.7rem;
  }
  
  .partner-logo {
    height: 36px;
  }
  
  .service-types-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 100px 0 60px;
  }
  
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .usp {
    margin-top: -30px;
  }
  
  .process-flow {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .order-steps {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .wa-float-btn span {
    display: none;
  }
  
  .wa-float-btn {
    padding: 16px;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .process-flow {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .order-steps {
    grid-template-columns: 1fr;
  }
  
  .services-tabs {
    flex-wrap: wrap;
  }
  
  .portfolio-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  
  .lightbox {
    padding: 16px;
  }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* --- Blog Card Grid (Homepage & Listing) --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

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

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.blog-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-50);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-400);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.blog-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--duration) var(--ease);
}

.blog-card:hover .blog-card-link {
  gap: 8px;
}

/* --- Blog Article Page --- */
.blog-article {
  padding: 48px 0 80px;
}

.blog-article .container {
  max-width: 800px;
}

.blog-article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

/* --- AEO: Blok Jawaban Langsung (Answer Engine Optimization) --- */
.aeo-answer-block {
  padding: 32px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.aeo-answer-block .container {
  max-width: 800px;
}

.aeo-answer-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin: 0;
  padding: 20px 24px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.aeo-answer-block p strong {
  color: var(--gray-900);
}

/* --- Blog Article Content --- */
.blog-article h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.blog-article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  margin: 32px 0 12px;
  line-height: 1.4;
}

.blog-article p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 24px 24px;
  color: var(--gray-600);
  line-height: 1.85;
}

.blog-article li {
  margin-bottom: 8px;
  list-style: disc;
}

.blog-article ol li {
  list-style: decimal;
}

.blog-article img {
  border-radius: var(--radius-md);
  margin: 24px 0;
  box-shadow: var(--shadow-md);
}

.blog-article-img-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: -16px;
  margin-bottom: 24px;
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}

.blog-article th,
.blog-article td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid var(--gray-200);
}

.blog-article th {
  background: var(--gray-50);
  font-weight: 700;
  color: var(--gray-800);
}

.blog-article td {
  color: var(--gray-600);
}

/* --- FAQ Section --- */
.blog-faq {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.blog-faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.blog-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  background: var(--gray-50);
  border: none;
  width: 100%;
  text-align: left;
  transition: background var(--duration) var(--ease);
}

.blog-faq-q:hover {
  background: var(--gray-100);
}

.blog-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.blog-faq-item.open .blog-faq-q::after {
  transform: rotate(45deg);
}

.blog-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.blog-faq-item.open .blog-faq-a {
  max-height: 300px;
}

.blog-faq-a p {
  padding: 0 20px 16px;
  margin: 0;
}

/* --- Blog CTA Section --- */
.blog-cta-section {
  padding: 60px 0;
  background: var(--dark);
  text-align: center;
  color: var(--white);
}

.blog-cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.blog-cta-section p {
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Blog View All Link --- */
.blog-view-all {
  text-align: center;
  margin-top: 48px;
}

.blog-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
}

.blog-view-all a:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- Blog Responsive --- */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card-img {
    height: 180px;
  }

  .blog-article h2 {
    font-size: 1.35rem;
  }

  .blog-article h3 {
    font-size: 1.1rem;
  }

  .aeo-answer-block .container {
    padding: 0 16px;
  }
}
