:root {
  /* Color System */
  --color-primary: #0033a0;
  --color-primary-light: #0052cc;
  --color-primary-dark: #002270;
  --color-accent: #00c1d4;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --color-text-main: #1f2937;
  --color-text-secondary: #4b5563;
  --color-text-light: #9ca3af;
  --color-bg-white: #ffffff;
  --color-bg-gray: #f9fafb;
  --color-bg-dark: #111827;

  /* Card Background Colors for Icons */
  --color-blue-light: #e0f2fe;
  --color-red-light: #fee2e2;
  --color-orange-light: #ffedd5;
  --color-purple-light: #f3e8ff;
  --color-green-light: #d1fae5;
  --color-cyan-light: #cffafe;

  /* Typography */
  --font-sans: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Layout */
  --container-width: 1200px;
  --header-height: 72px;

  /* Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-green {
  color: var(--color-success);
}
.text-highlight {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}
.text-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(0, 193, 212, 0.2);
  z-index: -1;
}

.bg-blue-light {
  background-color: var(--color-blue-light);
  color: var(--color-primary);
}
.bg-red-light {
  background-color: var(--color-red-light);
  color: var(--color-danger);
}
.bg-orange-light {
  background-color: var(--color-orange-light);
  color: var(--color-warning);
}
.bg-purple-light {
  background-color: var(--color-purple-light);
  color: #9333ea;
}
.bg-green-light {
  background-color: var(--color-green-light);
  color: var(--color-success);
}
.bg-cyan-light {
  background-color: var(--color-cyan-light);
  color: var(--color-accent);
}

/* Components: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-primary)
  );
  color: white;
  box-shadow: 0 4px 14px rgba(0, 51, 160, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 51, 160, 0.4);
}

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

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

.btn-white {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.btn-white:hover {
  background: var(--color-bg-gray);
  color: var(--color-primary-dark);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-outline-white:hover {
  background: white;
  color: var(--color-primary);
  border-color: white;
}

.btn-wide {
  width: 100%;
}

.icon-btn svg {
  margin-right: 8px;
}

.btn-lg.icon-btn svg {
  margin-left: 8px;
  margin-right: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  /* font-size: 1.25rem; */
  /* font-weight: 800; */
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-main);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-main);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
  color: white;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 48px;
  opacity: 0.9;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-value {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--color-accent);
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-note {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 16px;
}

/* Sections Common */
.section {
  padding: 100px 0;
}

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

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

.section-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.section-title .text-highlight{
  font-weight: 900;
}

/* Hero Stats Icons */
.stat-icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 8px;
  opacity: 0.8;
}

/* Pain Points Redesign */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.pain-item {
  background: var(--color-bg-gray);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.pain-item:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.pain-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  opacity: 0.1;
  position: absolute;
  top: 24px;
  right: 24px;
  line-height: 1;
}

.pain-content {
  flex: 1;
  padding-right: 24px;
  z-index: 1;
}

.pain-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.pain-content p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  z-index: 1;
}

.pain-item:hover .pain-icon {
  background: var(--color-primary);
  color: white;
}

/* Solutions Redesign */
.bg-gradient-light {
  background: linear-gradient(to bottom, #f8fafc, #eff6ff);
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.sol-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.sol-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.sol-img-box {
  height: 200px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sol-img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
}

.sol-img-box i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.2);
  transform: scale(1);
  transition: var(--transition);
}

.sol-card:hover .sol-img-box i {
  transform: scale(1.1);
  color: rgba(255, 255, 255, 0.3);
}

.sol-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sol-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.sol-content p {
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.check-list {
  margin-top: auto;
  border-top: 1px solid var(--color-bg-gray);
  padding-top: 20px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: var(--color-text-main);
}

.check-list li i {
  color: var(--color-success);
  font-size: 1.125rem;
}

/* Cases Redesign */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.case-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--color-primary);
}

.case-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-bg-gray);
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.case-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-text-main);
}

.case-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  background: var(--color-bg-gray);
  padding: 16px;
  border-radius: var(--radius-md);
}

.data-item {
  text-align: center;
  flex: 1;
}

.data-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.data-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.data-value small {
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 2px;
}

.data-label {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

.case-result {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.case-result i {
  color: var(--color-success);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.case-result strong {
  color: var(--color-accent);
}

/* Logos Wall */
.logos-wrapper {
  text-align: center;
}

.logos-title {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.logo-item {
  padding: 12px 24px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.logo-item i {
  font-size: 1.25rem;
  color: var(--color-text-light);
  transition: var(--transition);
}

.logo-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.logo-item:hover i {
  color: var(--color-primary);
}

.case-stats h4 {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
  font-weight: 500;
}

.stat-detail {
  margin-bottom: 24px;
}

.stat-row {
  font-size: 0.9375rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.stat-row span {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.stat-highlight {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent);
  padding-top: 20px;
  border-top: 1px solid var(--color-bg-gray);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.logo-item {
  height: 60px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-weight: 500;
  transition: var(--transition);
}

.logo-item:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary);
  background: rgba(0, 51, 160, 0.02);
}

/* Pricing Grid Redesign */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-standard {
  border-top: 6px solid var(--color-primary);
}

.card-premium {
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  color: white;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-accent);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-header {
  text-align: center;
  margin-bottom: 32px;
}

.icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--color-bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
}

.card-premium .icon-box {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}

.card-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-header p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.card-premium .card-header p {
  color: var(--color-text-light);
}

.card-price {
  text-align: center;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.card-premium .currency {
  color: var(--color-text-light);
}

.amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.card-premium .amount {
  color: white;
}

.unit {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-main);
}

.card-premium .unit {
  color: white;
}

.price-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.card-premium .price-note {
  color: rgba(255, 255, 255, 0.6);
}

.card-features {
  flex-grow: 1;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.text-blue {
  color: var(--color-primary);
}
.card-premium .text-green {
  color: var(--color-success);
}

.feature-item i {
  font-size: 1.25rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

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

.btn-outline-dark:hover {
  background: white;
  color: var(--color-bg-dark);
  border-color: white;
}

/* SLA Bar */
.sla-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.sla-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.sla-icon {
  width: 56px;
  height: 56px;
  background: var(--color-bg-gray);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.sla-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-text-main);
}

.sla-content p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
}

.sla-divider {
  width: 1px;
  height: 60px;
  background: var(--color-bg-gray);
}

@media (max-width: 992px) {
  .sla-bar {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .sla-divider {
    display: none;
  }

  .sla-item {
    width: 100%;
    padding: 0;
  }
}

/* CTA Section */
.cta-section {
  background: var(--color-primary);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 20%
    );
}

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Footer */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 60px 0 40px;
  font-size: 0.875rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  opacity:.8;
}

.footer-links a:hover{opacity:1}

.footer-links .divider{opacity:.4}

.footer-links img{
  display:block;
  width:12px;
  height:12px;
}

.footer-links svg{display:block}

.footer-links .icp-icon{display:inline-flex}

.footer-disclaimer {
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}

/* New Layout Styles */
.hero-text-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.hero-stats-floating {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 32px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 240px;
}
.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.stat-info {
  text-align: left;
}
.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.stat-txt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.shadow-glow {
  box-shadow: 0 0 20px rgba(0, 51, 160, 0.5);
}
.section-large {
  padding: 120px 0;
}
.pain-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px 64px;
  margin-top: 60px;
}
.pain-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.pain-icon-simple {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.pain-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-main);
}
.pain-text p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.sol-z-layout {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 80px;
}
.sol-row {
  display: flex;
  align-items: center;
  gap: 80px;
}
.sol-row.reverse {
  flex-direction: row-reverse;
}
.sol-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.sol-icon-large {
  width: 240px;
  height: 240px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  transform: rotate(-5deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sol-row:hover .sol-icon-large {
  transform: rotate(0deg) scale(1.05);
}
.bg-blue-soft {
  background: #e0f2fe;
  color: var(--color-primary);
}
.bg-purple-soft {
  background: #f3e8ff;
  color: #9333ea;
}
.bg-cyan-soft {
  background: #cffafe;
  color: #0891b2;
}
.sol-text-content {
  flex: 1;
}
.sol-text-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--color-text-main);
}
.sol-text-content > p {
  margin: 0 0 18px;
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
}
.check-list-modern {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list-modern li {
  font-size: 1.125rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.check-list-modern li:last-child {
  margin-bottom: 0;
}
.check-list-modern i {
  font-size: 1.25rem;
}
.sol-text-content .accordion {
  margin-top: 20px;
}
.case-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
.case-review-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.case-quote {
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: 16px;
}
.case-review-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  font-style: italic;
}
.case-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.bg-orange-soft {
  background: #ffedd5;
  color: #f59e0b;
}
.bg-red-soft {
  background: #fee2e2;
  color: #ef4444;
}
.bg-green-soft {
  background: #d1fae5;
  color: #10b981;
}
.author-info strong {
  display: block;
  color: var(--color-text-main);
}
.author-info span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}
.case-tag {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--color-bg-gray);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}
.logos-track {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}
.logo-item-clean {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 32px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-main);
  filter: grayscale(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-item-clean:last-child {
  margin-right: 0;
}
.logo-item-clean:hover {
  filter: grayscale(0%);
  color: var(--color-primary);
  transform: scale(1.05);
}
.card-light {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 48px 40px;
  border-radius: 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-light:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
}

.qualification-card {
  position: relative;
  transform-origin: center;
  will-change: transform;
  cursor: zoom-in;
}

.qualification-card:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-xl);
  z-index: 20;
}

.about-qual-grid {
  isolation: isolate;
}

.milestone-track {
  position: relative;
}

.milestone-track::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 30px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 51, 160, 0.18),
    transparent
  );
  pointer-events: none;
}

.milestone-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  will-change: transform;
}

.milestone-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(0, 51, 160, 0.95),
    rgba(0, 193, 212, 0.75)
  );
  opacity: 0.85;
}

.milestone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 51, 160, 0.2);
}

.milestone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.milestone-date {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(0, 51, 160, 0.06);
  border: 1px solid rgba(0, 51, 160, 0.12);
  color: var(--color-primary);
  font-weight: 900;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.milestone-mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: rgba(0, 51, 160, 0.75);
  flex-shrink: 0;
}

.milestone-mark i {
  font-size: 1.125rem;
}

.milestone-title {
  margin-top: 12px;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.35;
  font-size: 1rem;
}
.border-highlight {
  border: 2px solid #d97706;
}
.card-badge-soft {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #e0f2fe;
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.card-badge-gold {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fef3c7;
  color: #d97706;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.card-header-clean {
  text-align: center;
  margin-bottom: 16px;
}
.icon-box-simple {
  font-size: 3rem;
  margin-bottom: 16px;
}
.text-blue {
  color: var(--color-primary);
}
.text-gold {
  color: #d97706;
}
.text-purple {
  color: #9333ea;
}
.text-cyan {
  color: #0891b2;
}
.text-orange {
  color: #f97316;
}
.card-price-clean {
  text-align: center;
  margin-bottom: 8px;
}
.card-features-clean {
  margin: 16px 0;
}
.card-features-clean .feature-item {
  margin-bottom: 16px;
  color: var(--color-text-secondary);
}

#matrix .card-light {
  padding: 2rem 1rem;
}

#matrix .card-header-clean {
  text-align: left;
  margin-bottom: 1.5rem;
}

#matrix .card-header-clean h3 {
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

#matrix .card-header-clean p {
  line-height: 1.5;
}

#matrix .card-features-clean {
  margin: 0;
}

#matrix .card-features-clean .feature-item {
  margin-bottom: 0.5rem;
  line-height: 1.25;
  align-items: flex-start;
}

#matrix .card-features-clean .feature-item:last-child {
  margin-bottom: 0;
}
.btn-primary-soft {
  background: #e0f2fe;
  color: var(--color-primary);
}
.btn-primary-soft:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
}
.sla-bar-soft {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.sla-icon-soft {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 48px; */
  align-items: start;
  /* max-width: 1040px; */
  margin: 0 auto;
}
.about-intro {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 24px;
  line-height: 1.6;
}
.about-desc {
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}
.about-values {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.value-tag {
  padding: 0 5px;
}
.about-visual {
  display: flex;
  flex-direction: column;
}
.about-img-box {
  height: 400px;
  background: var(--color-bg-gray);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  background: #e2e8f0;
}
.img-placeholder i {
  font-size: 4rem;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .sol-row,
  .sol-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .sol-visual {
    order: -1;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-box {
    height: 320px;
  }
  .sla-bar-soft {
    flex-direction: column;
    gap: 24px;
  }
}

/* Overrides for requested adjustments */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
}
.hero-text-wrapper {
  max-width: 1000px;
}
.hero-stats-floating {
  margin-top: 24px;
}
.stat-box {
  padding: 16px 24px;
}
.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
}
.stat-num {
  font-size: 1.5rem;
}

/* Pain list subtle numbering for highlight */
.pain-list-grid {
  counter-reset: pain;
}
.pain-list-item {
  position: relative;
}
.pain-list-item::before {
  counter-increment: pain;
  content: "0" counter(pain);
  position: absolute;
  right: 12px;
  top: -10px;
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.08;
  pointer-events: none;
}

/* Logo strip: text-only to remove icon conflict */
.logo-item-clean i {
  display: none;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.08),
    transparent
  );
  margin: 40px 0;
}

.disclaimer {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 16px;
}
.disclaimer.text-center {
  text-align: center;
}

.overview-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.overview-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  color: var(--color-text-secondary);
  font-weight: 600;
}
.overview-item i {
  font-size: 1.25rem;
  color: var(--color-primary);
}
.overview-item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.accordion {
  margin-top: 24px;
}
.acc-item {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  color: var(--color-text-main);
}
.acc-item:hover {
  border-color: var(--color-primary);
}
.acc-panel {
  display: none;
  margin-top: 12px;
  padding: 16px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #f9fafb;
}
.acc-panel ol {
  padding-left: 20px;
  color: var(--color-text-secondary);
}
.acc-panel li {
  margin-bottom: 8px;
}

.timeline {
  position: relative;
  margin-top: 24px;
  padding-left: 20px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.08);
}
.timeline-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 51, 160, 0.15);
}

/* Mobile Menu & Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

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

.drawer-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-bg-gray);
}

.drawer-title {
  font-weight: 700;
  font-size: 1.125rem;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-secondary);
}

.mobile-nav {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-main);
}

/* Animations */
.reveal-text,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-text.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
  .solutions-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solutions-visual {
    order: -1;
  }

  .hero-title {
    font-size: 3rem;
  }
}

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

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
    padding: 0 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

/* Image Zoom Modal */
body.modal-open {
  overflow: hidden;
}

#image-modal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#modal-image {
  touch-action: none;
  will-change: transform;
}
