/* Start custom CSS *//* ================================================================
   GLOBAL STYLES & VARIABLES
   ================================================================ */
:root {
  --red: #C8102E;
  --red-dark: #9B0B21;
  --red-light: #F9E5E8;
  --emblem: #E8392A;
  --navy: #0A1628;
  --navy-mid: #142240;
  --slate: #2D3D55;
  --muted: #6B7A90;
  --border: #E3E7EE;
  --bg: #F6F8FC;
  --white: #FFFFFF;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-hover: 0 8px 32px rgba(10,22,40,0.14);
}

*, *::before, *::after { box-sizing: border-box; }

.cio-section { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.cio-btn-primary {
  display: inline-block; background: var(--red); color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.cio-btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.cio-btn-outline {
  display: inline-block; background: transparent; color: var(--red); font-family: var(--font-head);
  font-weight: 600; font-size: 15px; padding: 13px 28px; border-radius: 8px;
  text-decoration: none; border: 2px solid var(--red); cursor: pointer; transition: all 0.2s;
}
.cio-btn-outline:hover { background: var(--red); color: #fff; }

@media (max-width: 768px) {
  .cio-section { padding: 0 16px; }
}

/* ================================================================
   BLOCK 1: NAVIGATION STYLES
   ================================================================ */
.cio-nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100; width: 100%;
}
.cio-nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.cio-logo {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.cio-logo-emblem {
  width: 28px; height: 28px; background: var(--red); border-radius: 50% 4px 50% 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cio-logo-emblem svg { width: 14px; height: 14px; fill: #fff; }
.cio-logo span { color: var(--red); }
.cio-nav-links { display: flex; align-items: center; gap: 6px; }
.cio-nav-links a {
  font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--slate);
  text-decoration: none; padding: 8px 14px; border-radius: 6px; transition: all 0.15s;
}
.cio-nav-links a:hover { color: var(--red); background: var(--red-light); }
.cio-nav-cta { margin-left: 8px; }
.cio-nav-mobile { display: none; }
@media (max-width: 768px) {
  .cio-nav-links { display: none; }
  .cio-nav-mobile { display: block; background: none; border: none; cursor: pointer; padding: 8px; }
  .cio-nav-mobile span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }
}

/* ================================================================
   BLOCK 2: HERO STYLES
   ================================================================ */
.cio-hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 96px 0 80px;
}
.cio-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, #1A2E50 0%, transparent 70%);
  pointer-events: none;
}
.cio-hero-grid {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cio-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,16,46,0.18); border: 1px solid rgba(200,16,46,0.35);
  color: #FF6B7A; font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.cio-hero h1 {
  font-family: var(--font-head); font-size: clamp(32px, 4vw, 52px); font-weight: 800;
  color: #fff; line-height: 1.1; margin: 0 0 20px; letter-spacing: -0.02em;
}
.cio-hero h1 em { color: #FF6B7A; font-style: normal; }
.cio-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.68); line-height: 1.7;
  margin: 0 0 36px; font-weight: 300;
}
.cio-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cio-hero-btn-ghost {
  display: inline-block; background: rgba(255,255,255,0.1); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; padding: 14px 28px;
  border-radius: 8px; text-decoration: none; border: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s;
}
.cio-hero-btn-ghost:hover { background: rgba(255,255,255,0.18); }
.cio-hero-stats {
  display: flex; gap: 32px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cio-hero-stat-num {
  font-family: var(--font-head); font-size: 28px; font-weight: 800; color: #fff;
}
.cio-hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.cio-hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative;
}
.cio-hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 20px; transition: background 0.2s;
}
.cio-hero-card:first-child { grid-column: span 2; background: rgba(200,16,46,0.15); border-color: rgba(200,16,46,0.3); }
.cio-hero-card:hover { background: rgba(255,255,255,0.1); }
.cio-hero-card-icon {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 18px;
}
.cio-hero-card-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.cio-hero-card-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.5; }
.cio-hero-card-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; margin-bottom: 10px;
}
@media (max-width: 900px) {
  .cio-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .cio-hero-visual { display: none; }
}

/* ================================================================
   BLOCK 3: SEGMENTED SERVICES STYLES
   ================================================================ */
.cio-segments { padding: 72px 0; background: var(--bg); }
.cio-section-label {
  font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.cio-section-title {
  font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px); font-weight: 800;
  color: var(--navy); margin: 0 0 12px; line-height: 1.2;
}
.cio-section-sub { font-size: 16px; color: var(--muted); margin: 0 0 40px; max-width: 540px; }
.cio-segments-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.cio-seg-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 20px; text-decoration: none; display: block;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.cio-seg-card:hover {
  box-shadow: var(--shadow-hover); border-color: var(--red); transform: translateY(-3px);
}
.cio-seg-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.cio-seg-name {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--navy); margin: 0 0 6px;
}
.cio-seg-count { font-size: 13px; color: var(--muted); }
.cio-seg-arrow {
  display: inline-block; color: var(--red); font-size: 18px; margin-top: 14px; transition: transform 0.15s;
}
.cio-seg-card:hover .cio-seg-arrow { transform: translateX(4px); }

/* ================================================================
   BLOCK 4: FREE OFFERS HERO STYLES
   ================================================================ */
.cio-free-hero {
  background: var(--navy); padding: 72px 0; overflow: hidden; position: relative;
}
.cio-free-hero::before {
  content: '$0'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-head); font-size: 320px; font-weight: 800;
  color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none;
}
.cio-free-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 16px;
  border-radius: 100px; margin-bottom: 20px;
}
.cio-free-badge-dot {
  width: 8px; height: 8px; background: #2ECC71; border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.cio-free-header { margin-bottom: 48px; }
.cio-free-header h2 {
  font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: #fff; margin: 0 0 12px; line-height: 1.15;
}
.cio-free-header h2 em { color: #2ECC71; font-style: normal; }
.cio-free-header p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0; }
.cio-free-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.cio-offer-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px; transition: all 0.2s; position: relative;
  overflow: hidden;
}
.cio-offer-card:hover {
  background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.cio-offer-price {
  font-family: var(--font-head); font-size: 32px; font-weight: 800; color: #2ECC71;
  margin-bottom: 4px; display: flex; align-items: baseline; gap: 6px;
}
.cio-offer-price span { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 400; }
.cio-offer-segment {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 14px;
}
.cio-offer-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff;
  margin: 0 0 10px;
}
.cio-offer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0 0 20px; }
.cio-offer-provider {
  display: flex; align-items: center; gap: 10px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.cio-offer-avatar {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(200,16,46,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 12px; font-weight: 700; color: #FF9AA2;
  flex-shrink: 0;
}
.cio-offer-pname { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); }
.cio-offer-ploc { font-size: 12px; color: rgba(255,255,255,0.35); }
.cio-offer-cta {
  display: inline-block; margin-top: 20px; background: rgba(46,204,113,0.15);
  color: #2ECC71; border: 1px solid rgba(46,204,113,0.3); font-family: var(--font-head);
  font-size: 13px; font-weight: 600; padding: 10px 20px; border-radius: 6px;
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.02em;
}
.cio-offer-cta:hover { background: rgba(46,204,113,0.25); border-color: rgba(46,204,113,0.6); }
.cio-offer-limit {
  position: absolute; top: 20px; right: 20px;
  font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 500;
}
.cio-free-view-all { text-align: center; margin-top: 40px; }
.cio-free-view-all a {
  color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 2px;
  transition: color 0.2s;
}
.cio-free-view-all a:hover { color: #fff; }

/* ================================================================
   BLOCK 5: HOW IT WORKS STYLES
   ================================================================ */
.cio-how { padding: 72px 0; background: var(--white); }
.cio-how-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0; margin-top: 48px; position: relative;
}
.cio-how-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5% + 14px);
  right: calc(12.5% + 14px); height: 2px; background: var(--border);
  z-index: 0;
}
.cio-how-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.cio-step-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 800; position: relative;
}
.cio-how-step:first-child .cio-step-num { background: var(--red); }
.cio-step-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.cio-step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
@media (max-width: 600px) {
  .cio-how-steps { gap: 32px; }
  .cio-how-steps::before { display: none; }
}

/* ================================================================
   BLOCK 6: WHY CHOOSE US & FORM combo STYLES
   ================================================================ */
.cio-inquiry { padding: 80px 0; background: var(--bg); }
.cio-inquiry-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.cio-inquiry-left h2 {
  font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px); font-weight: 800;
  color: var(--navy); margin: 0 0 16px; line-height: 1.2;
}
.cio-inquiry-left p { font-size: 16px; color: var(--muted); line-height: 1.7; margin: 0 0 32px; }
.cio-inquiry-point {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px;
}
.cio-inquiry-check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--red-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.cio-inquiry-check svg { width: 12px; height: 12px; fill: var(--red); }
.cio-inquiry-point-text strong { display: block; font-size: 15px; color: var(--navy); font-weight: 600; }
.cio-inquiry-point-text span { font-size: 14px; color: var(--muted); }
.cio-form {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
}
.cio-form-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy);
  margin: 0 0 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.cio-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cio-form-group { margin-bottom: 16px; }
.cio-form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--slate);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.cio-form-group label .req { color: var(--red); margin-left: 2px; }
.cio-form-group input,
.cio-form-group select,
.cio-form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 14px; font-family: var(--font-body); font-size: 15px; color: var(--navy);
  background: var(--white); outline: none; transition: border-color 0.15s;
  appearance: none; -webkit-appearance: none;
}
.cio-form-group input:focus,
.cio-form-group select:focus,
.cio-form-group textarea:focus { border-color: var(--red); }
.cio-form-group textarea { min-height: 110px; resize: vertical; }
.cio-form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7A90' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.cio-form-consent { font-size: 12px; color: var(--muted); margin: 16px 0 20px; line-height: 1.6; }
.cio-form-consent a { color: var(--red); text-decoration: none; }
.cio-form-submit { width: 100%; padding: 15px; font-size: 16px; }
@media (max-width: 900px) {
  .cio-inquiry-wrap { grid-template-columns: 1fr; gap: 40px; }
  .cio-inquiry-left { order: 2; }
  .cio-form { order: 1; }
}
@media (max-width: 520px) {
  .cio-form-row { grid-template-columns: 1fr; }
  .cio-form { padding: 24px; }
}

/* ================================================================
   BLOCK 7: FOOTER STYLES
   ================================================================ */
.cio-footer { background: var(--navy); padding: 56px 0 32px; }
.cio-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.cio-footer-brand .cio-logo { color: #fff; margin-bottom: 14px; display: inline-flex; }
.cio-footer-brand .cio-logo span { color: #FF6B7A; }
.cio-footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.cio-footer-col h4 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin: 0 0 16px;
}
.cio-footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none;
  margin-bottom: 10px; transition: color 0.15s;
}
.cio-footer-col a:hover { color: #fff; }
.cio-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.cio-footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.cio-footer-copy a { color: rgba(255,255,255,0.5); text-decoration: none; }
.cio-footer-copy a:hover { color: #fff; }
@media (max-width: 768px) {
  .cio-footer-grid { grid-template-columns: 1fr 1fr; }
  .cio-footer-brand { grid-column: span 2; }
}
@media (max-width: 480px) {
  .cio-footer-grid { grid-template-columns: 1fr; }
  .cio-footer-brand { grid-column: span 1; }
}/* End custom CSS */