/**
 * Global Styles for PT Next Technology Nusantara
 * Design System & Typography
 */

/* Custom Font - Gordita */

@font-face {
  font-family: 'Gordita';
  src: url('/fonts/Gordita-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('/fonts/Gordita-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('/fonts/Gordita-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Colors */
  --ink: #0D1117;
  --ink-2: #3D4A5C;
  --ink-3: #8896A8;
  --surface: #FFFFFF;
  --surface-2: #F7F8FA;
  --surface-3: #EFF1F5;
  --blue: #1563D5;
  --blue-lt: #EAF0FD;
  --orange: #E8630A;
  --orange-lt: #FEF3EC;
  --red: #D4271C;
  --accent-blue: #6EAAFF;
  --border: rgba(0, 0, 0, 0.07);
  --border-2: rgba(0, 0, 0, 0.12);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  
  /* Typography */
  --font-main: 'Gordita', sans-serif;
  --font-heading: 'Bebas Neue', sans-serif;
  
  /* Spacing */
  --spacing: 1rem;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.6;
  height: 100%;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all 0.2s ease;
}

/* Button Styles */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: 0.15s;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1051b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 99, 213, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}

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

.btn-orange {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
}

.btn-orange:hover {
  background: #c4520a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232, 99, 10, 0.3);
}

.btn-sea {
  background: #0ea5e9;
  color: #fff;
  text-decoration: none;
}

.btn-sea:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-2);
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: var(--surface-2);
  border-color: var(--ink-3);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .btn:not(.btn-lg) {
    padding: 8px 16px;
    font-size: 12px;
  }
}

input,
textarea,
select {
  font-family: var(--font-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: 0.01em;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 32px;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

code {
  font-family: 'Courier New', monospace;
}

/* Animations */

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

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

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

/* Utility Classes */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fi.fi-vis {
  opacity: 1;
  transform: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Scrollbar Styling */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--ink-3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--ink-2);
}

#root {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  border-inline: 1px solid var(--border);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1,
h2 {
  font-family: var(--heading);
  font-weight: 500;
  color: var(--text-h);
}

h1 {
  font-size: 56px;
  letter-spacing: -1.68px;
  margin: 32px 0;
  @media (max-width: 1024px) {
    font-size: 36px;
    margin: 20px 0;
  }
}

h2 {
  font-size: 24px;
  line-height: 118%;
  letter-spacing: -0.24px;
  margin: 0 0 8px;
  @media (max-width: 1024px) {
    font-size: 20px;
  }
}

p {
  margin: 0;
}

code,
.counter {
  font-family: var(--mono);
  display: inline-flex;
  border-radius: 4px;
  color: var(--text-h);
}

code {
  font-size: 15px;
  line-height: 135%;
  padding: 4px 8px;
  background: var(--code-bg);
}
/* ═══ SHARED GLOBAL STYLES ═══════════════════════════════ */
:root {
  --ink: #0d1117;
  --ink-2: #3d4a5c;
  --ink-3: #8896a8;
  --surface: #ffffff;
  --surface-2: #f7f8fa;
  --surface-3: #eff1f5;
  --blue: #1563d5;
  --blue-lt: #eaf0fd;
  --red: #d4271c;
  --green: #059669;
  --green-lt: #ecfdf5;
  --purple: #7c3aed;
  --purple-lt: #f5f3ff;
  --border: rgba(0, 0, 0, 0.07);
  --border-2: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  --r: 10px;
  --r-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--surface);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  display: block;
}

/* Fade-in animation for elements */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fi.vis {
  opacity: 1;
  transform: none;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: 0.15s;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #1051b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 99, 213, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-2);
}

.btn-outline-dark:hover {
  border-color: var(--ink-3);
  background: var(--surface-2);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}
/* Button Component Styles */

/* ── Base Button ──────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Size Variants ────────────────────────── */
.btn-sm {
  padding: 7px 16px;
  font-size: 12.5px;
  border-radius: 6px;
}

.btn-md {
  padding: 9px 20px;
  font-size: 13.5px;
  border-radius: 8px;
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 10px;
}

/* ── Color Variants ───────────────────────── */

/* Primary */
.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: #1051b8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 99, 213, 0.25);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(21, 99, 213, 0.2);
}

/* Secondary */
.btn-secondary {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--surface-3);
  border-color: var(--border-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-secondary:active:not(:disabled) {
  transform: translateY(0);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:active:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: none;
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(13, 17, 23, 0.05);
}

.btn-ghost:active:not(:disabled) {
  background: rgba(13, 17, 23, 0.1);
}

/* Danger */
.btn-danger {
  background: #D4271C;
  color: #fff;
}

.btn-danger:hover:not(:disabled) {
  background: #b52015;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 39, 28, 0.25);
}

.btn-danger:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(212, 39, 28, 0.2);
}

/* ── Disabled State ───────────────────────── */
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Loading State ────────────────────────── */
.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Mobile Responsive ────────────────────── */
@media (max-width: 480px) {
  .btn-md {
    padding: 8px 16px;
    font-size: 13px;
  }
}
/* Navigation Bar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* Dark background for blog pages */
nav.dark-bg {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.dark-bg.scrolled {
  background: rgba(13, 17, 23, 0.98);
}

/* Text colors remain white on dark-bg */
nav.dark-bg .logo-text {
  color: #fff;
}

nav.dark-bg.scrolled .logo-text {
  color: #fff;
}

nav.dark-bg .nav-center > a,
nav.dark-bg .nav-dropdown > a {
  color: rgba(255, 255, 255, 0.9);
}

nav.dark-bg.scrolled .nav-center > a,
nav.dark-bg.scrolled .nav-dropdown > a {
  color: rgba(255, 255, 255, 0.9);
}

nav.dark-bg .nav-center > a:hover,
nav.dark-bg .nav-dropdown > a:hover {
  color: #fff;
}

nav.dark-bg.scrolled .nav-center > a:hover,
nav.dark-bg.scrolled .nav-dropdown > a:hover {
  color: #fff;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 202;
  cursor: pointer;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.3s;
  white-space: nowrap;
}

nav.scrolled .logo-text {
  color: #0D1117;
}

.logo-text span {
  color: #D4271C;
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
}

/* Nav Center (Desktop) */
.nav-center {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  flex: 1;
  justify-content: center;
}

@media (max-width: 800px) {
  .nav-center {
    display: none;
  }
}

.nav-center > a,
.nav-dropdown > a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.15s;
  text-decoration: none;
  cursor: pointer;
}

nav.scrolled .nav-center > a,
nav.scrolled .nav-dropdown > a {
  color: #3D4A5C;
}

.nav-center > a:hover,
.nav-dropdown > a:hover {
  color: #fff;
}

nav.scrolled .nav-center > a:hover,
nav.scrolled .nav-dropdown > a:hover {
  color: #0D1117;
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 300;
  padding: 12px;
  margin-top: 8px;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.dropdown-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 380px;
}

.dropdown-solusi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  min-width: 340px;
}

.dropdown-industri {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  min-width: 400px;
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
  color: #0D1117;
}

.dropdown-item:hover {
  background: #F7F8FA;
  border-color: #1563D5;
  color: #1563D5;
}

.dropdown-item-name {
  font-weight: 600;
  font-size: 13px;
  color: inherit;
}

.dropdown-item-desc {
  font-size: 11px;
  color: #8896A8;
  line-height: 1.3;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 202;
}

/* Language Dropdown */
.lang-dropdown-wrap {
  position: relative;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: 0.2s;
  font-family: inherit;
}

.lang-trigger:hover {
  opacity: 0.8;
}

nav.scrolled .lang-trigger {
  color: #3D4A5C;
}

nav.scrolled .lang-trigger:hover {
  opacity: 0.7;
}

/* Language button colors on dark background */
nav.dark-bg .lang-trigger {
  color: rgba(255, 255, 255, 0.9);
}

nav.dark-bg.scrolled .lang-trigger {
  color: rgba(255, 255, 255, 0.9);
}

.lang-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 300;
  padding: 8px 0;
  margin-top: 8px;
  transition: opacity 0.2s, visibility 0.2s;
}

.lang-dropdown-wrap.active .lang-dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #0D1117;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.lang-option:hover {
  background: #F7F8FA;
  color: #1563D5;
}

.lang-option.active {
  background: #EAF0FD;
  color: #1563D5;
}

.lang-option-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-option-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-option-name {
  font-weight: 600;
  font-size: 12px;
}

.lang-option-native {
  font-size: 11px;
  color: #8896A8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: 0.15s;
}

.btn-primary {
  background: #1563D5;
  color: #fff;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1051b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 99, 213, 0.3);
}

.nav-right .btn-primary {
  background: #1563D5;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: 0.2s;
}

.nav-right .btn-primary:hover {
  background: #1051b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 99, 213, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

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

.btn-orange {
  background: #D4271C;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-orange:hover {
  background: #b52015;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 39, 28, 0.3);
}

.nav-right .btn-orange {
  background: #D4271C;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: 0.2s;
}

.nav-right .btn-orange:hover {
  background: #b52015;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 39, 28, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}

.hamburger span {
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

nav.scrolled .hamburger span {
  background: #0D1117;
}

/* Hamburger on dark background */
nav.dark-bg .hamburger span {
  background: #fff;
}

nav.dark-bg.scrolled .hamburger span {
  background: #fff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: #fff;
  padding: 16px;
  flex-direction: column;
  gap: 8px;
  z-index: 201;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-mobile-menu.active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.nav-mobile-menu a,
.nav-mobile-menu button {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #0D1117;
  border-radius: 8px;
  transition: 0.2s;
  display: block;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu button:hover {
  background: #F7F8FA;
  color: #1563D5;
}

.mobile-menu-section {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.mobile-menu-section-title {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 12px;
  color: #8896A8;
  text-transform: uppercase;
}

/* Mobile menu on dark background */
nav.dark-bg .nav-mobile-menu {
  background: #0D1117;
}

nav.dark-bg .nav-mobile-menu a,
nav.dark-bg .nav-mobile-menu button {
  color: rgba(255, 255, 255, 0.9);
}

nav.dark-bg .nav-mobile-menu a:hover,
nav.dark-bg .nav-mobile-menu button:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

nav.dark-bg .mobile-menu-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.dark-bg .mobile-menu-section-title {
  color: rgba(255, 255, 255, 0.5);
}

.mobile-menu-item {
  padding-left: 32px !important;
}

.nav-mobile-menu .btn-primary {
  background: #1563D5 !important;
  color: #fff !important;
  padding: 13px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: center !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: 0.2s;
}

.nav-mobile-menu .btn-primary:hover {
  background: #1051b8 !important;
  box-shadow: 0 4px 14px rgba(21, 99, 213, 0.3);
}

.nav-mobile-menu .btn-orange {
  background: #D4271C !important;
  color: #fff !important;
  padding: 13px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-align: center !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: 0.2s;
}

.nav-mobile-menu .btn-orange:hover {
  background: #b52015 !important;
  box-shadow: 0 4px 14px rgba(212, 39, 28, 0.3);
}

@media (max-width: 800px) {
  .hamburger {
    display: flex;
  }

  nav {
    padding: 0 4%;
  }

  .lang-trigger {
    padding: 4px 8px;
    font-size: 11px;
  }

  .lang-flag {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  nav {
    height: 56px;
    padding: 0 4%;
  }

  .nav-mobile-menu {
    top: 56px;
  }

  .lang-trigger {
    padding: 4px 8px;
    font-size: 10px;
  }

  .lang-flag {
    width: 16px;
    height: 16px;
  }

  .btn:not(.btn-lg) {
    padding: 8px 16px;
    font-size: 12px;
  }
}
/* Footer Styling */
.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #0D1117;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.footer-section h5 {
  font-size: 15px;
  margin-bottom: 24px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 14px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #6EAAFF;
}

.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(110, 170, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: rgba(110, 170, 255, 0.25);
  color: #6EAAFF;
  border-color: #6EAAFF;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-contact {
  font-size: 14px;
}

.footer-contact p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 40px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 0 5%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-section h5 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
/* Hero Section */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  margin-top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.52) 50%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Vignette samping */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.38) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Fade-in base state */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Fade-in visible state */
.fi-vis {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 80px 6% 96px 6%;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 120px 6% 72px 6%;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 96px 5% 60px 5%;
  }
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 20px;
  padding: 7px 14px;
  backdrop-filter: blur(6px);
  max-width: 100%;
  flex-wrap: wrap;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6EAAFF;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: left;
}

.hero h1 em {
  font-style: normal;
  color: #6EAAFF;
}

.hero-title-main {
  display: block;
  white-space: nowrap;
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 56px);
}

.hero-title-sub {
  display: block;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(13.5px, 2vw, 16.5px);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.74;
  max-width: min(520px, 100%);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px 16px;
  }
}

/* btn-lg override */
.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  flex-wrap: wrap;
}

@media (max-width: 380px) {
  .hero-stats {
    gap: 20px;
  }
}

.stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
}

.stat .num sup {
  font-size: 14px;
  color: #D4271C;
  font-family: 'Inter', sans-serif;
  vertical-align: super;
  line-height: 0;
}

.stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: scrollBob 2.2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.scroll-line {
  width: 1px;
  height: 26px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes scrollBob {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    display: none;
  }

  .hero-title-sub {
    font-size: clamp(18px, 2.5vw, 32px);
    margin-top: 8px;
  }

  .hero-title-main {
    white-space: normal;
  }
}
/* Clients Section */
.clients {
  width: 100vw;
  padding: 40px 6%;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  background: #F7F8FA;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

@media (max-width: 480px) {
  .clients {
    padding: 24px 5%;
  }
}

.clients-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .clients-inner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

.clients-label {
  font-size: 12px;
  font-weight: 600;
  color: #8896A8;
  white-space: nowrap;
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.client-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #3D4A5C;
}
/* ─────────────────────────────────────────────────
   SERVICES SECTION — Editorial / Refined Industrial
   ───────────────────────────────────────────────── */

.services {
  width: 100vw;
  padding: 96px 6% 112px;
  background: #F7F8FA;
  position: relative;
  overflow: hidden;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* Subtle grid texture background */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,99,213,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,99,213,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* Accent glow top-left */
.services::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21,99,213,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services > * {
  position: relative;
  z-index: 1;
}

/* ── Section header ───────────────────────────────── */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1563D5;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #1563D5;
  border-radius: 2px;
}

.services h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #0D1117;
  margin: 0;
}

.services h2 em {
  font-style: normal;
  color: #1563D5;
  /* underline accent */
  background: linear-gradient(to right, #1563D5, #6EAAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 15px;
  color: #3D4A5C;
  line-height: 1.76;
  max-width: 380px;
  font-weight: 300;
  /* align to bottom of header row */
  align-self: end;
  padding-bottom: 6px;
}

@media (max-width: 768px) {
  .section-sub {
    max-width: 100%;
  }
}

/* ── Cards grid ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── Service card ─────────────────────────────────── */
.svc-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px 28px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: cardAppear 0.5s ease both;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Top accent line — hidden until hover */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #1563D5, #6EAAFF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
  border-radius: 20px 20px 0 0;
}

/* Corner arrow */
.svc-card::after {
  content: '↗';
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 14px;
  color: #8896A8;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.svc-card:hover {
  transform: translateY(-4px);
  background: #F0F6FF;
  box-shadow:
    0 8px 32px rgba(21,99,213,0.10),
    0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(21,99,213,0.15);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

/* Card number badge */
.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #C8D0DC;
  margin-bottom: 12px;
  display: block;
  transition: color 0.2s;
}

.svc-card:hover .svc-num {
  color: #1563D5;
}

/* Header with logo + name side by side */
.svc-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.svc-header h3 {
  flex: 1;
  align-self: center;
}

/* Icon container */
.svc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.svc-card:hover .svc-icon-wrap {
  transform: scale(1.08);
}

.svc-logo-wrap {
  width: 64px;
  height: 40px;
  border-radius: 12px;
  background: #F5EEF9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  overflow: hidden;
  flex-shrink: 0;
}

.svc-card:hover .svc-logo-wrap {
  transform: scale(1.08);
}

.svc-logo-wrap img {
  width: 48px;
  height: 28px;
  object-fit: contain;
}

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0D1117;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.svc-card p {
  font-size: 14px;
  color: #3D4A5C;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  margin-bottom: 16px;
  text-align: left;
}

/* Divider between desc and tags */
.svc-divider {
  height: 1px;
  background: #EFF1F5;
  margin: 16px 0 16px;
}

.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: #EFF1F5;
  color: #8896A8;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}

.svc-card:hover .tag {
  background: #EAF0FD;
  color: #1563D5;
}

/* ── Featured card (first card — larger) ─────────── */
.svc-card.featured {
  grid-column: span 1;
  background: linear-gradient(135deg, #0D1117 0%, #1A2332 100%);
  border-color: transparent;
}

.svc-card.featured .svc-num { color: rgba(255,255,255,0.2); }
.svc-card.featured:hover .svc-num { color: #6EAAFF; }
.svc-card.featured h3 { color: #fff; }
.svc-card.featured p { color: rgba(255,255,255,0.6); }
.svc-card.featured .svc-divider { background: rgba(255,255,255,0.08); }
.svc-card.featured .tag { background: rgba(110,170,255,0.15); color: #6EAAFF; }
.svc-card.featured:hover .tag { background: rgba(110,170,255,0.25); color: #9DBEFF; }
.svc-card.featured::after { color: rgba(255,255,255,0.5); }
.svc-card.featured:hover {
  box-shadow: 0 8px 40px rgba(21,99,213,0.30), 0 2px 8px rgba(0,0,0,0.20);
  border-color: rgba(110,170,255,0.25);
}

/* ── Responsive padding ───────────────────────────── */
@media (max-width: 768px) {
  .services {
    padding: 64px 5% 80px;
  }
  .svc-card {
    padding: 24px 22px 22px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 48px 5% 60px;
  }
}
.odoo-partner {
  width: 100vw;
  padding: 88px 6%;
  background: #FFFFFF;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.odoo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.odoo-left, .odoo-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-3);
}

.odoo-left h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #F7F8FA;
  border-radius: 8px;
  border: 1px solid #E8EAED;
}

.odoo-logo-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #5B2C80 0%, #714B67 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.partner-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.odoo-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  font-weight: 300;
  max-width: 440px;
}

.odoo-feat-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feat-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feat-dot {
  font-size: 18px;
  min-width: 24px;
  text-align: center;
  color: var(--blue);
  font-weight: 700;
}

.feat-row h4 {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--ink);
  margin: 0 0 6px 0;
  text-align: left;
}

.feat-row p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Modules Grid */
.modules-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 16px;
}

.mod-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: #F7F8FA;
  border-radius: 8px;
  border: 1px solid #E8EAED;
  text-align: center;
  transition: all 0.3s ease;
}

.mod-tile:hover {
  background: #EFF1F5;
  border-color: #DDD;
  transform: translateY(-2px);
}

.mod-tile-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.mod-tile p {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  word-break: break-word;
}

/* CTA Box */
.odoo-cta-box {
  padding: 24px;
  background: linear-gradient(135deg, #F5EEF9 0%, #EAF4FD 100%);
  border-radius: 12px;
  border: 1px solid #E8EAED;
}

.odoo-cta-box h4 {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--ink);
  margin: 0 0 8px 0;
}

.odoo-cta-box p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.btn-white {
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid #E8EAED;
  text-decoration: none;
}

.btn-white:hover {
  background: #F7F8FA;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 17, 23, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .odoo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .modules-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
}

@media (max-width: 768px) {
  .odoo-partner {
    padding: 64px 5%;
  }

  .odoo-inner {
    gap: 40px;
  }

  .modules-grid {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 12px;
  }

  .mod-tile {
    padding: 10px;
  }

  .odoo-cta-box {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .odoo-partner {
    padding: 48px 5%;
  }

  .odoo-left h2 {
    font-size: 28px;
  }

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

  .partner-badge {
    flex-direction: column;
    text-align: center;
  }

  .odoo-desc {
    max-width: 100%;
  }
}
.tech-stack {
  width: 100vw;
  padding: 88px 6%;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.tech-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.tech-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 16px 0 24px 0;
}

.section-sub {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

/* Tech Categories */
.tech-categories {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.tech-category {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tech-cat-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-3);
}

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

.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #FFFFFF;
  border: 1px solid #E8EAED;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: fit-content;
}

.tech-chip:hover {
  background: #F5EEF9;
  border-color: var(--blue);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(21, 99, 213, 0.1);
}

.tech-icon {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-logo {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.tech-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.tech-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  background: #EAF0FD;
  color: #1563D5;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 800px) {
  .tech-stack {
    padding: 64px 5%;
  }

  .tech-header {
    margin-bottom: 48px;
  }

  .tech-categories {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .tech-stack {
    padding: 48px 5%;
  }

  .tech-header h2 {
    font-size: 28px;
  }

  .tech-categories {
    gap: 24px;
  }

  .tech-category {
    gap: 10px;
  }

  .tech-chip {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.why-us {
  width: 100vw;
  padding: 88px 6%;
  background: #FFFFFF;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.why-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-3);
  margin-bottom: 16px;
}

.why-header h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

/* Why Grid */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.why-card {
  padding: 32px;
  background: linear-gradient(135deg, #F7F8FA 0%, #F5EEF9 100%);
  border: 1px solid #E8EAED;
  border-radius: 12px;
  border-left: 4px solid var(--blue);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13, 17, 23, 0.1);
  border-left-color: var(--red);
}

.why-num {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--blue);
  line-height: 1;
  margin: 0;
  margin-bottom: 8px;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.why-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 800px) {
  .why-us {
    padding: 64px 5%;
  }

  .why-header {
    margin-bottom: 48px;
  }

  .why-grid {
    gap: 24px;
  }

  .why-card {
    padding: 24px;
  }

  .why-num {
    font-size: 36px;
  }

  .why-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .why-us {
    padding: 48px 5%;
  }

  .why-header h2 {
    font-size: 28px;
  }

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

  .why-card {
    padding: 20px;
    border-left-width: 3px;
  }

  .why-num {
    font-size: 32px;
  }

  .why-card h3 {
    font-size: 15px;
  }

  .why-card p {
    font-size: 13px;
  }
}
/* CTA Section */
.cta-wrap {
  width: 100vw;
  padding: 88px 6%;
  background: #0D1117;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (max-width: 480px) {
  .cta-wrap {
    padding: 48px 5%;
  }
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(circle, rgba(21, 99, 213, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  color: #fff;
  font-size: clamp(30px, 4.5vw, 52px);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-wrap p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 36px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
  }

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

.cta-wrap .btn-primary {
  background: #D4271C;
}

.cta-wrap .btn-primary:hover {
  background: #b52015;
}

.cta-wrap .btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cta-wrap .btn-outline:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.4);
}
/* Contact Section */
.contact-strip {
  width: 100vw;
  background: #F7F8FA;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding: 56px 6%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

@media (max-width: 480px) {
  .contact-strip {
    padding: 36px 5%;
  }
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

@media (max-width: 480px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.contact-block .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8896A8;
  margin-bottom: 6px;
}

.contact-block .val {
  font-size: 14px;
  font-weight: 500;
  color: #0D1117;
  text-decoration: none;
}

.contact-block a {
  color: #1563D5;
}

.contact-block a:hover {
  text-decoration: underline;
}
/* Hero Konstruksi */
.hero-konstruksi {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
  margin-top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-konstruksi .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.55);
}

.hero-konstruksi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  z-index: 1;
}

.hero-konstruksi::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
  z-index: 1;
}

.hero-konstruksi .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 80px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  margin-top: 64px;
}

.hero-konstruksi .hero-content.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 99, 10, 0.2);
  border: 1px solid rgba(232, 99, 10, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.industry-badge span {
  font-size: 11.5px;
  font-weight: 700;
  color: #F97316;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-konstruksi h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 18px;
  word-break: break-word;
}

.hero-konstruksi h1 em {
  font-style: normal;
  color: #F97316;
}

.hero-konstruksi .hero-sub {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-konstruksi .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-konstruksi {
    margin-top: 56px;
  }
}

@media (max-width: 480px) {
  .hero-konstruksi .hero-content {
    padding: 0 5% 60px;
  }

  .hero-konstruksi .hero-actions {
    flex-direction: column;
  }

  .hero-konstruksi .hero-actions .btn-lg {
    justify-content: center;
  }

  .hero-konstruksi h1 {
    font-size: 36px;
  }
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Pain Points Section */
.pain-section {
  width: 100vw;
  padding: 72px 6%;
  background: var(--surface);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.pain-section > * {
  position: relative;
  z-index: 1;
}

.pain-section .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pain-section .inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.pain-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.pain-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.pain-section .section-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.72;
  font-weight: 300;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
  opacity: 0;
  transform: translateY(24px);
}

.pain-item.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

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

.pain-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pain-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.pain-item p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 300;
}

.pain-visual {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pain-visual.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.stat-row .label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}

.stat-row .value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--orange);
  letter-spacing: 0.02em;
}

.stat-row .value.blue {
  color: var(--blue);
}

.stat-row .value.green {
  color: #16A34A;
}

@media (max-width: 480px) {
  .pain-section {
    padding: 48px 5%;
  }

  .pain-section .inner {
    gap: 24px;
  }

  .pain-item {
    gap: 12px;
    padding: 14px;
  }

  .pain-visual {
    padding: 20px;
    gap: 10px;
  }
}
/* Solutions Section */
.solutions-section {
  width: 100vw;
  padding: 88px 6%;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.solutions-section > * {
  position: relative;
  z-index: 1;
}

.tc {
  text-align: center;
  margin: 0 auto;
  max-width: 1400px;
}

.tc .section-sub {
  margin: 16px auto 0;
  max-width: 540px;
}

.solutions-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.solutions-section .section-label.blue {
  color: var(--blue);
}

.solutions-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.solutions-section .section-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.72;
  font-weight: 300;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 52px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }
}

.sol-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(24px);
}

.sol-card.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.sol-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--border-2);
}

.sol-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.sol-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.sol-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-odoo {
  background: #F5EEF9;
  color: #714B67;
}

.badge-power {
  background: #EAF4FD;
  color: #1563D5;
}

.sol-card p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.68;
  font-weight: 300;
  margin-top: 10px;
}

.sol-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sol-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
}

.sol-feat::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: var(--blue-lt);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .solutions-section {
    padding: 64px 5%;
  }

  .sol-card {
    padding: 20px;
  }
}
/* How It Works / Process Section */
.how-section {
  width: 100vw;
  padding: 88px 6%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;  position: relative;
}

.how-section > * {
  position: relative;
  z-index: 1;
}

.how-section .tc {
  max-width: 1400px;
  margin: 0 auto;}

.how-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.how-section .section-label.blue {
  color: var(--blue);
}

.how-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 52px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border-2);
  z-index: 0;
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .steps-grid::before {
    display: none;
  }
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--ink-3);
  transition: all 0.2s;
}

.step:hover .step-num {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-lt);
}

.step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.step p {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 480px) {
  .how-section {
    padding: 64px 5%;
  }

  .step {
    padding: 0;
  }
}
/* Benefits Section */
.benefit-section {
  width: 100vw;
  padding: 88px 6%;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.benefit-section > * {
  position: relative;
  z-index: 1;
}

.benefit-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 30%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(21, 99, 213, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.benefit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .benefit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.benefit-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F97316;
  margin-bottom: 12px;
}

.benefit-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: #fff;
}

.benefit-section .section-sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.72;
  font-weight: 300;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.benefit-grid.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.benefit-card .pct {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #F97316;
  line-height: 1;
  margin-bottom: 8px;
}

.benefit-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.benefit-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  font-weight: 300;
}

@media (max-width: 480px) {
  .benefit-section {
    padding: 64px 5%;
  }
}
/* Modules Section */
.modules-section {
  width: 100vw;
  padding: 88px 6%;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.modules-section > * {
  position: relative;
  z-index: 1;
}

.modules-section .tc {
  max-width: 1400px;
  margin: 0 auto;
}

.modules-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.modules-section .section-label.blue {
  color: var(--blue);
}

.modules-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.modules-table {
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  max-width: 1400px;
}

.modules-table.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.mt-header {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  background: var(--ink);
  padding: 16px 24px;
  gap: 16px;
}

@media (max-width: 600px) {
  .mt-header {
    grid-template-columns: 1fr 2fr;
  }

  .mt-header .col-status {
    display: none;
  }
}

.mt-header span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.mt-row {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  padding: 16px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
  align-items: center;
  transition: background 0.15s;
}

@media (max-width: 600px) {
  .mt-row {
    grid-template-columns: 1fr 2fr;
  }

  .mt-row .col-status {
    display: none;
  }
}

.mt-row:hover {
  background: var(--surface-2);
}

.mt-row .mod-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mod-icon-sm {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.mt-row .mod-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 300;
}

.badge-std {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--blue-lt);
  color: var(--blue);
  white-space: nowrap;
}

.badge-custom {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--orange-lt);
  color: var(--orange);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .modules-section {
    padding: 64px 5%;
  }

  .mt-header,
  .mt-row {
    padding: 12px 16px;
  }
}
/* CTA & Contact Section */
.cta-section {
  width: 100vw;
  padding: 88px 6%;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-section.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 1200px;
}

.cta-section p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 900px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.contact-strip {
  width: 100vw;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 56px 6%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

@media (max-width: 480px) {
  .contact-strip {
    padding: 36px 5%;
  }
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.contact-block .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 6px;
}

.contact-block .val {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.contact-block a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-block a:hover {
  color: #1051b8;
}

@media (max-width: 480px) {
  .cta-section {
    padding: 64px 5%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn-lg {
    justify-content: center;
    width: 100%;
  }
}
/* Hero Marine */
.hero-marine {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a1628;
  margin-top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-marine .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-marine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.5) 55%, transparent 100%);
  z-index: 1;
}

.hero-marine::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
  z-index: 1;
}

.hero-marine .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 80px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  margin-top: 64px;
}

.hero-marine .hero-content.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.hero-marine .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-marine .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-marine .breadcrumb a:hover {
  color: #fff;
}

.hero-marine .breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.hero-marine .industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.2);
  border: 1px solid rgba(14, 165, 233, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.hero-marine .industry-badge span {
  font-size: 11.5px;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-marine h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 18px;
  word-break: break-word;
}

.hero-marine h1 em {
  font-style: normal;
  color: #38bdf8;
}

.hero-marine .hero-sub {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-marine .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-marine {
    margin-top: 56px;
  }
}

@media (max-width: 480px) {
  .hero-marine .hero-content {
    padding: 0 5% 60px;
  }

  .hero-marine .hero-actions {
    flex-direction: column;
  }

  .hero-marine .hero-actions .btn-lg {
    justify-content: center;
  }

  .hero-marine h1 {
    font-size: 36px;
  }
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Marine Pain Points - inherits from global pain-section styles */
/* Marine Solutions - inherits from global solutions-section styles */
.badge-marine {
  background: var(--sea-lt);
  color: #0369a1;
}

.badge-absenx {
  background: #f0fdf4;
  color: #16a34a;
}
/* Marine Process - inherits from global how-section styles */
/* Marine Benefits - inherits from global benefit-section styles */
/* Pricing Section */
.pricing-section {
  width: 100vw;
  padding: 72px 6%;
  background: var(--surface);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.pricing-section > .tc {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 14px;
  display: inline-block;
}

.pricing-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}

.pricing-section .section-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.72;
  font-weight: 300;
  margin: 0 auto;
  max-width: 600px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-section {
    padding: 48px 5%;
  }
}

/* Pricing Card */
.pricing-card {
  position: relative;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
  overflow: hidden;
}

.pricing-card.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover:not(.featured) {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 2px solid var(--blue);
  background: linear-gradient(135deg, rgba(21, 99, 213, 0.04) 0%, rgba(14, 165, 233, 0.02) 100%);
  box-shadow: 0 8px 32px rgba(21, 99, 213, 0.12);
}

.pricing-card.featured:hover {
  box-shadow: 0 12px 48px rgba(21, 99, 213, 0.16);
  transform: translateY(-8px);
}

/* Pricing Badge */
.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

/* Pricing Tier */
.pricing-tier {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  margin-top: 8px;
}

.tier-icon {
  font-size: 28px;
}

.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
}

.tier-timeline {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 14px;
}

/* Pricing Divider */
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* Pricing Row */
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 14px;
  gap: 12px;
}

.pricing-row:last-of-type:not(:has(.pricing-cta)) {
  border-bottom: none;
}

.pricing-row .pricing-feature {
  flex: 1;
  text-align: left;
  color: var(--ink-2);
}

.pricing-row .pricing-feature.head {
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  padding-top: 12px;
}

.pricing-val {
  flex-shrink: 0;
  font-weight: 600;
  text-align: center;
  min-width: 60px;
}

.pricing-val.check {
  color: #10b981;
  font-size: 16px;
}

.pricing-val.cross {
  color: #ef4444;
  font-size: 16px;
}

.pricing-val.semi {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.pricing-val.bold {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

/* Pricing CTA */
.pricing-cta {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
}

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

.pricing-cta .btn-primary {
  background: var(--blue);
}

.pricing-cta .btn-primary:hover {
  background: #1051b8;
  box-shadow: 0 4px 14px rgba(21, 99, 213, 0.3);
}

.pricing-cta .btn-outline-dark:hover {
  background: var(--surface);
  border-color: var(--ink);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 4%;
  }
  
  .pricing-section h2 {
    font-size: 28px;
  }
  
  .pricing-card {
    padding: 20px;
  }
  
  .pricing-row {
    padding: 10px 0;
    font-size: 13px;
  }
  
  .tier-name {
    font-size: 20px;
  }
}
/* Marine Modules - inherits from global modules-section styles */
.badge-marinex {
  background: var(--sea-lt);
  color: #0369a1;
}
/* Marine CTA - inherits from global cta-section styles */
/* ═══ MARINEX SUITE STYLING ═══════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--marinex-navy);
  color: var(--marinex-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --marinex-navy: #050F1E;
  --marinex-navy2: #091624;
  --marinex-navy3: #0D2340;
  --marinex-ocean: #0B4F82;
  --marinex-sky: #1A8FD1;
  --marinex-cyan: #00C2E0;
  --marinex-teal: #00B4A0;
  --marinex-amber: #F5A623;
  --marinex-green: #22C55E;
  --marinex-red: #EF4444;
  --marinex-blue: #60A5FA;
  --marinex-white: #FFFFFF;
  --marinex-w90: rgba(255,255,255,0.90);
  --marinex-w80: rgba(255,255,255,0.80);
  --marinex-w60: rgba(255,255,255,0.60);
  --marinex-w40: rgba(255,255,255,0.40);
  --marinex-w20: rgba(255,255,255,0.20);
  --marinex-w12: rgba(255,255,255,0.12);
  --marinex-w08: rgba(255,255,255,0.08);
  --marinex-w05: rgba(255,255,255,0.05);
  --marinex-r: 10px;
  --marinex-r-lg: 16px;
  --marinex-r-xl: 24px;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: all .18s;
  text-decoration: none;
}

.btn-cyan {
  background: var(--marinex-cyan);
  color: var(--marinex-navy);
}

.btn-cyan:hover {
  background: #00d4f8;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 194, 224, 0.3);
}

.btn-ghost {
  background: var(--marinex-w08);
  color: #fff;
  border: 1px solid var(--marinex-w20);
}

.btn-ghost:hover {
  background: var(--marinex-w12);
  border-color: var(--marinex-w40);
}

.btn-lg {
  padding: 13px 30px;
  font-size: 15px;
  border-radius: 12px;
  white-space: nowrap;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.marinex-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 6% 72px;
  overflow: hidden;
  text-align: center;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.marinex-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% -5%, rgba(11, 79, 130, 0.55) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(0, 194, 224, 0.07) 0%, transparent 60%),
    var(--marinex-navy);
}

.marinex-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--marinex-w05) 1px, transparent 1px),
    linear-gradient(90deg, var(--marinex-w05) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: marinex-gridMove 25s linear infinite;
}

@keyframes marinex-gridMove {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

.marinex-hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  width: 100%;
  padding: 0 20px;
}

.marinex-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(0, 194, 224, 0.10);
  border: 1px solid rgba(0, 194, 224, 0.28);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--marinex-cyan);
  margin-bottom: 22px;
}

.marinex-badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--marinex-cyan);
  flex-shrink: 0;
  animation: marinex-pulse 2.2s ease infinite;
}

@keyframes marinex-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(1.5); }
}

.marinex-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 20px;
}

.marinex-hero h1 em {
  font-style: normal;
  color: var(--marinex-cyan);
}

.marinex-hero-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--marinex-w80);
  line-height: 1.78;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 44px;
}

/* ── MODULE BUTTONS GRID ─────────────────────────────────────────── */
.marinex-mods-label {
  position: relative;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--marinex-w40);
  margin-bottom: 18px;
  width: 100%;
  text-align: center;
}

.marinex-mods-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 800px;
  width: 100%;
  margin-bottom: 44px;
}

.marinex-mod-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 20px 10px 18px;
  border-radius: 18px;
  border: 1px solid var(--marinex-w12);
  background: var(--marinex-w05);
  cursor: pointer;
  transition: all .22s ease;
  position: relative;
  overflow: visible;
  text-decoration: none;
  color: inherit;
}

.marinex-mod-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: .22s;
}

.marinex-mod-btn:hover {
  transform: translateY(-5px) scale(1.04);
}

.marinex-mod-btn:active {
  transform: translateY(-2px) scale(1.01);
}

/* Color variants */
.mc-cyan::before { background: linear-gradient(90deg, transparent, var(--marinex-cyan), transparent); }
.mc-cyan:hover { background: rgba(0, 194, 224, 0.09); border-color: rgba(0, 194, 224, 0.38); }
.mc-cyan:hover::before { opacity: 1; }
.mc-cyan .marinex-mod-ico-bg { background: rgba(0, 194, 224, 0.12); }

.mc-amber::before { background: linear-gradient(90deg, transparent, var(--marinex-amber), transparent); }
.mc-amber:hover { background: rgba(245, 166, 35, 0.09); border-color: rgba(245, 166, 35, 0.38); }
.mc-amber:hover::before { opacity: 1; }
.mc-amber .marinex-mod-ico-bg { background: rgba(245, 166, 35, 0.12); }

.mc-teal::before { background: linear-gradient(90deg, transparent, var(--marinex-teal), transparent); }
.mc-teal:hover { background: rgba(0, 180, 160, 0.09); border-color: rgba(0, 180, 160, 0.38); }
.mc-teal:hover::before { opacity: 1; }
.mc-teal .marinex-mod-ico-bg { background: rgba(0, 180, 160, 0.12); }

.mc-red::before { background: linear-gradient(90deg, transparent, var(--marinex-red), transparent); }
.mc-red:hover { background: rgba(239, 68, 68, 0.09); border-color: rgba(239, 68, 68, 0.38); }
.mc-red:hover::before { opacity: 1; }
.mc-red .marinex-mod-ico-bg { background: rgba(239, 68, 68, 0.12); }

.mc-blue::before { background: linear-gradient(90deg, transparent, var(--marinex-blue), transparent); }
.mc-blue:hover { background: rgba(96, 165, 250, 0.09); border-color: rgba(96, 165, 250, 0.38); }
.mc-blue:hover::before { opacity: 1; }
.mc-blue .marinex-mod-ico-bg { background: rgba(96, 165, 250, 0.12); }

.mc-green::before { background: linear-gradient(90deg, transparent, var(--marinex-green), transparent); }
.mc-green:hover { background: rgba(34, 197, 94, 0.09); border-color: rgba(34, 197, 94, 0.38); }
.mc-green:hover::before { opacity: 1; }
.mc-green .marinex-mod-ico-bg { background: rgba(34, 197, 94, 0.12); }

.marinex-mod-ico-bg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: .22s;
  flex-shrink: 0;
}

.marinex-mod-btn:hover .marinex-mod-ico-bg {
  transform: scale(1.10);
}

.marinex-mod-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--marinex-w90);
  text-align: center;
  line-height: 1.25;
  letter-spacing: .01em;
}

.marinex-mod-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--marinex-w40);
  text-align: center;
}

/* Tooltip */
.marinex-tip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0D1E33;
  border: 1px solid rgba(0, 194, 224, 0.22);
  border-radius: 12px;
  padding: 11px 14px;
  min-width: 175px;
  max-width: 210px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, visibility .18s;
  z-index: 400;
  text-align: left;
}

.marinex-mod-btn:hover .marinex-tip {
  opacity: 1;
  visibility: visible;
}

.marinex-tip-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.marinex-tip-desc {
  font-size: 11px;
  color: var(--marinex-w60);
  line-height: 1.55;
}

.marinex-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #0D1E33;
}

/* Hero CTA & stats */
.marinex-hero-cta {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
  width: 100%;
}

.marinex-cta-btn {
  min-width: auto;
}

.marinex-hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 36px;
  border-top: 1px solid var(--marinex-w12);
  width: 100%;
  max-width: 600px;
}

.marinex-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--marinex-cyan);
  line-height: 1;
}

.marinex-stat-lbl {
  font-size: 10.5px;
  color: var(--marinex-w40);
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Scroll cue */
.marinex-hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
  animation: marinex-bob 2.2s ease-in-out infinite;
}

.marinex-hero-scroll span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--marinex-w40);
}

.marinex-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--marinex-w40), transparent);
}

@keyframes marinex-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION BASE ────────────────────────────────────────────────── */
.marinex-modules-sec,
.marinex-platform-sec,
.marinex-why-sec,
.marinex-tech-sec,
.marinex-cta-sec,
.marinex-contact-strip {
  padding: 88px 6%;
  position: relative;
  background: var(--marinex-navy);
  width: 100%;
}

.marinex-modules-sec {
  background: var(--marinex-navy2);
  padding: 88px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.marinex-why-sec {
  background: var(--marinex-navy2);
}

.marinex-sec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--marinex-cyan);
  margin-bottom: 12px;
}

.marinex-modules-sec h2,
.marinex-platform-sec h2,
.marinex-why-sec h2,
.marinex-tech-sec h2,
.marinex-cta-sec h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.06;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 14px;
}

.marinex-sec-sub {
  font-size: 15.5px;
  color: var(--marinex-w80);
  line-height: 1.76;
  max-width: 540px;
  font-weight: 300;
}

.marinex-tc {
  text-align: center;
  padding: 0 6%;
}

.marinex-tc .marinex-sec-sub {
  margin: 0 auto;
}

/* ── MODULES FULL SECTION ────────────────────────────────────────── */
.marinex-full-mods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 52px;
  padding: 0 6%;
}

.marinex-fmod-card {
  background: var(--marinex-w05);
  border: 1px solid var(--marinex-w12);
  border-radius: var(--marinex-r-lg);
  padding: 28px 22px;
  cursor: pointer;
  transition: .24s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.marinex-fmod-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: .24s;
}

.marinex-fmod-card:hover {
  transform: translateY(-3px);
  border-color: var(--marinex-w20);
  background: rgba(0, 194, 224, 0.05);
}

.marinex-fmod-card:hover::after {
  opacity: 1;
}

.marinex-fmod-card.ac::after { background: var(--marinex-cyan); }
.marinex-fmod-card.aa::after { background: var(--marinex-amber); }
.marinex-fmod-card.at::after { background: var(--marinex-teal); }
.marinex-fmod-card.ar::after { background: var(--marinex-red); }
.marinex-fmod-card.ab::after { background: var(--marinex-blue); }
.marinex-fmod-card.ag::after { background: var(--marinex-green); }

.marinex-fmod-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.marinex-fmod-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.marinex-fmod-card p {
  font-size: 12.5px;
  color: var(--marinex-w60);
  line-height: 1.65;
  font-weight: 400;
  flex: 1;
}

.marinex-fmod-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(0, 194, 224, 0.10);
  color: var(--marinex-cyan);
  letter-spacing: .05em;
  text-transform: uppercase;
  align-self: flex-start;
}

/* ── PLATFORM SECTION ────────────────────────────────────────────── */
.marinex-platform-sec {
  background: var(--marinex-navy);
  border-top: 1px solid var(--marinex-w12);
  border-bottom: 1px solid var(--marinex-w12);
}

.marinex-platform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.marinex-feat-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.marinex-feat-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.marinex-feat-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(0, 194, 224, 0.10);
  border: 1px solid rgba(0, 194, 224, 0.20);
}

.marinex-feat-row h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.marinex-feat-row p {
  font-size: 13px;
  color: var(--marinex-w60);
  line-height: 1.65;
  font-weight: 300;
}

/* Platform Visual */
.marinex-plat-visual {
  background: var(--marinex-navy2);
  border: 1px solid var(--marinex-w12);
  border-radius: var(--marinex-r-xl);
  padding: 28px;
  overflow: hidden;
  position: relative;
}

.marinex-plat-visual::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 224, 0.08), transparent 70%);
  pointer-events: none;
}

.marinex-map-box {
  background: var(--marinex-navy3);
  border-radius: 12px;
  height: 165px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.marinex-map-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 160, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 160, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

.marinex-vdot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: marinex-vdotpulse 3s ease infinite;
}

.marinex-vdot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .3;
  animation: marinex-vring 3s ease infinite;
}

@keyframes marinex-vdotpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

@keyframes marinex-vring {
  0% { transform: scale(1); opacity: .3; }
  100% { transform: scale(2.2); opacity: 0; }
}

.marinex-map-lbl {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--marinex-w40);
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
}

.marinex-pstat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.marinex-pstat {
  background: var(--marinex-navy3);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--marinex-w08);
}

.marinex-pstat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--marinex-cyan);
  line-height: 1;
}

.marinex-pstat-lbl {
  font-size: 9px;
  color: var(--marinex-w40);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}

.marinex-alert-panel {
  background: var(--marinex-navy3);
  border-radius: 10px;
  border: 1px solid var(--marinex-w08);
  padding: 14px;
}

.marinex-alert-panel-head {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--marinex-w40);
  margin-bottom: 10px;
  font-family: 'DM Mono', monospace;
}

.marinex-alert-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid var(--marinex-w05);
  font-size: 12px;
}

.marinex-alert-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.marinex-alert-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.marinex-alert-item span {
  color: var(--marinex-w80);
  line-height: 1.4;
}

/* ── WHY SECTION ─────────────────────────────────────────────────── */
.marinex-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 52px;
}

.marinex-why-card {
  background: var(--marinex-navy);
  border: 1px solid var(--marinex-w12);
  border-radius: var(--marinex-r-lg);
  padding: 28px;
  transition: .22s;
}

.marinex-why-card:hover {
  border-color: var(--marinex-w20);
  transform: translateY(-2px);
}

.marinex-why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: rgba(0, 194, 224, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.marinex-why-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.marinex-why-card p {
  font-size: 13px;
  color: var(--marinex-w60);
  line-height: 1.65;
  font-weight: 300;
}

/* ── TECH / INTEGRATION SECTION ──────────────────────────────────── */
.marinex-tech-sec {
  background: var(--marinex-navy);
  border-top: 1px solid var(--marinex-w12);
}

.marinex-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.marinex-tech-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  background: var(--marinex-w05);
  border: 1px solid var(--marinex-w12);
  border-radius: 10px;
  transition: .2s;
  cursor: default;
}

.marinex-tech-chip:hover {
  background: var(--marinex-w08);
  border-color: var(--marinex-w20);
}

.marinex-tech-chip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.marinex-tech-chip span {
  font-size: 13px;
  font-weight: 500;
  color: var(--marinex-w80);
}

/* ── CTA SECTION ─────────────────────────────────────────────────── */
.marinex-cta-sec {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--marinex-ocean) 0%, var(--marinex-navy3) 60%);
  border-top: 1px solid var(--marinex-w12);
  text-align: center;
  padding: 96px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.marinex-cta-sec::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 224, 0.12), transparent 70%);
  pointer-events: none;
}

.marinex-cta-sec h2 {
  color: #fff;
  margin-bottom: 14px;
  padding: 0 6%;
}

.marinex-cta-sec p {
  color: var(--marinex-w80);
  font-size: 16px;
  margin-bottom: 36px;
  font-weight: 300;
  padding: 0 6%;
}

.marinex-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 0 6%;
}

.marinex-cta-btn {
  position: relative;
  z-index: 1;
}

/* ── CONTACT ─────────────────────────────────────────────────────── */
.marinex-contact-strip {
  padding: 52px 6%;
  background: var(--marinex-navy2);
  border-top: 1px solid var(--marinex-w12);
}

.marinex-contact-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--marinex-w40);
  margin-bottom: 28px;
}

.marinex-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}

.marinex-cb .marinex-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--marinex-w40);
  margin-bottom: 6px;
}

.marinex-cb .marinex-val {
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.marinex-cb .marinex-val a {
  color: var(--marinex-cyan);
}

/* ── FADE IN ─────────────────────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.fi.fi-vis {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .marinex-platform-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 800px) {
  .marinex-modules-sec,
  .marinex-platform-sec,
  .marinex-why-sec,
  .marinex-tech-sec,
  .marinex-cta-sec,
  .marinex-contact-strip {
    padding: 60px 5%;
  }

  .marinex-hero {
    padding: 92px 5% 60px;
  }

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

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

@media (max-width: 520px) {
  .marinex-mods-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }

  .marinex-mod-btn {
    padding: 16px 8px 14px;
    border-radius: 14px;
  }

  .marinex-mod-ico-bg {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .marinex-mod-name {
    font-size: 10px;
  }

  .marinex-mod-sub {
    display: none;
  }

  .marinex-hero-stats {
    gap: 20px;
  }

  .marinex-hero h1 {
    font-size: clamp(28px, 4vw, 56px);
  }

  .marinex-hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .marinex-hero-cta .btn,
  .marinex-hero-cta .marinex-cta-btn,
  .marinex-cta-actions .btn-lg {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .marinex-tip {
    display: none;
  }
}
/* Hero Distribution */
.hero-distribution {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1410;
  margin-top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-distribution .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-distribution::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 20, 16, 0.85) 0%, rgba(26, 20, 16, 0.5) 55%, transparent 100%);
  z-index: 1;
}

.hero-distribution::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
  z-index: 1;
}

.hero-distribution .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 80px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  margin-top: 64px;
}

.hero-distribution .hero-content.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.hero-distribution .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-distribution .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.hero-distribution .breadcrumb a:hover {
  color: #fff;
}

.hero-distribution .breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
}

.hero-distribution .industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.2);
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.hero-distribution .industry-badge span {
  font-size: 11.5px;
  font-weight: 700;
  color: #fb923c;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-distribution h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 18px;
  word-break: break-word;
}

.hero-distribution h1 em {
  font-style: normal;
  color: #fb923c;
}

.hero-distribution .hero-sub {
  font-size: clamp(14px, 1.8vw, 16.5px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-distribution .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-distribution {
    margin-top: 56px;
  }
}

@media (max-width: 480px) {
  .hero-distribution .hero-content {
    padding: 0 5% 60px;
  }

  .hero-distribution .hero-actions {
    flex-direction: column;
  }
}

.btn-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  border: none;
}

.btn-orange:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.3);
}
/* Distribution Pain Points Section */
.pain-section {
  width: 100vw;
  padding: 72px 6%;
  background: var(--surface);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.pain-section > * {
  position: relative;
  z-index: 1;
}

.pain-section .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pain-section .inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.pain-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fb923c;
  margin-bottom: 12px;
}

.pain-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.pain-section .section-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-item {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pain-item.fi-vis {
  opacity: 1;
  transform: translateX(0);
}

.pain-icon {
  font-size: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.pain-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--text-primary);
}

.pain-item p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

.pain-visual {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pain-visual.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row .label {
  color: var(--ink-2);
}

.stat-row .value {
  font-weight: 600;
  color: #fb923c;
}

.stat-row .value.orange {
  color: #fb923c;
}

.stat-row .value.green {
  color: #22c55e;
}

@media (max-width: 768px) {
  .pain-section {
    padding: 48px 5%;
  }
}
/* Distribution Solutions */
.solutions-section {
  width: 100vw;
  padding: 72px 6%;
  background: var(--surface);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.solutions-section > * {
  position: relative;
  z-index: 1;
}

.solutions-section .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.solutions-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fb923c;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.solutions-section .section-label.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.solutions-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.solutions-section h2.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.solutions-section .section-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.solutions-section .section-sub.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.solution-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.solution-card.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.solution-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.card-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}

.badge {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.badge-odoo {
  background: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
}

.badge-iot {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
}

.badge-analytics {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.badge-integration {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

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

.card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 20px 0;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-features li {
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 48px 5%;
  }
}
/* Distribution Process */
.process-section {
  width: 100vw;
  padding: 72px 6%;
  background: var(--base);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.process-section > * {
  position: relative;
  z-index: 1;
}

.process-section .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.process-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fb923c;
  margin-bottom: 12px;
}

.process-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}

.process-timeline {
  margin-top: 60px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.process-step {
  position: relative;
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(249, 115, 22, 0.2);
  line-height: 1;
  margin-bottom: 4px;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.step-content p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 8px 0 0 0;
}

.step-connector {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.5), transparent);
  display: none;
}

@media (max-width: 768px) {
  .process-section {
    padding: 48px 5%;
  }

  .process-timeline {
    gap: 24px;
  }

  .step-connector {
    display: none;
  }
}
/* Distribution Benefits */
.benefits-section {
  width: 100vw;
  padding: 72px 6%;
  background: var(--surface);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.benefits-section > * {
  position: relative;
  z-index: 1;
}

.benefits-section .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fb923c;
  margin-bottom: 12px;
}

.benefits-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.benefits-section .section-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--card);
  border: 2px solid rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.benefit-card.fi-vis {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.05);
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.12);
}

.benefit-percentage {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.benefit-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 48px 5%;
  }
}
/* Distribution Modules */
.modules-section {
  width: 100vw;
  padding: 72px 6%;
  background: var(--base);
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.modules-section > * {
  position: relative;
  z-index: 1;
}

.modules-section .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.modules-section .section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fb923c;
  margin-bottom: 12px;
}

.modules-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}

.modules-list {
  display: grid;
  gap: 16px;
  margin-top: 48px;
}

.module-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}

.module-item.fi-vis {
  opacity: 1;
  transform: translateX(0);
}

.module-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.03);
}

.module-type {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  height: fit-content;
}

.module-content {
  flex: 1;
}

.module-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.module-content p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .modules-section {
    padding: 48px 5%;
  }

  .module-item {
    flex-direction: column;
    gap: 12px;
  }
}
/* Distribution CTA - inherits from global cta-section styles */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060D1A;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(21, 99, 213, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 99, 213, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 99, 213, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 6% 80px;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: 0.2s;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 99, 213, 0.15);
  border: 1px solid rgba(21, 99, 213, 0.35);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60a5fa;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-badge span {
  font-size: 11.5px;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 20px;
  word-break: break-word;
}

.hero-content h1 em {
  font-style: normal;
  color: #60a5fa;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.74;
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-metrics {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.metric .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  color: #fff;
  line-height: 1;
}

.metric .num sup {
  font-size: 14px;
  color: #60a5fa;
  font-family: 'Inter', sans-serif;
  vertical-align: super;
  line-height: 0;
}

.metric .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* floating code window */
.hero-code {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: none;
}

@media (min-width: 1100px) {
  .hero-code {
    display: block;
  }
}

.code-header {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-left: 4px;
  font-family: monospace;
}

.code-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  line-height: 1.85;
}

.c-k {
  color: #c084fc;
}
.c-f {
  color: #60a5fa;
}
.c-s {
  color: #34d399;
}
.c-n {
  color: #f472b6;
}
.c-c {
  color: #64748b;
}
.c-w {
  color: #e2e8f0;
}
.c-o {
  color: #fb923c;
}

@media (max-width: 480px) {
  .hero-content {
    padding: 96px 5% 60px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-lg {
    justify-content: center;
  }
  .hero-metrics {
    gap: 20px;
  }
}
section {
  padding: 88px 6%;
}

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

@media (max-width: 480px) {
  section {
    padding: 44px 5%;
  }
}

.section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1563d5;
  margin-bottom: 12px;
}

.section-label.green {
  color: #059669;
}

.section-label.purple {
  color: #7c3aed;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: #0d1117;
}

.section-sub {
  font-size: 15.5px;
  color: #3d4a5c;
  line-height: 1.72;
  font-weight: 300;
}

.tc {
  text-align: center;
}

.tc .section-sub {
  margin: 0 auto;
  max-width: 560px;
}

/* ── PROCESS / HOW WE WORK ──────────────────────────────── */
.process-section {
  background: #ffffff;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, #eaf0fd, #1563d5, #f5f3ff);
  z-index: 0;
  border-radius: 2px;
}

@media (max-width: 700px) {
  .process-flow {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-flow::before {
    display: none;
  }
}

@media (max-width: 400px) {
  .process-flow {
    grid-template-columns: 1fr;
  }
}

.pstep {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.pstep-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  border: 2px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pstep:hover .pstep-num {
  border-color: #1563d5;
  box-shadow: 0 0 0 6px #eaf0fd;
}

.pstep-icon {
  font-size: 26px;
}

.pstep h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 8px;
}

.pstep p {
  font-size: 12.5px;
  color: #3d4a5c;
  line-height: 1.6;
  font-weight: 300;
}

.pstep-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 8px;
  background: #eaf0fd;
  color: #1563d5;
  letter-spacing: 0.04em;
}

.pstep-tag.paid {
  background: #ecfdf5;
  color: #059669;
}
/* MOCKUP SPOTLIGHT */
.mockup-section {
  background: #f7f8fa;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 0;
}

.mockup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 6%;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  .mockup-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 5%;
  }
}

.mockup-why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mw-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.mw-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mw-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 4px;
}

.mw-item p {
  font-size: 13px;
  color: #3d4a5c;
  line-height: 1.65;
  font-weight: 300;
}

/* mockup preview card */
.mockup-preview {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.mp-topbar {
  background: #1e293b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mp-url {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
  flex: 1;
  text-align: center;
}

.mp-body {
  padding: 0;
}

.mp-nav {
  background: #f8fafc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-logo {
  font-size: 12px;
  font-weight: 800;
  color: #0d1117;
  letter-spacing: -0.5px;
}

.mp-nav-links {
  display: flex;
  gap: 16px;
}

.mp-nav-links span {
  font-size: 10px;
  color: #8896a8;
  font-weight: 500;
}

.mp-nav-links span.active {
  color: #1563d5;
  font-weight: 700;
  border-bottom: 2px solid #1563d5;
  padding-bottom: 2px;
}

.mp-content {
  padding: 16px;
}

.mp-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mp-kpi {
  background: #f7f8fa;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.mp-kpi .val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #1563d5;
  line-height: 1;
}

.mp-kpi .label {
  font-size: 9.5px;
  color: #8896a8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.mp-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 10px;
  background: #0d1117;
  border-radius: 6px;
  margin-bottom: 6px;
}

.mp-table-head span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.mp-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.15s;
}

.mp-table-row:nth-child(odd) {
  background: #f7f8fa;
}

.mp-table-row span {
  font-size: 10.5px;
  color: #3d4a5c;
}

.mp-table-row span.name {
  font-weight: 600;
  color: #0d1117;
}

.mp-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
}

.badge-done {
  background: #dcfce7;
  color: #166534;
}

.badge-prog {
  background: #fef9c3;
  color: #854d0e;
}

.badge-pend {
  background: #f1f5f9;
  color: #64748b;
}

.mp-footer {
  padding: 10px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mp-footer span {
  font-size: 10px;
  color: #8896a8;
}
/* ── TECH STACK ──────────────────────────────────────────── */
.tech-section {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.tech-section > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  width: 100%;
}

.tech-section > div:first-child {
  padding-top: 88px;
}

.tech-section > div:last-child {
  padding-bottom: 88px;
}

.tech-category {
  margin-bottom: 44px;
}

.tech-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.tech-cat-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.tech-cat-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8896a8;
}

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

.tech-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: #f7f8fa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 9px;
  transition: 0.2s;
  cursor: default;
  position: relative;
}

.tech-chip:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.tech-chip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.tech-chip-name {
  font-size: 13px;
  font-weight: 600;
  color: #3d4a5c;
}

.tech-chip-tag {
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 5px;
  margin-left: 4px;
}

.tag-core {
  background: #eaf0fd;
  color: #1563d5;
}

.tag-infra {
  background: #ecfdf5;
  color: #059669;
}

.tag-db {
  background: #f5f3ff;
  color: #7c3aed;
}

/* expertise grid */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.exp-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 24px;
  transition: 0.25s;
}

.exp-card:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.exp-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.exp-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.exp-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1117;
}

.exp-card p {
  font-size: 13px;
  color: #3d4a5c;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 14px;
}

.exp-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #3d4a5c;
}

.exp-feat::before {
  content: '✓';
  font-size: 10px;
  font-weight: 700;
  color: #1563d5;
  background: #eaf0fd;
  border-radius: 4px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* ── PORTFOLIO / PROJECT TYPES ──────────────────────────── */
.portfolio-section {
  background: #f7f8fa;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 0;
  position: relative;
  max-width: 100%;
}

.portfolio-section > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  width: 100%;
}

.portfolio-section > div:first-child {
  padding-top: 88px;
}

.portfolio-section > div:last-child {
  padding-bottom: 88px;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.proj-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.2s;
}

.proj-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.12);
}

.proj-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.proj-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
}

.proj-body {
  padding: 20px;
}

.proj-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.proj-tag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  background: #eff1f5;
  color: #8896a8;
}

.proj-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 6px;
}

.proj-card p {
  font-size: 13px;
  color: #3d4a5c;
  line-height: 1.6;
  font-weight: 300;
}

.proj-stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.stack-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f7f8fa;
  color: #8896a8;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.purple {
  color: #7c3aed;
}
/* ── PRICING MOCKUP ─────────────────────────────────────── */
.pricing-section {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.price-card {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 28px;
  transition: 0.2s;
  position: relative;
}

.price-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: #1563d5;
  transform: translateY(-3px);
}

.price-card.featured {
  border-color: #1563d5;
  background: linear-gradient(135deg, #1563d5 0%, #0e4bb0 100%);
  color: #fff;
}

.price-card.featured .price-sub,
.price-card.featured .price-feat {
  color: rgba(255, 255, 255, 0.75);
}

.price-rec {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #059669;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.price-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.price-sub {
  font-size: 13px;
  color: #3d4a5c;
  margin-bottom: 20px;
  font-weight: 300;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.price-currency {
  font-size: 14px;
  font-weight: 600;
  color: #1563d5;
}

.price-card.featured .price-currency {
  color: rgba(255, 255, 255, 0.8);
}

.price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #0d1117;
}

.price-card.featured .price-num {
  color: #fff;
}

.price-unit {
  font-size: 12px;
  color: #8896a8;
  font-weight: 300;
}

.price-card.featured .price-unit {
  color: rgba(255, 255, 255, 0.6);
}

.price-feats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.price-feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #3d4a5c;
  font-weight: 300;
}

.price-feat-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: 0.2s;
  text-align: center;
  display: block;
  text-decoration: none;
}

.price-btn-outline {
  background: transparent;
  color: #1563d5;
  border: 2px solid #1563d5;
}

.price-btn-outline:hover {
  background: #1563d5;
  color: #fff;
}

.price-btn-solid {
  background: #fff;
  color: #1563d5;
}

.price-btn-solid:hover {
  background: rgba(255, 255, 255, 0.9);
}

.price-note {
  margin-top: 32px;
  padding: 20px;
  background: #f7f8fa;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  text-align: center;
}

.price-note p {
  font-size: 13.5px;
  color: #3d4a5c;
  line-height: 1.65;
  font-weight: 300;
}

.price-note strong {
  color: #0d1117;
  font-weight: 700;
}

.green {
  color: #059669;
}
/* ── WHY US ──────────────────────────────────────────────── */
.why-section {
  background: #0d1117;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 99, 213, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.why-section section {
  padding: 88px 6%;
}

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

@media (max-width: 480px) {
  .why-section section {
    padding: 44px 5%;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: 0.2s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  font-weight: 300;
}

.why-section .section-label {
  color: #60a5fa;
}

.why-section h2 {
  color: #fff;
}
/* ── CTA ─────────────────────────────────────────────────── */
.cta-section {
  padding: 88px 6%;
  text-align: center;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.cta-section h2 {
  color: #0d1117;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 16px;
  color: #3d4a5c;
  margin-bottom: 36px;
  font-weight: 300;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: 0.15s;
  text-decoration: none;
}

.btn-primary {
  background: #1563d5;
  color: #fff;
}

.btn-primary:hover {
  background: #1051b8;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 99, 213, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

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

.btn-outline-dark {
  background: transparent;
  color: #0d1117;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
}

.btn-outline-dark:hover {
  border-color: #8896a8;
  background: #f7f8fa;
}

.btn-green {
  background: #059669;
  color: #fff;
}

.btn-green:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .cta-section {
    padding: 44px 5%;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn-lg {
    justify-content: center;
  }
}
/* Custom Dev Page Global Styles */

:root {
  --ink: #0D1117;
  --ink-2: #3D4A5C;
  --ink-3: #8896A8;
  --surface: #FFFFFF;
  --surface-2: #F7F8FA;
  --surface-3: #EFF1F5;
  --blue: #1563D5;
  --blue-lt: #EAF0FD;
  --red: #D4271C;
  --green: #059669;
  --green-lt: #ECFDF5;
  --purple: #7C3AED;
  --purple-lt: #F5F3FF;
  --border: rgba(0, 0, 0, 0.07);
  --border-2: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
  --r: 10px;
  --r-lg: 16px;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060D1A;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.tech-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(21, 99, 213, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 99, 213, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 30%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 99, 213, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -10%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 6% 80px;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  transition: 0.2s;
}

.breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 99, 213, 0.15);
  border: 1px solid rgba(21, 99, 213, 0.35);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60A5FA;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-badge span {
  font-size: 11.5px;
  font-weight: 700;
  color: #60A5FA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 20px;
  word-break: break-word;
}

.hero-content h1 em {
  font-style: normal;
  color: #60A5FA;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.74;
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-metrics {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.metric .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  color: #fff;
  line-height: 1;
}

.metric .num sup {
  font-size: 14px;
  color: #60A5FA;
  font-family: 'Inter', sans-serif;
  vertical-align: super;
  line-height: 0;
}

.metric .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Floating code window */
.hero-code {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  background: #0F172A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: none;
}

@media (min-width: 1100px) {
  .hero-code {
    display: block;
  }
}

.code-header {
  background: #1E293B;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.code-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-left: 4px;
  font-family: monospace;
}

.code-body {
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 12.5px;
  line-height: 1.85;
}

.c-k {
  color: #C084FC;
}
.c-f {
  color: #60A5FA;
}
.c-s {
  color: #34D399;
}
.c-n {
  color: #F472B6;
}
.c-c {
  color: #64748B;
}
.c-w {
  color: #E2E8F0;
}
.c-o {
  color: #FB923C;
}

@media (max-width: 480px) {
  .hero-content {
    padding: 96px 5% 60px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn-lg {
    justify-content: center;
  }
  .hero-metrics {
    gap: 20px;
  }
}

/* ── SECTIONS ──────────────────────────────────────────── */
section {
  padding: 88px 6%;
}

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

@media (max-width: 480px) {
  section {
    padding: 44px 5%;
  }
}

.section-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-label.green {
  color: var(--green);
}

.section-label.purple {
  color: var(--purple);
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--ink);
}

.section-sub {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.72;
  font-weight: 300;
}

.tc {
  text-align: center;
}

.tc .section-sub {
  margin: 0 auto;
  max-width: 560px;
}

/* ── ANIMATIONS ──────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fi.vis {
  opacity: 1;
  transform: none;
}
/* Blog Page Styles */

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

.blog-page {
  background: #ffffff;
}

/* Breadcrumb - Hide initially, show in hero */
.blog-breadcrumb {
  background: transparent;
  padding: 0;
  border-bottom: none;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 10;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-container a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-container a:hover {
  color: #fff;
}

.breadcrumb-container span {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.blog-hero {
  position: relative;
  width: 100vw;
  height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -80px;
  padding-top: 80px;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/image/blog/blog.png') center/cover no-repeat;
  filter: brightness(0.55);
  z-index: 0;
}

.blog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  z-index: 1;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6%;
  max-width: 720px;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.blog-hero h1 {
  font-size: clamp(24px, 3vw, 40px);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: white;
}

.blog-hero p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 24px;
  opacity: 0.95;
  color: white;
}

.blog-search {
  position: relative;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  color: var(--ink);
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-2);
  pointer-events: none;
}

/* Featured Articles */
.featured-articles {
  width: 100vw;
  padding: 80px 6%;
  background: white;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-articles h2 {
  font-size: 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--ink);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 32px;
}

.featured-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8EAED;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featured-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(21, 99, 213, 0.1);
  transform: translateY(-4px);
}

.featured-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #F7F8FA;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.featured-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.category-badge {
  background: #E3F2FD;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.read-time {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}

.featured-content h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 14px;
  flex-grow: 1;
}

.featured-content p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E8EAED;
  padding-top: 16px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.author {
  color: var(--ink-2);
  font-weight: 500;
}

.date {
  color: var(--ink-3);
}

.read-more {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--ink);
}

/* Main Blog Section */
.blog-main {
  width: 100vw;
  padding: 60px 6%;
  background: #F7F8FA;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.filter-section,
.popular-section,
.newsletter-section {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #E8EAED;
}

.filter-section h3,
.popular-section h3,
.newsletter-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

.category-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-btn {
  background: white;
  border: 1px solid #E8EAED;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.category-btn:hover {
  background: #F5F7FA;
  border-color: var(--blue);
  color: var(--blue);
}

.category-btn.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.popular-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popular-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.popular-item:hover {
  background: #F5F7FA;
  border-left-color: var(--blue);
  transform: translateX(4px);
}

.popular-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.popular-date {
  font-size: 12px;
  color: var(--ink-3);
}

.newsletter-section p {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.5;
}

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

.newsletter-form input {
  padding: 10px 12px;
  border: 1px solid #E8EAED;
  border-radius: 6px;
  font-size: 13px;
  background: #F7F8FA;
  color: var(--ink);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  background: white;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 99, 213, 0.1);
}

.newsletter-form button {
  padding: 10px 14px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #0D47A1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 99, 213, 0.2);
}

/* Article List */
.blog-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E8EAED;
  display: grid;
  grid-template-columns: 240px 1fr;
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.article-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #F7F8FA;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.08);
}

.article-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.category-tag {
  background: #E3F2FD;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.read-time-sm {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}

.article-info h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.article-card:hover .article-info h2 {
  color: var(--blue);
}

.article-info p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.article-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E8EAED;
  padding-top: 14px;
}

.meta-info {
  font-size: 12px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-sep {
  color: var(--ink-3);
}

.read-btn {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.read-btn:hover {
  color: var(--ink);
}

/* No Results */
.no-results {
  background: white;
  padding: 60px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #E8EAED;
}

.no-results p {
  font-size: 16px;
  color: var(--ink-2);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
}

.page-btn {
  background: white;
  border: 1px solid #E8EAED;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-2);
  transition: all 0.3s ease;
}

.page-btn:hover {
  background: #F5F7FA;
  border-color: var(--blue);
  color: var(--blue);
}

.page-btn.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.page-ellipsis {
  color: var(--ink-3);
}

/* CTA Section */
.blog-cta {
  width: 100vw;
  background: linear-gradient(135deg, rgba(21, 99, 213, 0.8) 0%, rgba(13, 71, 161, 0.8) 100%), 
              url('/image/blog/blog.png') center/cover no-repeat;
  background-attachment: fixed;
  padding: 80px 6%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: relative;
  color: white;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

.btn {
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: white;
  color: var(--blue);
  border-color: white;
}

.btn-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--blue);
  border-color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-hero {
    height: 300px;
    margin-top: -80px;
    padding-top: 80px;
  }

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

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

  .blog-sidebar {
    order: 2;
  }

  .blog-content {
    order: 1;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-image {
    min-height: 240px;
  }
}

@media (max-width: 800px) {
  .blog-hero {
    height: 260px;
    margin-top: -80px;
    padding-top: 80px;
  }

  .blog-hero h1 {
    font-size: 20px;
  }

  .blog-hero p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .blog-search {
    display: none;
  }

  .featured-articles {
    padding: 60px 5%;
  }

  .featured-articles h2 {
    font-size: 24px;
  }

  .featured-grid {
    gap: 24px;
  }

  .blog-main {
    padding: 40px 5%;
  }

  .blog-container {
    gap: 24px;
  }

  .article-footer,
  .article-footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .article-footer-main {
    border-top: none;
    padding-top: 0;
  }

  .blog-cta {
    padding: 60px 5%;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

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

  .breadcrumb-container {
    font-size: 11px;
    padding: 0 5%;
  }

  .blog-hero {
    height: 220px;
    margin-top: -80px;
    padding-top: 80px;
  }

  .blog-hero h1 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .blog-hero p {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .blog-search {
    display: none;
  }

  .featured-articles {
    padding: 40px 5%;
  }

  .featured-articles h2 {
    font-size: 20px;
  }

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

  .featured-image {
    height: 200px;
  }

  .featured-content {
    padding: 16px;
  }

  .featured-content h3 {
    font-size: 16px;
  }

  .featured-content p {
    font-size: 13px;
  }

  .blog-main {
    padding: 32px 5%;
  }

  .blog-sidebar {
    display: none;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-image {
    min-height: 160px;
  }

  .article-info {
    padding: 16px;
  }

  .article-info h2 {
    font-size: 16px;
  }

  .article-info p {
    font-size: 13px;
  }

  .pagination {
    gap: 8px;
    flex-wrap: wrap;
  }

  .page-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .blog-cta {
    padding: 40px 5%;
  }

  .cta-content h2 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Blog Detail Page Styles */
.blog-detail-page {
  background: #ffffff;
}

.blog-detail-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 6% 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
}

.blog-detail-article {
  min-width: 0;
}

/* Article Header */
.article-detail-header {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.article-header-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.article-detail-header h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

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

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.author-text {
  display: flex;
  flex-direction: column;
}

.author-text strong {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}

.published-date {
  font-size: 13px;
  color: #888;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s;
  text-decoration: none;
}

.share-btn:hover {
  background: var(--blue);
  color: white;
}

/* Featured Image */
.article-featured-image {
  margin: 40px 0 60px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Article Body */
.article-body {
  line-height: 1.8;
  color: #4b5563;
  font-size: 16px;
}

.article-body h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin: 48px 0 24px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.article-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 16px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.article-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 12px;
}

.article-body p {
  margin-bottom: 20px;
  color: #4b5563;
}

.article-body ul,
.article-body ol {
  margin: 20px 0 20px 32px;
  padding: 0;
}

.article-body ul li,
.article-body ol li {
  margin-bottom: 12px;
  padding-left: 8px;
}

.article-body ul li strong,
.article-body ol li strong {
  color: var(--ink);
}

/* Article Metadata */
.article-metadata {
  margin: 60px 0 40px;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.article-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tag {
  background: #f3f4f6;
  color: #666;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.tag:hover {
  background: var(--blue);
  color: white;
}

/* Related Articles */
.related-articles {
  margin: 60px 0;
}

.related-articles h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 32px;
  font-family: 'Bebas Neue', sans-serif;
}

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

.related-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(21, 99, 213, 0.1);
}

.related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.related-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 20px 20px 12px;
  margin: 0;
}

.related-card p {
  font-size: 13px;
  color: #888;
  padding: 0 20px;
  margin: 0 0 16px;
}

.related-card a {
  color: var(--blue);
  font-weight: 600;
  padding: 0 20px 20px;
  display: block;
  text-decoration: none;
  transition: color 0.2s;
}

.related-card:hover a {
  color: #0d47a1;
}

/* Sidebar */
.blog-detail-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-cta {
  background: var(--blue);
  color: white;
  padding: 28px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sidebar-cta h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.sidebar-cta p {
  font-size: 14px;
  margin: 0 0 20px;
  opacity: 0.95;
}

.sidebar-cta .btn {
  display: block;
  text-align: center;
}

.sidebar-section {
  background: #f9fafb;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.sidebar-section h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  color: var(--blue);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.toc-list a:hover {
  color: #0d47a1;
}

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

.author-avatar-lg {
  width: 80px;
  height: 80px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.author-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

.author-card p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 800px) {
  .blog-detail-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 6% 40px;
  }

  .blog-detail-sidebar {
    position: static;
    top: auto;
  }

  .article-detail-header h1 {
    font-size: 36px;
  }

  .article-body h2 {
    font-size: 24px;
    margin: 32px 0 16px;
  }

  .article-body h3 {
    font-size: 20px;
    margin: 24px 0 12px;
  }

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

@media (max-width: 480px) {
  .blog-detail-container {
    padding: 40px 5% 30px;
    gap: 30px;
  }

  .article-detail-header h1 {
    font-size: 28px;
  }

  .article-author-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .article-body {
    font-size: 15px;
  }

  .article-body h2 {
    font-size: 20px;
  }

  .article-body h3 {
    font-size: 18px;
  }

  .share-buttons {
    order: -1;
  }

  .article-metadata {
    padding: 24px 0;
    margin: 32px 0 24px;
  }

  .related-articles {
    margin: 40px 0;
  }
}
/* Admin Header */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #6b7280;
}

.menu-toggle:hover {
  color: #1f2937;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
}

.user-role {
  font-size: 12px;
  color: #6b7280;
  text-transform: capitalize;
}

.logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
}

.logout-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #ef4444;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .admin-header {
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .brand-name {
    display: none;
  }

  .user-details {
    display: none;
  }

  .admin-header-right {
    gap: 12px;
  }
}
/* Admin Sidebar */
.admin-sidebar {
  width: 260px;
  height: calc(100vh - 64px);
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
  transition: all 0.3s ease;
  position: fixed;
  left: 0;
  top: 64px;
  display: flex;
  flex-direction: column;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 500;
  position: relative;
}

.menu-item:hover {
  background: #eff6ff;
  color: #3b82f6;
}

.menu-item.active {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 600;
}

.menu-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #3b82f6;
  border-radius: 0 4px 4px 0;
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.menu-label {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: #ef4444;
  color: #fff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.info-link {
  font-size: 13px;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .admin-sidebar {
    width: 260px;
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
    z-index: 200;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }
}

/* Scrollbar styling */
.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.admin-sidebar::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.admin-sidebar::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
/* Admin Layout */
.admin-layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.admin-main {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.admin-content {
  flex: 1;
  margin-left: 260px;
  overflow-y: auto;
  background: #f3f4f6;
  padding: 24px;
  margin-top: 64px;
  height: calc(100vh - 64px - 260px);
}

.sidebar-overlay {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
  display: none;
}

@media (max-width: 1024px) {
  .admin-content {
    margin-left: 0;
    margin-top: 64px;
    height: calc(100vh - 64px);
  }

  .sidebar-overlay {
    display: block;
  }

  .sidebar-overlay.hidden {
    display: none;
  }
}

@media (max-width: 640px) {
  .admin-content {
    padding: 16px;
  }
}
/* List Component */
.list-container {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.list-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #3b82f6;
  color: #fff;
}

.btn-primary:hover {
  background: #2563eb;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.list-search {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 8px 12px 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  color: #1f2937;
  transition: all 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.clear-search {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s ease;
}

.clear-search:hover {
  color: #6b7280;
}

.list-table-wrapper {
  overflow-x: auto;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.list-table thead {
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}

.list-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
  white-space: nowrap;
}

.list-table th.sortable {
  cursor: pointer;
  user-select: none;
}

.list-table th.sortable:hover {
  background: #f3f4f6;
}

.th-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sort-icon {
  display: inline-block;
  opacity: 0.3;
  font-size: 12px;
  transition: opacity 0.2s ease;
}

.th-content:hover .sort-icon {
  opacity: 0.7;
}

.sort-icon.asc,
.sort-icon.desc {
  opacity: 1;
  color: #3b82f6;
}

.list-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s ease;
}

.list-table tbody tr:hover {
  background: #f9fafb;
}

.list-table td {
  padding: 12px 16px;
  color: #1f2937;
  vertical-align: middle;
}

.actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.action-btn.edit:hover {
  background: #dbeafe;
  border-color: #3b82f6;
  color: #3b82f6;
}

.action-btn.delete:hover {
  background: #fee2e2;
  border-color: #ef4444;
  color: #ef4444;
}

.list-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  gap: 16px;
}

.pag-btn {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pag-btn:hover:not(:disabled) {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff;
}

.pag-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pag-info {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #9ca3af;
  gap: 12px;
}

.list-empty svg {
  opacity: 0.5;
}

.list-empty p {
  font-size: 14px;
  margin: 0;
}
/* Admin Dashboard */
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dashboard-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}

.dashboard-header .subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.stat-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.2s ease;
}

.stat-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  color: #fff;
}

.stat-icon.blog {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.stat-icon.active {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.stat-icon.draft {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.stat-icon.users {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.dashboard-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.action-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.action-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.action-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.action-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.action-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.action-desc {
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .dashboard {
    gap: 24px;
  }

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

  .dashboard-header h1 {
    font-size: 24px;
  }
}
/* Blog List Page */
.blog-list-page {
  display: flex;
  flex-direction: column;
}

.title-text {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.slug-text {
  font-size: 12px;
  color: #9ca3af;
  font-family: 'Courier New', monospace;
}

.category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-badge.erp {
  background: #dbeafe;
  color: #1e40af;
}

.category-badge.maritime {
  background: #cffafe;
  color: #0e7490;
}

.category-badge.distribution {
  background: #fef08a;
  color: #854d0e;
}

.category-badge.konstruksi {
  background: #fecaca;
  color: #991b1b;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.status-badge.published {
  background: #dcfce7;
  color: #166534;
}

.status-badge.draft {
  background: #fee2e2;
  color: #991b1b;
}
/* Blog Settings Page */
.settings-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}

.settings-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settings-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}

.settings-header .subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.success-message {
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 12px 16px;
  color: #166534;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.settings-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
  padding-bottom: 8px;
  border-bottom: 2px solid #f3f4f6;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.form-group input[type='text'],
.form-group input[type='number'],
.form-group input[type='email'],
.form-group select,
.form-group textarea {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-group.checkbox input[type='checkbox'] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
}

.form-actions {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #3b82f6;
  color: #fff;
}

.btn-primary:hover {
  background: #2563eb;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: #e5e7eb;
  color: #1f2937;
}

.btn-secondary:hover {
  background: #d1d5db;
}
/* Settings Page */
.settings-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.settings-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.settings-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #1f2937;
}

.settings-header .subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.settings-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #fff;
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  color: #9ca3af;
}

.settings-placeholder h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #6b7280;
}

.settings-placeholder p {
  font-size: 14px;
  margin: 0;
}
