﻿﻿/* ===================================================
   SCITRON – Intelligent Vending Solutions
   Global Design System & Stylesheet
   =================================================== */

/* --- Google Fonts -------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties ----------------------- */
:root {
  --primary: #003B95;
  --primary-dark: #002870;
  --primary-light: #00AEEF;
  --accent: #00AEEF;
  --white: #FFFFFF;
  --dark: #1E1E1E;
  --bg-light: #F5F7FA;
  --bg-muted: #EEF2F9;
  --text-body: #4A5568;
  --text-muted: #718096;
  --border: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(0, 59, 149, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 59, 149, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 59, 149, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 80px;
}

/* --- Reset & Base -------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* --- Typography ---------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: -0.2px;
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--text-body);
}

/* --- Layout Utilities ---------------------------- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 76px 0;
}

.section-sm {
  padding: 64px 0;
}

/* --- Section Headers ----------------------------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-desc {
  margin: 0 auto;
}

/* --- Buttons ------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 59, 149, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #001a4d 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 59, 149, 0.5);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #0099d6 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.35);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #0099d6 0%, #0077a8 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 174, 239, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.0625rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* --- Cards --------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 59, 149, 0.15);
}

.card-body {
  padding: 28px;
}

/* --- Badge --------------------------------------- */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.badge-primary {
  background: linear-gradient(135deg, rgba(0, 59, 149, 0.15) 0%, rgba(0, 174, 239, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(0, 59, 149, 0.2);
}

.badge-accent {
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(0, 59, 149, 0.08) 100%);
  color: #0088c0;
  border: 1px solid rgba(0, 174, 239, 0.2);
}

.badge-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-orange {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* --- Forms --------------------------------------- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 59, 149, 0.1);
}

.form-control::placeholder {
  color: rgba(74, 85, 104, 0.5);
  font-weight: 500;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 44px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

:root {
  --nav-height: 80px;
}

/* HERO SECTION */
.hero {
  background: #021a42;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- Diagonal Blue Shapes Background ----------- */
.hero-bg-swoosh {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: #053b82;
  /* Medium blue */
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-bg-swoosh::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0852b8;
  /* Brighter blue */
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 15% 100%);
  z-index: 0;
}

.hero-bg-swoosh::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 70%;
  background: #042f6b;
  /* Darker blue corner */
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/*  Hero Inner: Two-Column Grid */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title-main {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.35);
}

.btn-hero:hover {
  background: #0099d6;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 174, 239, 0.5);
}

/* --- Right Column: Visual ---------------------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroImageIn 1s ease-out 0.2s both;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  position: relative;
  z-index: 1;
  max-width: 400px;
  width: 100%;
  margin: 10% 0% 0% 10%;
}

.hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.35));
}

/* Hero Responsive */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero-image {
    max-width: 400px;
  }

  .hero-bg-swoosh {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
    padding: 40px 0;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-title-main {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-title-sub {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  }

  .hero-tagline {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image {
    max-width: 300px;
  }

  .hero-bg-swoosh {
    width: 100%;
    top: auto;
    bottom: 0;
    height: 70%;
    clip-path: polygon(0 30%, 100% 10%, 100% 100%, 0% 100%);
  }

  .hero-bg-swoosh::before {
    clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0% 100%);
  }

  .hero-bg-swoosh::after {
    width: 100%;
    height: 40%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
}

/*    STATS BAR */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-item {
  background: var(--primary);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background: var(--primary-dark);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
  font-weight: 400;
}

/* ===================================================
   PRODUCT CARDS
=================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: linear-gradient(170deg, rgba(40, 40, 45, 0.95) 0%, rgba(20, 20, 25, 0.98) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0, 174, 239, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 174, 239, 0.4);
  background: linear-gradient(170deg, rgba(50, 50, 55, 0.98) 0%, rgba(30, 30, 35, 1) 100%);
}

.product-card-image {
  position: relative;
  background: linear-gradient(135deg, rgba(60, 60, 65, 0.8) 0%, rgba(40, 40, 45, 0.8) 100%);
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  height: 280px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  overflow: hidden;
  width: 150px;
  height: 150px;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.product-card-badge .badge {
  position: absolute;
  width: 150%;
  height: 40px;
  background: linear-gradient(135deg, #00aeef 0%, #0088c0 100%);
  transform: rotate(-45deg) translateY(-20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  border-radius: 0;
  padding: 0;
  border: none;
  /* Premium 3D Ribbon Styling */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.product-card-badge::after {
  content: '';
  position: absolute;
  width: 10px;
  bottom: 0;
  left: 0;
  height: 10px;
  z-index: -1;
  box-shadow: 140px -140px #003B95;
  background: #003B95;
}

.product-card-body {
  padding: 28px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-code {
  font-size: 0.75rem;
  color: rgba(0, 174, 239, 0.7);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.product-card:hover .product-card-title {
  color: #00aeef;
  text-shadow: 0 0 20px rgba(0, 174, 239, 0.3);
}

.product-card-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-specs-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(0, 174, 239, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(0, 174, 239, 0.12);
}

.spec-item-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label-mini {
  font-size: 0.65rem;
  color: rgba(0, 174, 239, 0.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.spec-val-mini {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.product-card-footer .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 11px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.product-card-footer .btn-primary {
  background: linear-gradient(135deg, #00aeef 0%, #0088c0 100%);
  color: white;
  border: none;
}

.product-card-footer .btn-primary:hover {
  background: linear-gradient(135deg, #00c9ff 0%, #0099d6 100%);
  box-shadow: 0 8px 20px rgba(0, 174, 239, 0.4);
}

.product-card-footer .btn-outline {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 174, 239, 0.3);
  background: rgba(0, 174, 239, 0.08);
}

.product-card-footer .btn-outline:hover {
  background: rgba(0, 174, 239, 0.15);
  border-color: #00aeef;
  color: #00aeef;
}

/* ===================================================
   FEATURES SECTION
=================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid rgba(0, 59, 149, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 59, 149, 0.04);
}

.feature-card:hover {
  border-color: rgba(0, 174, 239, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 59, 149, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 59, 149, 0.08) 0%, rgba(0, 174, 239, 0.08) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--primary);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  transform: scale(1.12) rotate(10deg);
  color: var(--white);
}

.feature-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================================
   INDUSTRIES SECTION
=================================================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.industry-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.industry-card:hover .industry-name {
  color: var(--white);
}

.industry-icon {
  font-size: 2.25rem;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.2);
}

.industry-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
}

/* ===================================================
   COMPARISON TABLE
=================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 700px;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--bg-muted);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: var(--bg-light);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.check-icon {
  color: #10B981;
  font-size: 1.1rem;
}

.dash-icon {
  color: #CBD5E0;
}

/* ===================================================
   ROI CALCULATOR
=================================================== */
.roi-section {
  background: linear-gradient(135deg, #F0F4FF 0%, #E8F4FF 100%);
}

.roi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 59, 149, 0.1);
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.roi-result {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.roi-result-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.roi-result-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
}

.roi-result-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
}

.roi-disclaimer {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 16px;
  text-align: center;
}

/* ===================================================
   TESTIMONIALS
=================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  font-family: serif;
}

.testimonial-text {
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9375rem;
}

.testimonial-company {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.stars {
  color: #F59E0B;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

/* ===================================================
   CTA / INQUIRY SECTION
=================================================== */
.cta-section {
  background: linear-gradient(135deg, #001D5C 0%, #003B95 50%, #002871 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0, 174, 239, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.cta-form-card .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.cta-form-card .form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.cta-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-form-card .form-label {
  color: rgba(255, 255, 255, 0.8);
}

.cta-form-card select.form-control option {
  background: var(--primary);
}

/* ===================================================
   FOOTER
=================================================== */

/* ===================================================
   FLOATING BUTTONS
=================================================== */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.float-wa {
  background: #25D366;
  color: var(--white);
  animation: float-pulse 3s ease-in-out infinite;
}

.float-inquiry {
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.float-btn-label {
  position: absolute;
  right: 64px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .float-btn-label {
  opacity: 1;
}

.float-btn {
  position: relative;
}

/* ===================================================
   PAGE HERO (inner pages)
=================================================== */
.page-hero {
  background: #021a42;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb-sep {
  opacity: 0.5;
}

/* ===================================================
   PRODUCT DETAIL PAGE
=================================================== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.gallery-main {
  background: linear-gradient(135deg, #F0F4FF 0%, #E8F0FE 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 59, 149, 0.08);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.product-info {
  padding-top: 8px;
}

.product-code {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.product-title {
  color: var(--primary);
  margin-bottom: 12px;
}

.product-tagline {
  font-size: 1.125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-desc {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 32px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 45%;
}

.specs-table td:last-child {
  color: var(--text-body);
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.feature-item-icon {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===================================================
   FRANCHISE PAGE
=================================================== */
.invest-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.invest-tier-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.invest-tier-card.featured {
  border-color: var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.invest-tier-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 18px;
  right: -24px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

.invest-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.invest-tier-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.tier-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.tier-machines {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}

.tier-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.tier-feature-icon {
  color: #10B981;
  flex-shrink: 0;
}

/* ===================================================
   RENTAL PAGE
=================================================== */
.rental-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rental-plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.rental-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rental-plan-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0055CC 100%);
  padding: 28px 24px;
  color: white;
}

.rental-plan-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.rental-plan-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
}

.rental-plan-price span {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}

.rental-plan-body {
  padding: 28px 24px;
}

.rental-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.rental-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-body);
}

/* ===================================================
   CONTACT PAGE
=================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-grid>.reveal {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: white;
  flex: 1;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: white;
}

.contact-info-sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.contact-info-value {
  font-weight: 600;
  color: white;
  font-size: 0.9375rem;
}

.map-placeholder {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  height: 200px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-card {
  background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
  border: none;
  flex: 1;
}

.contact-form-card .form-label {
  color: rgba(255, 255, 255, 0.85);
}

.contact-form-card .form-control {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.contact-form-card .form-control:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.contact-form-card select.form-control option {
  background: #1f1f1f;
  color: #fff;
}

/* ===================================================
   SCROLL REVEAL ANIMATIONS
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.visible {
  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;
}

/* ===================================================
   KEYFRAME ANIMATIONS
=================================================== */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 174, 239, 0);
  }
}

@keyframes float-pulse {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  }

  50% {
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    transform: scale(1.05);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Alert/Toast --------------------------------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #10B981;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
  z-index: 9999;
  transition: transform 0.4s ease;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* --- About page ---------------------------------- */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* --- Why Choose Us ------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 59, 149, 0.08);
  line-height: 1;
  margin-bottom: 8px;
}

.why-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* --- Misc Utilities ------------------------------ */
.divider {
  height: 4px;
  width: 48px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 20px;
}

.bg-light {
  background: var(--bg-light);
}

.bg-primary {
  background: var(--primary);
}

.text-white {
  color: var(--white) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 55px;
}

.mt-auto {
  margin-top: auto;
}

.flex {
  display: flex;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS
=================================================== */
@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .product-gallery {
    position: static;
  }
}

@media (max-width: 900px) {
  /* .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  } */

  /* .hero-visual {
    display: none;
  } */

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .invest-tier-grid {
    grid-template-columns: 1fr;
  }

  .invest-tier-card.featured {
    transform: none;
  }

  .rental-plans {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roi-inputs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  :root {
    --nav-height: 70px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 16px 24px;
    border-radius: 28px;
    overflow: hidden;
  }

  .hero-content {
    order: 1;
    gap: 0;
  }

  .hero-visual {
    display: flex;
    order: 2;
    margin-top: 2px;
  }

  .hero-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-title-main {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
    letter-spacing: 0.01em;
  }

  .hero-title-sub {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    letter-spacing: 0.1em;
    margin-top: 4px;
  }

  .hero-tagline {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
    margin-bottom: 22px;
    line-height: 1.1;
  }

  .hero-buttons {
    width: 100%;
    justify-content: center;
  }

  .btn-hero {
    width: min(100%, 320px);
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  .hero-bg-swoosh {
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-bg-swoosh::before {
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-bg-swoosh::after {
    width: 100%;
    height: 56%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .roi-inputs {
    grid-template-columns: 1fr;
  }

  .roi-card {
    padding: 28px 20px;
  }

  .cta-form-card {
    padding: 28px 20px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100svh - var(--nav-height));
    padding: 12px 0 18px;
  }

  .hero .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px 16px 24px;
    border-radius: 28px;
    overflow: hidden;
    /* background: linear-gradient(180deg, #06307386 0%, #041d498f 48%, #06367d8c 100%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22); */
    /* background: linear-gradient(180deg, #062f73 0%, #041d49 48%, #06357d 100%);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28); */
  }

  .hero-content {
    order: 1;
    gap: 0;
  }

  .hero-visual {
    display: flex;
    order: 2;
    margin-top: 2px;
  }

  .hero-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .hero-title {
    margin-bottom: 14px;
  }

  .hero-title-main {
    font-size: clamp(1.7rem, 9vw, 2.25rem);
    letter-spacing: 0.01em;
  }

  .hero-title-sub {
    font-size: clamp(0.78rem, 3.2vw, 0.95rem);
    letter-spacing: 0.1em;
    margin-top: 4px;
  }

  .hero-tagline {
    font-size: clamp(1.25rem, 7vw, 1.75rem);
    margin-bottom: 22px;
    line-height: 1.1;
  }

  .hero-buttons {
    width: 100%;
    justify-content: center;
  }

  .btn-hero {
    width: min(100%, 320px);
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.88rem;
    border-radius: 10px;
  }

  .hero-bg-swoosh {
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-bg-swoosh::before {
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-bg-swoosh::after {
    width: 100%;
    height: 56%;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .float-btns {
    bottom: 20px;
    right: 16px;
  }
}

/* --- FAQ Accordion ------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  content: '-';
}

.faq-a {
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* --- CTA Inner Grid responsive ------------------- */
@media (max-width: 900px) {
  .cta-inner>div {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
}

/* --- Product detail 3-col responsive ------------- */
@media (max-width: 1100px) {

  div[style*="grid-template-columns:1fr 1fr 380px"],
  div[style*="grid-template-columns: 1fr 1fr 380px"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {

  div[style*="grid-template-columns:1fr 1fr 380px"],
  div[style*="grid-template-columns: 1fr 1fr 380px"] {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ===================================================
   Page-Specific Styles
   =================================================== */

.page-home .filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.page-home .filter-btn.active,
.page-home .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.page-home [data-category] {
  transition: opacity 0.3s ease;
}

@media (max-width: 900px) {
  .page-home .cta-inner>div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

.page-products .filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.page-products .filter-btn {
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
}

.page-products .filter-btn.active,
.page-products .filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.page-products [data-category] {
  transition: opacity 0.3s ease;
}

.page-franchise .support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-franchise .support-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.page-franchise .support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.page-franchise .support-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.page-franchise .support-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .page-franchise .support-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .page-franchise .support-grid {
    grid-template-columns: 1fr;
  }
}

.page-contact .contact-info-card {
  background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
  border-radius: 20px;
  border: none;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
  color: #fff;
}

.page-contact .contact-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-contact .contact-block:last-child {
  border-bottom: none;
}

.page-contact .contact-block-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #00AEEF, #0055CC);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact .contact-block-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.page-contact .contact-block-value {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.page-contact .contact-block-value a {
  color: #fff;
  transition: var(--transition);
}

.page-contact .contact-block-value a:hover {
  color: var(--accent);
}

.page-contact .map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
  background: linear-gradient(135deg, #F0F4FF, #E8F0FE);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-request-demo .demo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.page-request-demo .demo-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.page-request-demo .demo-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-request-demo .demo-step-num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.375rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(0, 59, 149, 0.1);
}

.page-request-demo .demo-step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.page-request-demo .demo-step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-request-demo .demo-steps {
    grid-template-columns: 1fr 1fr;
  }

  .page-request-demo .demo-steps::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-request-demo .demo-steps {
    grid-template-columns: 1fr;
  }
}

.page-product-fusion22 .benefit-item,
.page-product-smarty10 .benefit-item,
.page-product-pulse6 .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
}

.page-product-frozen .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 4px solid #0891b2;
}

.page-product-fusion22 .benefit-icon,
.page-product-smarty10 .benefit-icon,
.page-product-pulse6 .benefit-icon,
.page-product-frozen .benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.page-product-fusion22 .benefit-title,
.page-product-smarty10 .benefit-title,
.page-product-pulse6 .benefit-title,
.page-product-frozen .benefit-title {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.page-product-fusion22 .benefit-desc,
.page-product-smarty10 .benefit-desc,
.page-product-pulse6 .benefit-desc,
.page-product-frozen .benefit-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-product-fusion22 .inquiry-sidebar,
.page-product-smarty10 .inquiry-sidebar,
.page-product-pulse6 .inquiry-sidebar,
.page-product-frozen .inquiry-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

@media (max-width: 900px) {
  .page-product-fusion22 .product-detail-grid {
    grid-template-columns: 1fr !important;
  }

  .page-product-fusion22 .product-gallery {
    position: static !important;
  }

  .page-product-fusion22 .inquiry-sidebar,
  .page-product-smarty10 .inquiry-sidebar,
  .page-product-pulse6 .inquiry-sidebar,
  .page-product-frozen .inquiry-sidebar {
    position: static;
  }
}

.page-product-frozen .frozen-hero-extra {
  background: linear-gradient(135deg, #001D5C, #003B95);
  padding: 0 0 48px;
}

.page-product-frozen .frozen-badge-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
}

.page-product-frozen .frozen-badge-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  text-align: center;
}

.page-product-frozen .frozen-badge-icon {
  font-size: 1.75rem;
  margin-bottom: 8px;
  display: block;
}

.page-product-frozen .frozen-badge-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.page-product-frozen .frozen-badge-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .page-product-frozen .frozen-badge-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===================================================
   Extracted Inline Styles
   =================================================== */

.u-inline-001 {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.u-inline-002 {
  color: var(--text-body);
  line-height: 1.8;
}

.u-inline-003 {
  background: linear-gradient(135deg, #F0F4FF, #E8F0FE);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 59, 149, 0.1);
}

.u-inline-004 {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.u-inline-005 {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.u-inline-006 {
  background: linear-gradient(135deg, #F0F4FF, #E8F0FE);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 59, 149, 0.1);
}

.u-inline-007 {
  text-align: center;
  padding: 32px;
}

.u-inline-008 {
  font-size: 4rem;
  margin-bottom: 16px;
}

.u-inline-009 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.u-inline-010 {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.u-inline-011 {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.u-inline-012 {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.u-inline-013 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.u-inline-014 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.u-inline-015 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.u-inline-016 {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.u-inline-017 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.u-inline-018 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.u-inline-019 {
  color: #10B981;
  font-size: 1.1rem;
}

.u-inline-020 {
  color: var(--accent);
}

.u-inline-021 {
  color: white;
  margin-bottom: 16px;
}

.u-inline-022 {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.u-inline-023 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.u-inline-024 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.u-inline-025 {
  font-size: 1.875rem;
}

.u-inline-026 {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.u-inline-027 {
  font-size: 0.9375rem;
}

.u-inline-028 {
  color: #25D366;
  font-size: 1rem;
}

.u-inline-029 {
  margin-top: 32px;
}

.u-inline-030 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.u-inline-031 {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.u-inline-032 {
  margin-top: 8px;
}

.u-inline-033 {
  font-size: 1.875rem;
  margin-bottom: 8px;
}

.u-inline-034 {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.u-inline-035 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.u-inline-036 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.u-inline-037 {
  justify-content: center;
}

.u-inline-038 {
  display: inline-flex;
  margin-bottom: 16px;
}

.u-inline-039 {
  color: white;
}

.u-inline-040 {
  margin-top: 28px;
}

.u-inline-041 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.u-inline-042 {
  background: rgba(255, 255, 255, 0.07);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.u-inline-043 {
  color: rgba(255, 255, 255, 0.55);
}

.u-inline-044 {
  margin-top: 24px;
}

.u-inline-045 {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.u-inline-046 {
  color: rgba(255, 255, 255, 0.35);
}

.u-inline-047 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.u-inline-048 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.u-inline-049 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.u-inline-050 {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.u-inline-051 {
  background: linear-gradient(135deg, var(--primary), #0055CC);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
}

.u-inline-052 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.u-inline-053 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.u-inline-054 {
  color: var(--accent);
  font-size: 1.25rem;
}

.u-inline-055 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.u-inline-056 {
  width: 100%;
  justify-content: center;
}

.u-inline-057 {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 24px;
}

.u-inline-058 {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.u-inline-059 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.u-inline-060 {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
}

.u-inline-061 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.u-inline-062 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.u-inline-063 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.u-inline-064 {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
}

.u-inline-065 {
  padding-left: 28px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.u-inline-066 {
  text-align: center;
  margin-top: 8px;
}

.u-inline-067 {
  color: var(--accent);
}

.u-inline-068 {
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
}

.u-inline-069 {
  text-align: center;
  margin-top: 48px;
}

.u-inline-070 {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.u-inline-071 {
  text-align: center;
  margin-top: 32px;
}

.u-inline-072 {
  width: 100%;
  accent-color: var(--primary);
  margin-top: 10px;
  height: 6px;
  cursor: pointer;
}

.u-inline-073 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.u-inline-074 {
  display: flex;
  align-items: center;
  gap: 14px;
}

.u-inline-075 {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.u-inline-076 {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.u-inline-077 {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.u-inline-078 {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
}

.u-inline-079 {
  color: white;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.u-inline-080 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.u-inline-081 {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  padding: 14px;
}

.u-inline-082 {
  display: grid;
  grid-template-columns: 1fr 1fr 380px;
  gap: 40px;
  align-items: start;
}

.u-inline-083 {
  font-size: 2rem;
  color: #0891b2;
  margin-bottom: 12px;
}

.u-inline-084 {
  color: #0891b2;
}

.u-inline-085 {
  background: linear-gradient(90deg, #0891b2, #00AEEF);
}

.u-inline-086 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.u-inline-087 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 16px;
}

.u-inline-088 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.u-inline-089 {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.u-inline-090 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.u-inline-091 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
}

.u-inline-092 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #25D366;
  font-weight: 600;
}

.u-inline-093 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.u-inline-094 {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: 16px auto 36px;
  font-size: 1.0625rem;
}

.u-inline-095 {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 28px;
}

.u-inline-096 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.u-inline-097 {
  background: linear-gradient(135deg, #F0F4FF, #E8F0FE);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(0, 59, 149, 0.1);
}

.u-inline-098 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.u-inline-099 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.875rem;
}

.u-inline-100 {
  background: linear-gradient(135deg, #F0FFF4, #E6FFED);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.u-inline-101 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #059669;
  font-size: 0.875rem;
}

.u-inline-102 {
  background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.u-inline-103 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #D97706;
  font-size: 0.875rem;
}

.u-inline-104 {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.u-inline-105 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #2563EB;
  font-size: 0.875rem;
}

.u-inline-106 {
  font-size: 0.8125rem;
  opacity: 0.75;
  margin-top: 6px;
}

.u-inline-107 {
  color: #10B981;
}

.u-inline-108 {
  border: 2px solid var(--primary);
}

.u-inline-109 {
  background: linear-gradient(135deg, #003B95, #0055CC);
}

.u-inline-110 {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.u-inline-111 {
  position: relative;
}

.u-inline-112 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.u-inline-113 {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.u-inline-114 {
  margin-top: 36px;
  padding: 20px;
  background: linear-gradient(135deg, #F0F4FF, #E8F0FE);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 59, 149, 0.15);
}

.u-inline-115 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.u-inline-116 {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.u-inline-117 {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.u-inline-118 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.u-inline-119 {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.u-inline-120 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.u-inline-121 {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.875rem;
}

.u-inline-122 {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.u-inline-123 {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.0625rem;
}

.u-inline-124 {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.u-inline-125 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.u-inline-126 {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
}

.u-inline-127 {
  font-size: 1.25rem;
}

.u-inline-128 {
  font-weight: 600;
}