@import url('colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--fg-1);
  font-family: var(--font-sans);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--rdo-blue);
  margin-bottom: 16px;
}
.eyebrow-light { color: #8CB3D4; }
.h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--fg-1);
}
.h1 .accent { color: var(--rdo-blue); }
.h1 .underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(35, 87, 125, 0.18);
  z-index: -1;
  transform-origin: left;
  animation: drawUnderline 900ms 400ms var(--ease-out) both;
}
@keyframes drawUnderline { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.h2.light { color: #fff; }
.h3 { font-size: 20px; font-weight: 600; line-height: 1.3; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 560px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 220ms var(--ease-out);
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--rdo-blue); color: #fff; box-shadow: 0 8px 20px rgba(35,87,125,0.28); }
.btn-primary:hover { background: var(--rdo-blue-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(35,87,125,0.36); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(35,87,125,0.22); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,0.32); }
.btn-wa:hover { background: #1fb557; transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,211,102,0.4); }
.btn-ghost { background: transparent; color: var(--fg-1); border-color: var(--border-1); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--rdo-blue); color: var(--rdo-blue); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ===== Reveal-on-scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }
.reveal.delay-4 { transition-delay: 400ms; }

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms, background 240ms;
}
.header.scrolled { border-color: var(--border-2); background: rgba(255,255,255,0.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.header-logo img { height: 60px; }
.header-nav { display: flex; gap: 28px; }
.header-nav a { font-size: 14px; font-weight: 500; color: var(--fg-2); transition: color 180ms; }
.header-nav a:hover { color: var(--rdo-blue); }
.header-cta { display: flex; align-items: center; gap: 10px; }
@media (max-width: 900px) { .header-nav { display: none; } }

/* ===== Hero ===== */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #F4F7FA 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--border-2);
}
.hero-trust-item { display: flex; gap: 12px; align-items: center; }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--rdo-blue); }
.hero-trust-item div { font-size: 13px; color: var(--fg-2); }
.hero-trust-item strong { color: var(--fg-1); font-weight: 600; }

.hero-visual { position: relative; height: 500px; }
.hero-product-card {
  position: absolute;
  top: 50%; left: 50%;
  width: 340px;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(20, 49, 73, 0.18), 0 12px 24px rgba(20, 49, 73, 0.08);
  overflow: hidden;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 10px)); } }
.hero-card-photo {
  height: 220px;
  background: #F6F8FA;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.hero-card-photo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.hero-card-body { padding: 20px 22px 22px; }
.hero-card-chip {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: #E8F7EE; color: #216c44;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.hero-card-title { font-weight: 600; font-size: 17px; margin-top: 10px; color: var(--fg-1); }
.hero-card-specs { font-size: 13px; color: var(--fg-3); margin-top: 4px; }
.hero-card-price { font-weight: 700; font-size: 26px; color: var(--rdo-blue); margin-top: 10px; letter-spacing: -0.02em; }

/* floating geometric accents */
.hero-shape {
  position: absolute;
  border: 3px solid var(--rdo-blue);
  border-radius: 6px;
  opacity: 0.45;
}
.hero-shape.s1 { top: 30px; right: 40px; width: 90px; height: 90px; animation: shape1 8s ease-in-out infinite; }
.hero-shape.s2 { bottom: 80px; left: 30px; width: 140px; height: 140px; opacity: 0.25; animation: shape2 10s ease-in-out infinite; }
.hero-shape.s3 { top: 120px; left: 20px; width: 48px; height: 48px; border-width: 2px; opacity: 0.5; animation: shape3 7s ease-in-out infinite; }
.hero-shape.s4 { bottom: 40px; right: 60px; width: 56px; height: 56px; border-width: 2px; opacity: 0.4; animation: shape1 9s 1s ease-in-out infinite; }
@keyframes shape1 { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(8deg); } }
@keyframes shape2 { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(15px) rotate(-6deg); } }
@keyframes shape3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(10px, -15px); } }

/* Badge sticker on card */
.hero-badge {
  position: absolute;
  top: -12px; right: -12px;
  z-index: 4;
  background: #FBBF24;
  color: #3D2E00;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.5);
  transform: rotate(6deg);
  animation: wiggle 4s ease-in-out infinite;
}
@keyframes wiggle { 0%, 100% { transform: rotate(6deg); } 50% { transform: rotate(-2deg); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 440px; }
}

/* ===== Logos/stats strip ===== */
.strip {
  padding: 28px 0;
  background: var(--rdo-blue-deep);
  color: #fff;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 64px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.9);
  flex-shrink: 0;
}
.strip-item svg { width: 18px; height: 18px; color: #7FB8E2; }
.strip-item .dot { width: 4px; height: 4px; border-radius: 999px; background: #7FB8E2; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections ===== */
section { padding: 100px 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--rdo-blue-deep); color: #fff; }
.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head .lead { margin: 20px auto 0; }
.section-head.light .eyebrow { color: #8CB3D4; }
.section-head.light .h2 { color: #fff; }
.section-head.light .lead { color: rgba(255,255,255,0.82); }

/* ===== Benefits grid ===== */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 32px;
  transition: all 320ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rdo-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.benefit:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(20, 49, 73, 0.14); border-color: var(--rdo-blue); }
.benefit:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E8F0F7 0%, #D4E3EF 100%);
  color: var(--rdo-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 320ms var(--ease-out);
}
.benefit:hover .benefit-icon { transform: scale(1.08) rotate(-4deg); }
.benefit-icon svg { width: 28px; height: 28px; stroke-width: 1.8; }
.benefit-title { font-size: 20px; font-weight: 600; color: var(--fg-1); margin-bottom: 10px; }
.benefit-body { font-size: 15px; color: var(--fg-2); line-height: 1.6; }
@media (max-width: 900px) { .benefits { grid-template-columns: 1fr; } }

/* ===== Stats band ===== */
.stats-band {
  background: linear-gradient(135deg, #23577D 0%, #143149 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border: 60px solid rgba(255,255,255,0.03);
  border-radius: 24px;
  transform: rotate(20deg);
}
.stats-band::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 20px;
  transform: rotate(-15deg);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat { text-align: center; }
.stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
.stat-num .unit { color: #8CB3D4; font-size: 0.6em; font-weight: 700; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.78); margin-top: 10px; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ===== Audience / perfect-for ===== */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr) repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.audience-tile {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  display: flex; flex-direction: column; gap: 10px;
  transition: all 260ms var(--ease-out);
}
.audience-tile:hover { border-color: var(--rdo-blue); background: var(--rdo-blue-soft); transform: translateY(-3px); }
.audience-tile svg { width: 28px; height: 28px; color: var(--rdo-blue); }
.audience-tile-label { font-weight: 600; color: var(--fg-1); font-size: 16px; }
.audience-tile-sub { font-size: 13px; color: var(--fg-3); }
@media (max-width: 900px) { .audience { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; } }

/* ===== Products showcase ===== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 260ms var(--ease-out);
}
.product:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20, 49, 73, 0.14); border-color: var(--rdo-blue); }
.product-photo {
  height: 220px;
  background: #F6F8FA;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.product-photo img { max-width: 85%; max-height: 100%; object-fit: contain; transition: transform 400ms var(--ease-out); }
.product:hover .product-photo img { transform: scale(1.06); }
.product-chip {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: #fff; color: var(--rdo-blue);
  text-transform: uppercase; letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(20,49,73,0.1);
}
.product-chip.hot { background: #FEF3E2; color: #8B5A0F; }
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-cat { font-size: 11px; font-weight: 600; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.08em; }
.product-title { font-weight: 600; font-size: 17px; color: var(--fg-1); margin-top: 6px; }
.product-specs { font-size: 13px; color: var(--fg-3); line-height: 1.55; margin-top: 4px; }
.product-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-2); }
.product-price { font-weight: 700; font-size: 22px; color: var(--rdo-blue); letter-spacing: -0.02em; }
.product-price .old { font-size: 13px; color: var(--fg-4); text-decoration: line-through; font-weight: 500; display: block; }
.product-arrow {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--bg-2); color: var(--rdo-blue);
  display: flex; align-items: center; justify-content: center;
  transition: all 220ms var(--ease-out);
}
.product:hover .product-arrow { background: var(--rdo-blue); color: #fff; transform: translateX(4px); }
.product-arrow svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .products { grid-template-columns: 1fr; } }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border-1), var(--border-1), transparent);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: #fff;
  border: 2px solid var(--rdo-blue);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700; color: var(--rdo-blue);
  position: relative;
  transition: all 300ms var(--ease-out);
}
.step-num::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(35,87,125,0.25);
  animation: pulse 2.5s ease-in-out infinite;
  opacity: 0;
}
.step:hover .step-num { background: var(--rdo-blue); color: #fff; transform: scale(1.05); }
.step:hover .step-num::after { opacity: 1; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.4); opacity: 0; } }
.step-title { font-size: 20px; font-weight: 600; color: var(--fg-1); margin-bottom: 10px; }
.step-body { font-size: 15px; color: var(--fg-2); line-height: 1.6; max-width: 280px; margin: 0 auto; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
}

/* ===== Testimonials ===== */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: all 260ms var(--ease-out);
}
.testi:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20, 49, 73, 0.1); }
.testi-stars { display: flex; gap: 2px; color: #F5A524; }
.testi-stars svg { width: 18px; height: 18px; fill: currentColor; stroke: currentColor; }
.testi-quote { font-size: 15px; color: var(--fg-2); line-height: 1.6; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-2); }
.testi-avatar { width: 44px; height: 44px; border-radius: 999px; background: var(--rdo-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--fg-1); }
.testi-role { font-size: 12px; color: var(--fg-3); }
@media (max-width: 900px) { .testis { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 200ms;
}
.faq-item[open] { border-color: var(--rdo-blue); box-shadow: 0 8px 24px rgba(20, 49, 73, 0.06); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600; font-size: 16px; color: var(--fg-1);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px; font-weight: 300; color: var(--rdo-blue);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 240ms var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
  font-size: 15px; color: var(--fg-2); line-height: 1.65;
}

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #23577D 0%, #143149 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before, .final-cta::after {
  content: ''; position: absolute;
  border: 3px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.final-cta::before { top: 40px; right: 60px; width: 120px; height: 120px; animation: shape1 10s ease-in-out infinite; }
.final-cta::after { bottom: 50px; left: 80px; width: 80px; height: 80px; animation: shape2 12s ease-in-out infinite; }
.final-cta-inner { text-align: center; position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final-cta .h2 { color: #fff; margin-bottom: 20px; }
.final-cta-sub { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 36px; }
.final-cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer { background: #141414; color: #B8B8B8; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { height: 36px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-about { font-size: 14px; line-height: 1.6; color: #8A8A8A; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 999px; background: #2A2A2A; display: flex; align-items: center; justify-content: center; color: #B8B8B8; transition: all 200ms; }
.footer-social a:hover { background: var(--rdo-blue); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-h { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-list li { font-size: 14px; margin-bottom: 12px; line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.footer-list svg { width: 14px; height: 14px; color: var(--rdo-blue); margin-top: 3px; flex-shrink: 0; }
.footer-list a:hover { color: #fff; }
.footer-bot { border-top: 1px solid #252525; padding: 20px 0; }
.footer-bot-inner { display: flex; justify-content: space-between; font-size: 12px; color: #6A6A6A; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-bot-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== Floating WA button ===== */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 999px;
  background: #25D366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  z-index: 40;
  transition: transform 220ms var(--ease-out);
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}
