/* ═══════════════════════════════════════════
   iZi Guard Patrol — izi_guard.css
   Based on official IZITECH brochure 2026
═══════════════════════════════════════════ */

:root {
  --navy:    #061525;
  --deep:    #0b2e4a;
  --mid:     #0d4a7a;
  --accent:  #f5a623;
  --gold:    #e8961e;
  --bright:  #29b8e5;
  --green:   #2ecc71;
  --red:     #e74c3c;
  --white:   #ffffff;
  --text:    #c8d8e8;
  --muted:   #7a9bb5;
  --ease:    cubic-bezier(.25,.46,.45,.94);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
.container { max-width: 1320px; margin: auto; padding: 0 52px; }

/* ── LABELS & TITLES ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.section-label::before {
  content: ''; display: block;
  width: 32px; height: 2px;
  background: var(--accent); flex-shrink: 0;
}
.section-label.center { justify-content: center; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 800; line-height: 1.04;
  letter-spacing: -0.5px; text-transform: uppercase;
}
.section-title em    { font-style: normal; color: var(--bright); }
.section-title.center { text-align: center; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(44px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible      { opacity: 1; transform: translateY(0); }
.reveal-delay-1      { transition-delay: .10s; }
.reveal-delay-2      { transition-delay: .20s; }
.reveal-delay-3      { transition-delay: .30s; }
.reveal-delay-4      { transition-delay: .40s; }
.reveal-delay-5      { transition-delay: .50s; }
.reveal-delay-6      { transition-delay: .60s; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 16px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 38px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.38); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 38px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: border-color .2s, background .2s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--bright); background: rgba(41,184,229,.10); }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px; height: 100px;
  background: #fff; border-bottom: 4px solid var(--accent);
  box-shadow: 0 4px 32px rgba(0,0,0,.12);
  transition: height .3s, box-shadow .3s;
}
.navbar.scrolled { height: 80px; box-shadow: 0 6px 40px rgba(0,0,0,.18); }
.logo-wrap { display: flex; align-items: center; height: 100%; padding: 12px 0; }
.logo-wrap img { height: 76px; width: auto; object-fit: contain; background: transparent; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 17px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--navy); transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: width .3s;
}
.nav-links a:hover            { color: var(--mid); }
.nav-links a:hover::after     { width: 100%; }
.nav-cta {
  background: var(--accent); color: var(--navy) !important;
  padding: 11px 26px; border-radius: 4px;
  font-size: 15px !important; font-weight: 800 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover          { background: var(--gold) !important; transform: translateY(-1px); }
.nav-cta::after         { display: none !important; }
/* Price tag in nav */
.nav-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  color: var(--navy); background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.5);
  padding: 6px 14px; border-radius: 20px;
}
.nav-price span { color: var(--accent); font-size: 15px; font-weight: 900; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #061525 0%, #0a2a44 50%, #071e32 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(41,184,229,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,184,229,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; width: 700px; height: 700px;
  right: -100px; top: 50%; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(41,184,229,.12) 0%, rgba(13,74,122,.06) 40%, transparent 70%);
  border-radius: 50%; animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(-50%) scale(1.08); }
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,21,37,.97) 0%, rgba(6,21,37,.6) 55%, transparent 100%);
}
.hero-stripe {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(to right, var(--accent), var(--bright)); z-index: 3;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; padding: 80px 0;
}

/* Price badge top */
.hero-price-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px; margin-bottom: 20px;
  animation: fadeUp .8s .1s var(--ease) both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(41,184,229,.12); border: 1px solid rgba(41,184,229,.35);
  color: var(--bright);
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 2px; margin-bottom: 20px;
  animation: fadeUp .8s .2s var(--ease) both;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 900; line-height: .92;
  text-transform: uppercase; letter-spacing: -2px;
  animation: fadeUp .9s .4s var(--ease) both;
}
.hero h1 .line1 { display: block; color: var(--white); }
.hero h1 .line2 { display: block; color: var(--accent); }
.hero h1 .line3 {
  display: block; color: var(--bright);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 700; letter-spacing: -1px; margin-top: 10px;
}
.hero-sub {
  margin-top: 22px; font-size: 18px; font-weight: 400;
  color: #d0e8f8; max-width: 540px; line-height: 1.7;
  animation: fadeUp .9s .6s var(--ease) both;
}
.hero-actions {
  margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .9s .8s var(--ease) both;
}
.hero-stat-row {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
  animation: fadeUp .9s 1s var(--ease) both;
}
.hero-stat-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(13,74,122,.5); border: 1px solid rgba(41,184,229,.2);
  padding: 10px 16px; border-radius: 4px;
}
.hero-stat-pill .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1;
}
.hero-stat-pill .lbl {
  font-size: 10px; font-weight: 600; color: #a0c0d8;
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* ── PHONE CLUSTER ── */
.hero-phones {
  position: relative; width: 100%; height: 580px;
  animation: fadeUp 1s .5s var(--ease) both;
}
.phone-wrap {
  position: absolute; background: #0d1117;
  border-radius: 32px; border: 3px solid #2a3a4a;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.8);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.phone-wrap img { width: 100%; height: auto; display: block; }
.phone-main {
  width: 210px; z-index: 5; top: 50%; left: 50%;
  transform: translate(-50%,-52%);
  border-color: #3a6a9a;
  box-shadow: 0 32px 80px rgba(0,0,0,.9), 0 0 50px rgba(41,184,229,.18);
}
.phone-main:hover { transform: translate(-50%,-60%) scale(1.04); }
.phone-left {
  width: 172px; z-index: 3; top: 50%; left: 10%;
  transform: translateY(-48%) rotate(-12deg); opacity: .84;
}
.phone-left:hover  { transform: translateY(-56%) rotate(-12deg) scale(1.05); opacity: 1; }
.phone-right {
  width: 172px; z-index: 3; top: 50%; right: 10%;
  transform: translateY(-48%) rotate(12deg); opacity: .84;
}
.phone-right:hover { transform: translateY(-56%) rotate(12deg) scale(1.05); opacity: 1; }
.phone-back-l {
  width: 145px; z-index: 1; top: 8%; left: 20%;
  transform: rotate(-20deg); opacity: .40;
}
.phone-back-r {
  width: 145px; z-index: 1; top: 8%; right: 20%;
  transform: rotate(20deg); opacity: .40;
}
.phone-bottom {
  width: 185px; z-index: 4; bottom: 2%; left: 50%;
  transform: translateX(-50%) rotate(4deg); opacity: .72;
}
.phone-bottom:hover { transform: translateX(-50%) translateY(-8px) rotate(4deg) scale(1.04); opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   WHY CHOOSE — brochure section
══════════════════════════════════════ */
.why-section {
  background: var(--deep);
  border-top: 1px solid rgba(41,184,229,.14);
  border-bottom: 1px solid rgba(41,184,229,.14);
  padding: 88px 0;
}
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.why-intro {
  font-size: 18px; color: #daeaf8;
  line-height: 1.8; margin-top: 20px;
}
.why-intro strong { color: var(--white); }
.why-list {
  display: flex; flex-direction: column; gap: 14px; margin-top: 0;
}
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(6,21,37,.6); border: 1px solid rgba(41,184,229,.12);
  border-left: 4px solid var(--bright);
  padding: 16px 20px; border-radius: 6px;
  transition: border-color .3s, background .3s;
}
.why-item:hover { border-color: var(--accent); background: rgba(13,74,122,.25); }
.why-item i { color: var(--green); font-size: 17px; margin-top: 2px; flex-shrink: 0; }
.why-item p { font-size: 17px; color: #c8e0f4; line-height: 1.6; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-section { padding: 96px 0; background: var(--navy); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 60px;
  border: 1px solid rgba(41,184,229,.14);
  border-radius: 10px; overflow: hidden;
}
.step-card {
  background: rgba(13,74,122,.15); padding: 40px 26px;
  text-align: center; border-right: 1px solid rgba(41,184,229,.12);
  transition: background .3s;
}
.step-card:last-child { border-right: none; }
.step-card:hover { background: rgba(13,74,122,.44); }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 900;
  color: rgba(41,184,229,.15); line-height: 1; margin-bottom: 14px;
}
.step-icon {
  width: 64px; height: 64px; background: rgba(41,184,229,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 24px; color: var(--bright);
  transition: background .3s, color .3s;
}
.step-card:hover .step-icon { background: var(--accent); color: var(--navy); }
.step-card h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px;
  font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px;
}
.step-card p { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════
   CORE PLATFORM MODULES (brochure table)
══════════════════════════════════════ */
.modules-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--deep) 0%, #07213a 100%);
  position: relative; overflow: hidden;
}
.modules-section::before {
  content: ''; position: absolute;
  top: -120px; right: -80px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(41,184,229,.07) 0%, transparent 70%);
  pointer-events: none;
}
.modules-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 22px; margin-top: 60px;
}
.module-card {
  position: relative;
  background: rgba(6,21,37,.75); border: 1px solid rgba(41,184,229,.14);
  border-radius: 8px; padding: 34px 28px; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.module-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--bright), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.module-card:hover { transform: translateY(-6px); border-color: rgba(41,184,229,.38); }
.module-card:hover::before { transform: scaleX(1); }
.module-icon {
  width: 62px; height: 62px; background: rgba(41,184,229,.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--bright); margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.module-card:hover .module-icon { background: var(--accent); color: var(--navy); }
.module-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 10px;
}
.module-card p { font-size: 17px; color: #a0c0d8; line-height: 1.75; }

/* ══════════════════════════════════════
   SYSTEM DIAGRAM
══════════════════════════════════════ */
.diagram-section {
  padding: 96px 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.diagram-section::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(41,184,229,.05) 0%, transparent 70%);
  pointer-events: none;
}
.diagram-wrap {
  margin-top: 56px;
  background: rgba(11,46,74,.5);
  border: 1px solid rgba(41,184,229,.18);
  border-radius: 16px; padding: 40px 36px; overflow: hidden;
}
.diagram-wrap svg { width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════
   APP SCREENSHOTS STRIP
══════════════════════════════════════ */
.screens-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--deep) 0%, #07213a 100%);
}
.screens-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 72px; align-items: center;
}
.screens-text p { font-size: 18px; color: #d8eaf6; line-height: 1.8; margin-top: 18px; }
.screens-text p + p { margin-top: 12px; }
.app-badges { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.app-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); border: 1px solid rgba(41,184,229,.25);
  padding: 11px 20px; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 14px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white);
  transition: border-color .2s, background .2s;
}
.app-badge i { font-size: 20px; color: var(--bright); }
.app-badge:hover { border-color: var(--accent); background: rgba(13,74,122,.3); }
.phones-row {
  display: flex; gap: 16px; overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.phones-row::-webkit-scrollbar { height: 4px; }
.phones-row::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.scroll-phone {
  flex-shrink: 0; width: 155px;
  background: #0d1117; border-radius: 22px;
  border: 2px solid #2a3a4a; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  transition: transform .3s;
}
.scroll-phone:hover { transform: translateY(-6px) scale(1.03); }
.scroll-phone img { width: 100%; height: auto; display: block; border-radius: 20px; }
.scroll-phone .slabel {
  background: rgba(6,21,37,.9); padding: 7px 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); text-align: center;
}

/* ══════════════════════════════════════
   KEY STRATEGIC BENEFITS
══════════════════════════════════════ */
.benefits-section {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--mid) 0%, #0a3e65 100%);
  position: relative; overflow: hidden;
}
.benefits-section::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2329b8e5' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.benefits-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 52px;
}
.benefit-card {
  background: rgba(6,21,37,.4); border: 1px solid rgba(255,255,255,.12);
  border-left: 4px solid var(--accent);
  padding: 24px 22px; border-radius: 6px;
  display: flex; align-items: center; gap: 14px;
  transition: background .3s;
}
.benefit-card:hover { background: rgba(6,21,37,.65); }
.benefit-icon {
  width: 44px; height: 44px; background: rgba(245,166,35,.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--accent); flex-shrink: 0;
}
.benefit-card h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px;
  font-weight: 700; text-transform: uppercase; color: var(--white);
}

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industries-section { padding: 96px 0; background: var(--navy); }
.industries-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 60px;
}
.industry-card {
  background: rgba(11,46,74,.5); border: 1px solid rgba(41,184,229,.14);
  border-radius: 8px; padding: 28px 22px; text-align: center;
  transition: transform .3s, border-color .3s, background .3s;
}
.industry-card:hover {
  transform: translateY(-6px); border-color: rgba(245,166,35,.4);
  background: rgba(13,74,122,.3);
}
.industry-icon {
  font-size: 44px; margin-bottom: 16px; display: block;
}
.industry-card h4 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 18px;
  font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.industry-card p { font-size: 17px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   PRICING (exact from brochure)
══════════════════════════════════════ */
.pricing-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--deep) 0%, #07213a 100%);
}
.pricing-note {
  text-align: center; font-size: 17px;
  color: var(--text); margin-top: 14px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 60px; align-items: start;
}
.pricing-card {
  position: relative; background: rgba(6,21,37,.8);
  border: 1px solid rgba(41,184,229,.14);
  border-radius: 10px; padding: 40px 32px;
  transition: transform .3s, border-color .3s;
}
.pricing-card.popular {
  border-color: var(--accent); transform: scale(1.04);
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(41,184,229,.4); }
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 20px; border-radius: 20px; white-space: nowrap;
}
.plan-tier {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.plan-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 38px;
  font-weight: 800; text-transform: uppercase; color: var(--white); margin-bottom: 6px;
}
.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 900; color: var(--accent); line-height: 1;
  margin-bottom: 4px;
}
.plan-price sup { font-size: 24px; vertical-align: super; }
.plan-price sub { font-size: 18px; color: var(--muted); font-weight: 600; }
.plan-price-note {
  font-size: 15px; color: var(--muted); margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(41,184,229,.12);
}
.plan-sites {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,184,229,.1); border: 1px solid rgba(41,184,229,.2);
  padding: 6px 14px; border-radius: 4px; margin-bottom: 20px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px;
  font-weight: 700; text-transform: uppercase; color: var(--bright);
}
.plan-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plan-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: #c0d8ec; line-height: 1.5;
}
.plan-feat i { color: var(--green); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.plan-contact {
  font-family: 'Barlow Condensed', sans-serif; font-size: 36px;
  font-weight: 900; color: var(--accent); margin-bottom: 4px;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--mid) 0%, #061525 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%2329b8e5' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content p {
  font-size: 19px; color: #c8e4f4;
  margin: 18px auto 38px; max-width: 580px; line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contacts {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 40px;
  border-top: 1px solid rgba(41,184,229,.15);
}
.cta-contact-item { display: flex; align-items: center; gap: 16px; }
.cta-contact-item i { color: var(--accent); font-size: 24px; }
.cta-contact-item span {
  display: block; font-size: 11px; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2px;
}
.cta-contact-item a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  font-weight: 700; color: var(--white); transition: color .2s;
}
.cta-contact-item a:hover { color: var(--accent); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--white); border-top: 1px solid rgba(255, 255, 255, 0.918);
  padding: 32px 64px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
footer img { height: 52px; background: transparent; }
footer p   { font-size: 19px; color: #024172; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 19px; color: #023a66; transition: color .2s; }
.footer-links a:hover { color: var(--white); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-phones       { height: 420px; }
  .why-inner         { grid-template-columns: 1fr; gap: 44px; }
  .modules-grid      { grid-template-columns: 1fr 1fr; }
  .screens-inner     { grid-template-columns: 1fr; gap: 48px; }
  .benefits-grid     { grid-template-columns: 1fr 1fr; }
  .industries-grid   { grid-template-columns: repeat(2,1fr); }
  .pricing-grid      { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: scale(1); }
  .steps-grid        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar            { padding: 0 24px; height: 80px; }
  .navbar.scrolled   { height: 68px; }
  .logo-wrap img     { height: 56px; }
  .nav-links         { display: none; }
  .hero              { padding-top: 80px; }
  .hero-inner        { padding: 40px 0 60px; }
  .hero-phones       { display: none; }
  .container         { padding: 0 20px; }
  .modules-grid      { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr; }
  .industries-grid   { grid-template-columns: 1fr 1fr; }
  .steps-grid        { grid-template-columns: 1fr; }
  .cta-contacts      { flex-direction: column; gap: 24px; }
  footer             { flex-direction: column; text-align: center; padding: 24px 20px; }
  .diagram-wrap      { padding: 20px 10px; overflow-x: auto; }
}