/* ===== CTS360 STYLESHEET v2 ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Palette */
  --navy:      #082B4C;
  --blue:      #0A63E8;
  --azure:     #008FEA;
  --cyan:      #00D8E6;
  --teal:      #00C9B7;
  --white:     #FFFFFF;
  --offwhite:  #E8FBFD;
  --gray50:    #F3F6F8;
  --gray100:   #E8F0FB;
  --gray400:   #667582;
  --gray600:   #475569;
  --gray800:   #0B1520;
  /* Gradients */
  --grad-hero:   linear-gradient(135deg, #082B4C 0%, #0A2060 50%, #0A3A6B 100%);
  --grad-accent: linear-gradient(90deg, #0A63E8 0%, #00D8E6 50%, #00C9B7 100%);
  --grad-card:   linear-gradient(135deg, #0A63E8 0%, #00D8E6 100%);
  --grad-btn:    linear-gradient(90deg, #0A63E8, #008FEA);
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(8,43,76,0.08);
  --shadow-md: 0 8px 32px rgba(8,43,76,0.12);
  --shadow-lg: 0 20px 60px rgba(8,43,76,0.18);
  --radius:    12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray800);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: 'Inter', sans-serif; line-height: 1.18; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--gray600); }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 110px 0; }
.section-alt { background: var(--gray50); }
.section-dark { background: var(--navy); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ===== EYEBROW / SECTION LABELS ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-header h2 { color: var(--navy); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--gray600); }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,43,76,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,216,230,0.08);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(8,43,76,0.4); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links > a, .nav-links > .has-dropdown > a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 8px 11px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links > a:hover, .nav-links > .has-dropdown > a:hover { color: var(--cyan); background: rgba(0,216,230,0.07); }
.nav-links .nav-cta {
  background: var(--grad-btn);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 8px;
  font-size: 0.84rem;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); background: var(--grad-btn); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.7; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(0,216,230,0.12);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
  display: none;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.has-dropdown.dropdown-open .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: rgba(0,216,230,0.1); color: var(--cyan); }
.dropdown .dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 6px 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.85); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  padding: 13px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-links a:hover { background: rgba(0,216,230,0.08); color: var(--cyan); }
.mobile-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 18px 16px 6px;
  opacity: 0.7;
}
.mobile-cta { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 16px; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--grad-hero);
  padding: 130px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,216,230,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header-content { max-width: 720px; }
.page-header h1 { color: var(--white); margin-bottom: 18px; }
.page-header p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 600px; }
.page-header .eyebrow { margin-bottom: 12px; }
.page-header .hero-btns { margin-top: 32px; }

/* ===== HERO ===== */
.hero {
  background: var(--grad-hero);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,216,230,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,99,232,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 780px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,216,230,0.12);
  border: 1px solid rgba(0,216,230,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 span { background: var(--grad-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero > .container > .hero-content > p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 600px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.stat-item {}
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.stat-num span { background: var(--grad-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.52); margin-top: 4px; font-weight: 500; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--grad-btn);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(10,99,232,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,99,232,0.45); opacity: 0.95; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,216,230,0.07); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  padding: 8px 0;
  font-size: 0.88rem;
}
.btn-ghost:hover { color: var(--cyan); gap: 12px; }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-teal {
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,201,183,0.3);
}
.btn-teal:hover { transform: translateY(-2px); opacity: 0.92; }
.btn-sm { padding: 8px 16px; font-size: 0.84rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy); border-top: 1px solid rgba(0,216,230,0.1); border-bottom: 1px solid rgba(0,216,230,0.1); padding: 16px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.trust-item svg { color: var(--cyan); flex-shrink: 0; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid rgba(8,43,76,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,216,230,0.2); }
.svc-icon {
  width: 52px; height: 52px;
  background: var(--offwhite);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  transition: background var(--transition);
}
.card:hover .svc-icon { background: rgba(10,99,232,0.08); color: var(--cyan); }
.card h3 { color: var(--navy); margin-bottom: 10px; }

/* Card Accent */
.card-accent {
  background: var(--grad-card);
  color: var(--white);
  border: none;
}
.card-accent h3 { color: var(--white); }
.card-accent p { color: rgba(255,255,255,0.75); }

/* Package Cards */
.pkg-card {
  background: var(--white);
  border: 1.5px solid rgba(8,43,76,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cyan); }
.pkg-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.pkg-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-name { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.pkg-desc { font-size: 0.88rem; color: var(--gray400); margin-bottom: 24px; line-height: 1.5; }
.pkg-features { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--gray600); line-height: 1.5; }
.pkg-features li::before { content: ''; display: block; width: 18px; height: 18px; min-width: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D8E6' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat; margin-top: 1px; }

/* ===== FEATURE ITEMS ===== */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray50);
  border: 1px solid rgba(8,43,76,0.06);
  border-radius: 8px;
}
.feature-check {
  width: 20px; height: 20px; min-width: 20px;
  background: var(--grad-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-top: 1px;
}
.feature-item p { margin: 0; font-size: 0.9rem; color: var(--gray600); }

/* ===== CONTENT SECTIONS ===== */
.content-image {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.content-image::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,216,230,0.12) 0%, transparent 70%);
}
.content-image-inner { text-align: center; position: relative; z-index: 1; }
.big-icon { width: 80px; height: 80px; margin: 0 auto 20px; color: var(--cyan); opacity: 0.85; }
.big-icon svg { width: 100%; height: 100%; }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: var(--grad-accent);
  opacity: 0.2;
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--grad-card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(10,99,232,0.3);
}
.step h4 { color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--gray400); }

/* ===== TAGS / PILLS ===== */
.tag {
  display: inline-block;
  background: var(--offwhite);
  color: var(--blue);
  border: 1px solid rgba(10,99,232,0.15);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* ===== INFO BOX ===== */
.info-box {
  background: var(--offwhite);
  border: 1px solid rgba(0,216,230,0.2);
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box p { margin: 0; font-size: 0.95rem; color: var(--navy); font-weight: 500; }

.warn-box {
  background: #fff8e6;
  border: 1px solid rgba(234,179,8,0.2);
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.warn-box p { margin: 0; font-size: 0.95rem; color: #92400e; font-weight: 500; }

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid rgba(8,43,76,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { background: var(--gray50); }
.faq-q svg { flex-shrink: 0; transition: transform var(--transition); color: var(--cyan); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: var(--gray50);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 16px 24px 20px; font-size: 0.92rem; color: var(--gray600); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--grad-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,216,230,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .eyebrow { justify-content: center; }
.cta-section h2 { color: var(--white); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer {
  background: #040e1c;
  border-top: 1px solid rgba(0,216,230,0.08);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.social-link:hover { background: rgba(0,216,230,0.12); border-color: var(--cyan); color: var(--cyan); }
.footer-heading { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--cyan); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-contact-item svg { color: var(--cyan); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.34s; }

/* ===== PAGE-SPECIFIC UTILS ===== */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* Two-column list */
.list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--gray600); }
.check-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px; min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D8E6' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* Highlight box */
.highlight-box {
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.highlight-box h3 { color: var(--white); margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,0.72); }

/* Solution diagram */
.solution-flow {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 4px;
  margin: 32px 0;
}
.flow-step {
  background: var(--gray50);
  border: 1px solid rgba(8,43,76,0.07);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--cyan);
  z-index: 1;
}
.flow-num { font-size: 1.8rem; font-weight: 800; color: var(--blue); letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.flow-step h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 6px; }
.flow-step p { font-size: 0.82rem; color: var(--gray400); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .solution-flow { grid-template-columns: 1fr; }
  .flow-step:not(:last-child)::after { content: '↓'; right: auto; left: 50%; top: auto; bottom: -16px; transform: translateX(-50%); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 60px; }
  .hero-stats { gap: 24px; }
  .section { padding: 56px 0; }
  .trust-bar-inner { gap: 16px; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .list-2col { grid-template-columns: 1fr; }
  .solution-flow { grid-template-columns: 1fr; }
  .page-header { padding: 110px 0 48px; }
}


