/* ===========================================
   ACSPL — 2026 Modern Design System
   Colors derived from logo:
   Navy #1B1F5E · Red #E63329 · Silver #C5C7D0
   =========================================== */

/* ---------- Custom Properties ---------- */
:root {
  --navy: #1B1F5E;
  --navy-light: #2A2F7A;
  --navy-dark: #0F1242;
  --navy-950: #080A2E;
  --red: #E63329;
  --red-light: #FF4D42;
  --red-dark: #C42B22;
  --silver: #C5C7D0;
  --silver-light: #E8E9EE;

  --bg: #FFFFFF;
  --bg-alt: #F7F8FC;
  --surface: #FFFFFF;
  --text: #1A1D3B;
  --text-secondary: #5C6178;
  --text-muted: #8B90A5;
  --border: #E2E5EF;
  --border-light: #F0F1F6;

  /* Liquid Glass tokens */
  --glass: rgba(255,255,255,0.55);
  --glass-strong: rgba(255,255,255,0.7);
  --glass-subtle: rgba(255,255,255,0.35);
  --glass-border: 1px solid rgba(255,255,255,0.4);
  --glass-border-light: 1px solid rgba(255,255,255,0.25);
  --glass-blur: blur(20px) saturate(180%);
  --glass-shadow: 0 8px 32px rgba(27,31,94,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  --glass-shadow-hover: 0 12px 40px rgba(27,31,94,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  --glass-inset: inset 0 1px 0 rgba(255,255,255,0.6);

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 3px rgba(27,31,94,0.04);
  --shadow-sm: 0 2px 8px rgba(27,31,94,0.06);
  --shadow: 0 8px 32px rgba(27,31,94,0.06);
  --shadow-lg: 0 20px 60px rgba(27,31,94,0.1);
  --shadow-xl: 0 32px 80px rgba(27,31,94,0.16);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;
  --duration-slow: 0.6s;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

::selection {
  background: rgba(230,51,41,0.12);
  color: var(--navy);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(27,31,94,0.15); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(27,31,94,0.25); }

/* ---------- Layout ---------- */
.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.container-narrow {
  width: min(900px, calc(100% - 3rem));
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.gradient-text {
  background: linear-gradient(135deg, var(--navy), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #fff, var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Page Loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #F4F6FB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  margin: 0 5px;
  animation: loaderBounce 1.2s ease-in-out infinite;
}

.loader-dot:nth-child(2) { animation-delay: 0.15s; }
.loader-dot:nth-child(3) { animation-delay: 0.3s; background: var(--red); }

@keyframes loaderBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: all var(--duration) var(--ease);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all var(--duration) var(--ease);
  z-index: -1;
}

.site-header.scrolled::before {
  background: var(--navy-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: none;
  transition: transform var(--duration) var(--ease);
  object-fit: contain;
  background: transparent;
  box-shadow: none;
}

.brand:hover .brand-logo {
  transform: scale(1.05);
}

.brand-text {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.site-nav a.active {
  color: #fff;
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a .nav-chevron {
  width: 12px; height: 12px;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(27,31,94,0.15), 0 2px 8px rgba(27,31,94,0.08);
  padding: 8px;
  padding-top: 14px;
  min-width: 220px;
  z-index: 200;
  animation: fadeSlideIn 0.15s ease;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(-50%) translateY(4px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155 !important;
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: #F0F1F6 !important;
  color: var(--navy) !important;
}
.nav-dropdown-menu a svg {
  width: 18px; height: 18px;
  opacity: 0.5;
  flex-shrink: 0;
}
.nav-dropdown-menu a:hover svg { opacity: 0.8; }
.nav-dropdown-menu .nav-dd-badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: linear-gradient(135deg, #E63329, #FF4D42);
  color: #fff;
  letter-spacing: 0.3px;
}
.nav-dropdown-menu .nav-dd-divider {
  height: 1px;
  background: #E2E5EF;
  margin: 4px 8px;
}

/* Tools Section (homepage) */
.hp-tools {
  padding: 5rem 0;
  background: linear-gradient(180deg, #F7F8FC 0%, #fff 100%);
}
.hp-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.hp-tool-card {
  background: #fff;
  border: 1px solid #E2E5EF;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.hp-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,31,94,0.1);
  border-color: var(--navy);
}
.hp-tool-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.hp-tool-icon svg { width: 24px; height: 24px; }
.hp-tool-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.hp-tool-card p {
  font-size: 0.85rem;
  color: #5C6178;
  line-height: 1.6;
  flex: 1;
}
.hp-tool-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 0.75rem;
  letter-spacing: 0.3px;
  width: fit-content;
}
.hp-tool-badge.ai { background: #EDE9FE; color: #7C3AED; }
.hp-tool-badge.live { background: #DCFCE7; color: #166534; }
.hp-tool-badge.free { background: #FEF3C7; color: #92400E; }

@media (max-width: 768px) {
  .hp-tools-grid { grid-template-columns: 1fr; }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 4px;
    min-width: 0;
    animation: none;
  }
  .nav-dropdown-menu a { color: rgba(255,255,255,0.7) !important; }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
}

.nav-cta {
  background: #fff !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: all var(--duration) var(--ease) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-cta:hover {
  background: var(--red) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(230,51,41,0.3) !important;
}

.nav-cta.active::after { display: none; }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  font-size: 0;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.menu-toggle::before { transform: translateY(-4px); }
.menu-toggle::after { transform: translateY(4px); }

.menu-toggle.active::before { transform: rotate(45deg); }
.menu-toggle.active::after { transform: rotate(-45deg); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,51,41,0.15), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 720px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.hero .eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: #fff;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #fff 30%, var(--red-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 56ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-stats .stat {
  flex: 1;
  min-width: 130px;
}

.hero-stats .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-stats .stat-value .suffix {
  color: var(--red-light);
}

.hero-stats .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* (hero-card and hero-glow removed) */

/* ---------- Sections ---------- */
.section {
  padding: 6rem 0;
  position: relative;
}

.section.alt {
  background: var(--bg-alt);
}

.section.dark {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-dark) 40%, var(--navy) 100%);
  color: #fff;
}

.section.dark .section-tag { color: var(--red-light); }
.section.dark h2 { color: #fff; }
.section.dark p { color: rgba(255,255,255,0.7); }

.section-dark {
  background: var(--navy-dark);
  color: #fff;
}
.section-dark .section-tag {
  color: var(--red-light);
  background: rgba(255,77,66,0.1);
  border-color: rgba(255,77,66,0.15);
}
.section-dark h2 { color: #fff; }
.section-dark h2::after { background: linear-gradient(90deg, #FF4D42, rgba(255,255,255,0.2)); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-dark .industry-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.section-dark .industry-tag:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}
.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  position: relative;
  display: inline-block;
}

/* Gradient underline on section headings */
.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  border-radius: 3px;
  margin: 0.6rem auto 0;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 0.75rem;
  line-height: 1.65;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 0.75rem;
  background: rgba(230,51,41,0.06);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(230,51,41,0.08);
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* ---------- Page Header ---------- */
.page-head {
  padding: 9rem 0 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 600px 500px at 80% 20%, rgba(27,31,94,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 20% 60%, rgba(230,51,41,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 300px 300px at 50% 40%, rgba(197,199,208,0.08) 0%, transparent 70%),
    var(--bg);
}

/* Page header with background image */
.page-head.page-head--img {
  padding: 12rem 0 5rem;
  min-height: 380px;
  background: #0a0c2e;
  display: flex;
  align-items: center;
}

.page-head--img .page-head-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-head--img .page-head-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-head--img .page-head-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8,10,46,0.92) 0%, rgba(15,18,66,0.88) 40%, rgba(27,31,94,0.82) 100%);
}

.page-head--img .container {
  position: relative;
  z-index: 2;
}

/* Text color overrides moved after .page-head h1 span gradient rule for specificity */

/* Section with background image */
.section-img-bg {
  position: relative;
}

.section-img-bg .section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-img-bg .section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-img-bg .section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
}

.section-img-bg > .container {
  position: relative;
  z-index: 2;
}

/* Image-text split layout */
.split-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-img-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

/* Service card with image */
.card-img-top {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -1.75rem -1.5rem 1.25rem -1.5rem;
  width: calc(100% + 3rem);
}

@media (max-width: 768px) {
  .split-img {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-img-photo {
    max-height: 280px;
  }

  .page-head--img {
    padding: 8rem 0 3rem;
    min-height: 300px;
  }

  .card-img-top {
    height: 140px;
  }
}

.page-head .section-tag {
  margin-bottom: 0.75rem;
  letter-spacing: 2.5px;
  font-size: 0.7rem;
}

.page-head h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.page-head h1 span {
  background: linear-gradient(135deg, var(--navy), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Image banner header text styling ────── */
.page-head.page-head--img h1 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.page-head.page-head--img h1 span {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 50%, #FF6B63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(230,51,41,0.3));
}

/* Decorative line above heading */
.page-head.page-head--img h1::before {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #FF4D42, rgba(255,77,66,0.2));
  border-radius: 3px;
  margin-bottom: 1rem;
}

.page-head.page-head--img .container p {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 58ch;
}

.page-head.page-head--img .section-tag {
  color: #FF6B63;
  background: rgba(255,77,66,0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255,77,66,0.15);
  display: inline-block;
}

.page-head.page-head--img .section-tag::before {
  background: #FF6B63;
}

/* Decorative glow orb */
.page-head.page-head--img::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,51,41,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Button styling on image banners */
.page-head.page-head--img .btn {
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}

.page-head.page-head--img .btn:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.page-head > .container > p {
  color: var(--text-secondary);
  max-width: 65ch;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(27,31,94,0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  box-shadow: 0 8px 28px rgba(27,31,94,0.35);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(230,51,41,0.25);
}

.btn-accent:hover {
  box-shadow: 0 8px 28px rgba(230,51,41,0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(27,31,94,0.05);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(27,31,94,0.15);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(27,31,94,0.08);
  transform: translateY(-1px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 0.5rem 0;
}

.btn-ghost:hover { color: var(--red); }

.btn-ghost::after {
  content: '\2192';
  transition: transform var(--duration) var(--ease);
}

.btn-ghost:hover::after { transform: translateX(4px); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration-slow) var(--ease);
  position: relative;
  box-shadow: 0 2px 12px rgba(27,31,94,0.06);
}

.card:hover {
  border-color: rgba(27,31,94,0.15);
  box-shadow: 0 12px 40px rgba(27,31,94,0.1);
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.card .icon-wrap {
  margin-bottom: 1.25rem;
}

.card .list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card .list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.card .list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- Panel ---------- */
.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(27,31,94,0.06);
}

.panel h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.panel p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
}

.panel .list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.panel .list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.panel .list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--navy);
}

/* ---------- Contact Info (dl) ---------- */
.contact-info {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.75rem 1rem;
  align-items: baseline;
}

.contact-info dt {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
  white-space: nowrap;
}

.contact-info dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.55;
}

.contact-info dd a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info dd a:hover {
  color: var(--red);
}

/* ---------- Grids ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

.split .list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.split .list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.split .list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--red);
}

/* ---------- About Image ---------- */
.about-image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(27,31,94,0.08);
  transition: transform var(--duration-slow) var(--ease);
}

.about-image:hover {
  transform: scale(1.02);
}

/* ---------- Inline Link ---------- */
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  transition: all var(--duration) var(--ease);
}

.inline-link::after {
  content: '\2192';
  transition: transform var(--duration) var(--ease);
}

.inline-link:hover {
  color: var(--red);
}

.inline-link:hover::after {
  transform: translateX(4px);
}

/* ---------- USP Grid (6 columns) ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.usp-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-slow) var(--ease);
  box-shadow: 0 8px 32px rgba(27,31,94,0.06);
}

.usp-item:hover {
  background: #fff;
  border-color: rgba(27,31,94,0.15);
  box-shadow: 0 12px 40px rgba(27,31,94,0.1);
  transform: translateY(-4px);
}

/* ---------- SVG Icon Wrap ---------- */
.icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(27,31,94,0.06);
  color: var(--navy);
  margin-bottom: 1rem;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}
.icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-item .icon-wrap {
  margin: 0 auto 1rem;
}

.usp-item h3 {
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.usp-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------- Grid 4 ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ---------- Feature List (2 col text) ---------- */
.grid-2-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
}

.feature-item:hover {
  background: #fff;
  border-color: rgba(27,31,94,0.15);
  box-shadow: 0 4px 16px rgba(27,31,94,0.06);
}

.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(4,120,87,0.1);
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-item span:last-child {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  font-weight: 500;
}

/* ---------- Industry Tags ---------- */
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.industry-tag {
  padding: 0.85rem 1.75rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  transition: all var(--duration) var(--ease);
}

.industry-tag:hover {
  border-color: var(--navy);
  background: rgba(27,31,94,0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(27,31,94,0.08);
}

/* ---------- Testimonial ---------- */
.testimonial-block {
  text-align: center;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  box-shadow: 0 4px 24px rgba(27,31,94,0.06);
}

.testimonial-quote {
  font-family: "Abril Fatface", serif;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.testimonial-block blockquote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--navy);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* ---------- Map Container ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(27,31,94,0.08);
  border: 1px solid var(--border);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* ---------- Logo Grid (Clients) ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.logo-grid img {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  height: 90px;
  width: 100%;
  object-fit: contain;
  transition: all var(--duration) var(--ease);
}

.logo-grid img:hover {
  background: #fff;
  border-color: rgba(27,31,94,0.15);
  box-shadow: 0 4px 16px rgba(27,31,94,0.08);
  transform: translateY(-2px);
}

/* ---------- CTA Section ---------- */
.cta {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-dark), var(--navy));
  color: #fff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,51,41,0.15), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,0.7); margin: 0; }

.cta .btn-accent {
  flex-shrink: 0;
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 1rem;
}

label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

label .req {
  color: var(--red);
  font-size: 0.7rem;
  line-height: 1;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27,31,94,0.08);
  background: #fff;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.input-row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
}

/* -- Form Sections -- */
.form-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: #fff;
  box-shadow: 0 8px 32px rgba(27,31,94,0.06);
  margin-bottom: 0.25rem;
}

.form-section-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.form-section-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(27,31,94,0.2);
}

.form-section-head h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.form-section-head p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.form-section .form {
  gap: 0.9rem;
}

/* -- Tooltip -- */
.tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(27,31,94,0.08);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  cursor: help;
  flex-shrink: 0;
}

.tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.55rem 0.8rem;
  background: var(--navy-950);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s var(--ease);
  z-index: 20;
  max-width: 260px;
  white-space: normal;
}

.tip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* -- Checkbox Grid -- */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  user-select: none;
  background: var(--bg);
}

.checkbox-item:hover {
  border-color: rgba(27,31,94,0.15);
  background: #fff;
}

.checkbox-item.checked {
  border-color: var(--navy);
  background: rgba(27,31,94,0.06);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  accent-color: var(--navy);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.checkbox-item span {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}

/* -- Conditional LCL Section -- */
.lcl-group {
  display: none;
  margin-top: 0;
}

.lcl-group.visible {
  display: block;
  margin-top: 0.9rem;
  animation: fadeUp 0.4s var(--ease) forwards;
}

.lcl-group .lcl-inner {
  padding: 1rem 1.25rem;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.lcl-group .lcl-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* -- Quote form top bar -- */
.quote-contact-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* -- Form submit area -- */
.form-submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.form-submit .btn {
  min-width: 200px;
}

.form-submit .form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ---------- Track & Trace ---------- */

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

/* ---------- Notices ---------- */
.notice {
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

.notice.error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

.notice.ok {
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.notice.info {
  background: #fff;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-weight: 500;
  font-size: 0.85rem;
  line-height: 1.55;
}

.hidden { display: none !important; }

/* ---------- Founder Message ---------- */
.founder-message {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

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

.founder-photo img {
  width: 240px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid var(--border);
  box-shadow: 0 8px 32px rgba(27,31,94,0.1);
  margin: 0 auto 1rem;
  display: block;
  background: var(--bg-alt);
}

.founder-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.founder-info strong {
  font-size: 1.1rem;
  color: var(--navy);
}

.founder-info span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.founder-content p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.founder-content p:first-child {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
}

.founder-signature {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.founder-signature strong {
  color: var(--text);
  font-size: 0.95rem;
}

.founder-signature span {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.founder-signature span:last-child {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
}

@media (max-width: 768px) {
  .founder-message {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .founder-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .founder-photo img {
    width: 200px;
    height: 250px;
  }
}

/* ---------- Vision & Mission (Special) ---------- */
.vm-section {
  background: var(--bg);
}

.vm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.vm-card {
  position: relative;
  padding: 2.5rem 2.25rem;
  border-radius: var(--radius-lg);
  color: #fff;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vm-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.08;
  pointer-events: none;
}

.vm-vision {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #3A40A0 100%);
  box-shadow: 0 16px 48px rgba(27,31,94,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.vm-vision::before {
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 0%, transparent 60%);
}

.vm-mission {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #FF5A50 100%);
  box-shadow: 0 16px 48px rgba(230,51,41,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.vm-mission::before {
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0%, transparent 60%);
}

.vm-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.vm-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

.vm-label {
  font-family: 'Abril Fatface', serif;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.vm-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* Values row */
.vm-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.vm-value {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vm-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vm-value-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.vm-value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
}

.vm-value h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.vm-value p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .vm-cards {
    grid-template-columns: 1fr;
  }
  .vm-card {
    min-height: 220px;
    padding: 2rem 1.75rem;
  }
  .vm-label {
    font-size: 1.35rem;
  }
  .vm-values {
    grid-template-columns: 1fr;
  }
}

/* ---------- Milestones ---------- */
.milestone {
  position: relative;
  padding-left: 2rem;
}

.milestone::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(230,51,41,0.15);
}

.milestone::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% - 0.5rem);
  background: var(--border);
}

.milestone:last-child::after { display: none; }

.milestone h3 {
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.milestone p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  padding-bottom: 1.75rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(ellipse 500px 400px at 80% 20%, rgba(230,51,41,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 20% 80%, rgba(197,199,208,0.06) 0%, transparent 70%),
    linear-gradient(170deg, #1B1F5E 0%, #161A52 50%, #111446 100%);
  color: rgba(255,255,255,0.65);
  padding: 0;
  position: relative;
}

/* Glass overlay removed from footer for text clarity */

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: none;
  position: relative;
}

/* Red accent line at top of footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E63329, #1B1F5E, #E63329);
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand .brand-text {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  display: block;
  line-height: 1.3;
  white-space: nowrap;
}

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 28ch;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #E63329;
  border-radius: 2px;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.25s;
}

.footer-col a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-wrap p { color: rgba(255,255,255,0.7); }

.footer-wrap a {
  color: rgba(255,255,255,0.4);
  transition: color var(--duration) var(--ease);
}

.footer-wrap a:hover { color: #fff; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all var(--duration) var(--ease);
}

/* Instagram — gradient */
.footer-social a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}

/* LinkedIn — blue */
.footer-social a[aria-label="LinkedIn"] {
  background: #0A66C2;
  color: #fff;
}

/* Facebook — blue */
.footer-social a[aria-label="Facebook"] {
  background: #1877F2;
  color: #fff;
}

/* X (Twitter) — white on dark */
.footer-social a[aria-label="X (Twitter)"] {
  background: #fff;
  color: #000;
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27,31,94,0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(27,31,94,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease);
  z-index: 50;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--red);
  transform: translateY(-2px);
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--navy));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* (hero particles removed) */

/* ---------- Enhanced Card Transitions ---------- */
.usp-item, .card {
  transition: all 0.4s var(--ease);
}

/* ---------- Pulse Animation for Dot ---------- */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(230,51,41,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(230,51,41,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,51,41,0); }
}

.eyebrow .dot {
  animation: pulse-ring 2s ease-out infinite;
}

/* ---------- Shimmer Effect for Hero Stats ---------- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero .stat-value {
  background: linear-gradient(90deg, #fff, var(--red-light), #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Result Card & Recent Searches ---------- */

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.4;
}

.status-badge.green {
  background: #e6f9ed;
  color: #15803d;
}

.status-badge.yellow {
  background: #fef9e7;
  color: #a16207;
}

.status-badge.gray {
  background: var(--silver-light);
  color: var(--text-secondary);
}

.mt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1.2rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--duration) var(--ease);
}

.mt-link:hover {
  background: var(--navy-light);
}

.mt-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.status-badge.blue {
  background: rgba(37,99,235,0.1);
  color: #2563eb;
}

/* ---------- Maersk Event Timeline ---------- */
.event-timeline {
  padding: 1.5rem 2rem;
}

.event-timeline h4 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--navy);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  border: none;
  text-decoration: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.55), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ---------- Mobile Sticky CTA Bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-top: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 -4px 20px rgba(27,31,94,0.06), inset 0 1px 0 rgba(255,255,255,0.7);
  padding: 0.6rem 1rem;
  gap: 0.5rem;
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s var(--ease);
}
.mobile-cta-bar .cta-call {
  background: var(--navy);
  color: #fff;
}
.mobile-cta-bar .cta-whatsapp {
  background: #25D366;
  color: #fff;
}
.mobile-cta-bar .cta-quote {
  background: var(--red);
  color: #fff;
}

/* ---------- Exit-Intent Popup ---------- */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,18,66,0.35);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.exit-popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.exit-popup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(27,31,94,0.15);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s var(--ease-spring);
}
.exit-popup-overlay.visible .exit-popup {
  transform: translateY(0) scale(1);
}
.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 0.25rem;
}
.exit-popup h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.exit-popup .popup-sub {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.exit-popup .popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.exit-popup input,
.exit-popup textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
}
.exit-popup input:focus,
.exit-popup textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.exit-popup .btn {
  width: 100%;
  text-align: center;
}
.exit-popup .popup-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ---------- Client Logo Ticker ---------- */
.logo-ticker-section {
  padding: 4rem 0 3rem;
  overflow: hidden;
  background: var(--bg-alt);
}
.logo-ticker-section .section-tag {
  text-align: center;
  margin-bottom: 1.5rem;
}
.logo-ticker-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.logo-ticker {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.logo-ticker img {
  height: 240px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.logo-ticker img:hover {
  transform: scale(1.08);
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Client Logo Grid ---------- */
.client-logos-section {
  background: var(--bg);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.client-logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: all 0.3s var(--ease);
}

.client-logo-card:hover {
  border-color: rgba(27,31,94,0.15);
  box-shadow: 0 8px 28px rgba(27,31,94,0.08);
  transform: translateY(-4px);
}

.client-logo-card img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

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

@media (max-width: 768px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .client-logo-card {
    padding: 1.25rem;
    min-height: 100px;
  }
  .client-logo-card img {
    max-height: 55px;
  }
}

@media (max-width: 480px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Input Error ---------- */
.input-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(230,51,41,0.1) !important;
}

/* ---------- Multi-Step Form Wizard ---------- */
.form-progress {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius-full);
  height: 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(27,31,94,0.06);
}

.form-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 16.66%;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: var(--radius-full);
  transition: width 0.5s var(--ease);
}

.form-progress-text {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: formSlideIn 0.4s var(--ease-out) both;
}

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

.form-step.slide-out-left {
  animation: formSlideOutLeft 0.3s var(--ease) both;
}

.form-step.slide-in-left {
  animation: formSlideInLeft 0.4s var(--ease-out) both;
}

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

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

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.form-nav .btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.form-nav .btn-outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.form-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.form-summary h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.form-summary dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.form-summary dt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-summary dd {
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #047857;
  background: rgba(4, 120, 87, 0.06);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .page-head { padding: 7rem 0 2rem; }
  .hero { padding: 8rem 0 3.5rem; }
  .form-summary dl { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; align-items: center; }

  .menu-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5rem 0 2rem;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-left: 1px solid rgba(255,255,255,0.4);
    box-shadow: -8px 0 40px rgba(27,31,94,0.08);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 99;
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: var(--navy);
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .site-nav a:hover {
    color: var(--navy-dark);
    background: rgba(27,31,94,0.06);
  }

  .site-nav a.active { color: var(--navy); }
  .site-nav a.active::after { display: none; }

  .site-nav .nav-chevron { stroke: var(--navy); }

  .nav-dropdown-menu a { color: var(--navy); }

  .nav-cta {
    margin: 1rem 1.5rem !important;
    text-align: center !important;
    border-radius: var(--radius-full) !important;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease);
  }

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

  .hero-grid,
  .split,
  .grid-2,
  .grid-2-text,
  .grid-3,
  .grid-4,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats { gap: 0.75rem; }
  .hero-stats .stat { min-width: unset; }

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

  .cta-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

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

  .footer-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .input-row,
  .input-row-3,

  .input-row-4 {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .form-section {
    padding: 1.25rem;
  }

  .form-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .form-submit .btn {
    min-width: unset;
  }

  .brand-text { font-size: 0.95rem; letter-spacing: 0; }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { bottom: 5rem; right: 1rem; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .back-to-top { bottom: 5rem; }
  body { padding-bottom: 4.5rem; }
}

/* ---------- Company Profile Page ---------- */
.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.profile-stat {
  padding: 2rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-slow) var(--ease);
  box-shadow: 0 8px 32px rgba(27,31,94,0.06);
}

.profile-stat:hover {
  background: #fff;
  border-color: rgba(27,31,94,0.15);
  box-shadow: 0 12px 40px rgba(27,31,94,0.1);
  transform: translateY(-4px);
}

.profile-stat-value {
  font-family: "Abril Fatface", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.profile-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.profile-tags span {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--border);
}

.section-dark .profile-tags span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}

.section-dark .card.profile-service-card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

.section-dark .card.profile-service-card h3 {
  color: #fff;
}

.section-dark .card.profile-service-card p {
  color: rgba(255,255,255,0.7);
}

.section-dark .card.profile-service-card .icon-wrap {
  background: rgba(255,255,255,0.1);
  color: var(--red-light);
}

.profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.profile-contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.profile-contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile-contact-item a {
  transition: color var(--duration) var(--ease);
}

.profile-contact-item a:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .profile-stats { grid-template-columns: repeat(2, 1fr); }
  .profile-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .profile-stats { grid-template-columns: 1fr; gap: 1rem; }
  .brand-logo { width: 42px; height: 42px; }
  .brand { gap: 0.5rem; }
  .brand-text {
    font-size: 0.85rem;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
}

/* ---------- Google Reviews Section (Elfsight) ---------- */
.reviews-section {
  padding: 4rem 0;
  background: var(--bg-alt);
  text-align: center;
}

.reviews-section .section-title {
  margin-bottom: 0.5rem;
}

.reviews-section .section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* Testimonial inline within reviews */
.testimonial-inline {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  box-shadow: 0 2px 12px rgba(27,31,94,0.05);
}

.testimonial-inline .testimonial-quote {
  font-family: "Abril Fatface", serif;
  font-size: 3.5rem;
  color: var(--red);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -0.5rem;
}

.testimonial-inline blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  max-width: 580px;
  margin: 0 auto;
}

.testimonial-inline .testimonial-author {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-inline .testimonial-author strong {
  color: var(--navy);
  font-size: 1rem;
}

.testimonial-inline .testimonial-author span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.testimonial-inline .testimonial-author a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(27,31,94,0.2);
  transition: text-decoration-color 0.2s;
}

.testimonial-inline .testimonial-author a:hover {
  text-decoration-color: var(--red);
  color: var(--red);
}

/* ---------- How It Works — Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}

.process-steps-6 {
  grid-template-columns: repeat(6, 1fr);
}

.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--duration) var(--ease);
}

.process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

/* Connecting line between steps — removed */

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(230,51,41,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: "Abril Fatface", serif;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(230,51,41,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.2);
}

.section-dark .process-step h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.section-dark .process-step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- Blog Featured Article ---------- */
.blog-featured {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
  border-top: 5px solid #dc2626;
  box-shadow: 0 8px 32px rgba(27,31,94,0.06);
}

.blog-featured-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.blog-featured-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-featured h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--text);
}

.blog-featured-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.blog-featured-body h3:first-child {
  margin-top: 0;
}

.blog-featured-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-featured-body .list {
  margin: 0.75rem 0 1.5rem;
}

.blog-featured-body .list li {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.blog-featured-body strong {
  color: var(--text);
}

.blog-sources {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.blog-sources h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-sources a {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  padding: 0.4rem 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--duration) var(--ease);
}

.blog-sources a:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .blog-featured { padding: 1.75rem; }
  .blog-featured h2 { font-size: 1.3rem; }
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-decoration: none;
  border-top: 4px solid var(--border);
  transition: all var(--duration-slow) var(--ease);
  cursor: pointer;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(27,31,94,0.06);
}

.blog-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 12px 40px rgba(27,31,94,0.1);
}

/* Color variants */
.blog-card-red { border-top-color: #E63329; }
.blog-card-blue { border-top-color: #2563eb; }
.blog-card-green { border-top-color: #16a34a; }
.blog-card-orange { border-top-color: #ea580c; }
.blog-card-navy { border-top-color: #1B1F5E; }
.blog-card-purple { border-top-color: #7c3aed; }

/* Icon */
.blog-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.blog-card-icon svg {
  width: 24px;
  height: 24px;
}

.blog-card-red .blog-card-icon { background: rgba(230,51,41,0.1); color: #E63329; }
.blog-card-blue .blog-card-icon { background: rgba(37,99,235,0.1); color: #2563eb; }
.blog-card-green .blog-card-icon { background: rgba(22,163,74,0.1); color: #16a34a; }
.blog-card-orange .blog-card-icon { background: rgba(234,88,12,0.1); color: #ea580c; }
.blog-card-navy .blog-card-icon { background: rgba(27,31,94,0.1); color: #1B1F5E; }
.blog-card-purple .blog-card-icon { background: rgba(124,58,237,0.1); color: #7c3aed; }

/* Tag color variants */
.blog-card-red .blog-tag { background: rgba(230,51,41,0.1); color: #E63329; }
.blog-card-blue .blog-tag { background: rgba(37,99,235,0.1); color: #2563eb; }
.blog-card-green .blog-tag { background: rgba(22,163,74,0.1); color: #16a34a; }
.blog-card-orange .blog-tag { background: rgba(234,88,12,0.1); color: #ea580c; }
.blog-card-navy .blog-tag { background: rgba(27,31,94,0.1); color: #1B1F5E; }
.blog-card-purple .blog-tag { background: rgba(124,58,237,0.1); color: #7c3aed; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(27,31,94,0.08);
  color: var(--navy);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-card h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.blog-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.blog-card-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-read-time {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-source {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

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

/* ---------- FAQ Accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--duration) var(--ease);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '\2212';
  color: var(--red);
}

.faq-item summary:hover {
  color: var(--navy);
}

.faq-answer {
  padding: 0 0 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-answer a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Incoterm Cards ---------- */
.incoterm-card {
  position: relative;
  padding-top: 2.5rem;
}

.incoterm-code {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--navy);
  color: #fff;
  font-family: "Abril Fatface", serif;
  font-size: 1.1rem;
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.incoterm-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.incoterm-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.risk-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.risk-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.risk-indicator.risk-low::before { background: #22c55e; }
.risk-indicator.risk-low-med::before { background: #84cc16; }
.risk-indicator.risk-medium::before { background: #eab308; }
.risk-indicator.risk-med-high::before { background: #f97316; }
.risk-indicator.risk-high::before { background: #ef4444; }
.risk-indicator.risk-very-high::before { background: #dc2626; }

/* ---------- Glossary ---------- */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.glossary-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--duration) var(--ease);
}

.glossary-item:hover {
  background: var(--surface);
}

.glossary-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.glossary-item dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.glossary-item dd {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Documents Checklist ---------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  cursor: default;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.checklist-item:hover .checklist-box {
  border-color: var(--navy);
  background: rgba(27,31,94,0.05);
}

/* ---------- Two-column text grid ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

/* ---------- Responsive for new components ---------- */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps-6 { grid-template-columns: repeat(3, 1fr); }
  .glossary-grid { grid-template-columns: 1fr; }
  .glossary-item:nth-child(odd) { border-right: none; }
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps-6 { grid-template-columns: repeat(3, 1fr); }
  .process-step:not(:last-child)::after,
  .process-step:not(:first-child)::before { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-text { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 2rem); }
  .hero { padding: 7rem 0 3rem; }
  h1 { font-size: 2.2rem; }
  .hero-stats .stat-value { font-size: 1.6rem; }
  .usp-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .input-row-4 { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}
