/* =========================================
   Cosmic Cow — Full Design System CSS
   ========================================= */

/* --- Design tokens --- */
:root {
  --ink: #2a1d4a;
  --violet: #7c3aed;
  --violet-deep: #4c1d95;
  --violet-soft: #a78bfa;
  --lilac: #ede9fe;
  --cream: #f8f4ff;
  --milk: #fffdf9;
  --gold: #f0b429;
  --mint: #10b981;
  --star: #fde68a;
  --shadow: 0 20px 60px -20px rgba(76,29,149,.35);
  --radius: 24px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

/* --- Design Topbar --- */
.cc-topbar {
  background: var(--violet-deep);
  color: #fff;
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
  padding: 10px 16px;
  letter-spacing: .02em;
  position: relative;
  z-index: 50;
}
.cc-topbar b { color: var(--star); }

/* --- Design Nav --- */
.cc-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,253,249,.85);
  border-bottom: 1px solid rgba(124,58,237,.08);
}
.cc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1140px;
  margin: 0 auto;
}
.cc-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--violet-deep);
}
.cc-nav-logo img { height: 42px; width: auto; display: block; }
.cc-nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.cc-nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  opacity: .75;
  transition: opacity .2s;
}
.cc-nav-links a:hover { opacity: 1; }
.cc-nav-cta {
  font-size: .95rem !important;
  padding: 11px 24px !important;
}
@media(max-width: 820px) {
  .cc-nav-links a:not(.cc-nav-cta) { display: none; }
}

/* --- Global resets & typography --- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body) !important;
  color: var(--ink) !important;
  background: var(--milk) !important;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display) !important;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
}

/* --- Utility classes --- */
.cc-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.cc-pad { padding: 88px 0; }
.cc-center { text-align: center; }
.cc-kicker {
  text-transform: uppercase; letter-spacing: .22em; font-size: .78rem;
  font-weight: 700; color: var(--violet); margin-bottom: 14px;
}
.cc-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cc-lead { font-size: 1.12rem; opacity: .75; max-width: 640px; margin: 0 auto; }

/* --- Button system --- */
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  padding: 18px 38px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.9,.3,1), box-shadow .25s;
  box-shadow: 0 12px 30px -8px rgba(124,58,237,.6);
  position: relative; overflow: hidden;
}
.cc-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 40px -8px rgba(124,58,237,.7); }
.cc-btn:active { transform: translateY(0); }
.cc-btn-ghost {
  background: transparent; color: var(--violet-deep);
  border: 2px solid var(--violet-soft); box-shadow: none;
}
.cc-btn-ghost:hover { background: var(--lilac); box-shadow: none; }

/* --- Stars / Particles --- */
.cc-stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.cc-star {
  position: absolute; background: #fff; border-radius: 50%; opacity: .8;
  animation: ccTwinkle 3s infinite ease-in-out;
}
@keyframes ccTwinkle { 0%,100%{opacity:.2;transform:scale(.8)} 50%{opacity:1;transform:scale(1.2)} }

/* --- Reveal animation --- */
.cc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.3,1); }
.cc-reveal.in { opacity: 1; transform: none; }

/* =========================================
   HERO SECTION
   ========================================= */
.cc-hero {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 72% 12%, rgba(167,139,250,.4), transparent 60%),
              radial-gradient(ellipse 70% 50% at 8% 90%, rgba(167,139,250,.18), transparent 55%),
              linear-gradient(180deg, #f1ebff 0%, var(--milk) 100%);
  overflow: hidden; padding: 56px 0 80px;
}
.cc-hero .hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; padding: 0 24px;
}
@media(max-width:860px) { .cc-hero .hero-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; } }
.cc-hero .preorder-flag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #d97706); color: #fff;
  padding: 8px 18px; border-radius: 100px; font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 8px 22px -8px rgba(217,119,6,.6); margin-bottom: 20px;
}
.cc-hero h1 { font-size: clamp(2.5rem, 5.2vw, 3.95rem); margin-bottom: 18px; }
.cc-hero h1 em { font-style: italic; color: var(--violet); }
.cc-hero .sub { font-size: 1.16rem; opacity: .82; max-width: 520px; margin-bottom: 26px; }
@media(max-width:860px) { .cc-hero .sub { margin-inline: auto; } }
.cc-hero .price-from { display: flex; align-items: baseline; gap: 10px; margin-bottom: 22px; }
@media(max-width:860px) { .cc-hero .price-from { justify-content: center; } }
.cc-hero .price-from .big { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--violet-deep); line-height: 1; }
.cc-hero .price-from .lbl { font-size: .95rem; opacity: .65; font-weight: 500; }
.cc-hero .hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
@media(max-width:860px) { .cc-hero .hero-cta-row { justify-content: center; } }
.cc-hero .trust-row { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; align-items: center; }
@media(max-width:860px) { .cc-hero .trust-row { justify-content: center; } }
.cc-hero .trust-item { display: flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 500; opacity: .78; }
.cc-hero .stars-rating { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }

.cc-hero .product-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }
.cc-hero .glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,.55), transparent 65%);
  filter: blur(10px); z-index: 0; animation: ccPulse 6s ease-in-out infinite;
}
@keyframes ccPulse { 0%,100%{transform:scale(1);opacity:.8} 50%{transform:scale(1.08);opacity:1} }
.cc-hero .orbit {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  border: 1.5px dashed rgba(124,58,237,.3); animation: ccSpin 30s linear infinite; z-index: 1;
}
.cc-hero .orbit.two { width: 320px; height: 320px; border-color: rgba(124,58,237,.22); animation-duration: 22s; animation-direction: reverse; }
@keyframes ccSpin { to { transform: rotate(360deg); } }
.cc-hero .orbit .planet { position: absolute; font-size: 1.7rem; top: -16px; left: 50%; transform: translateX(-50%); }
.cc-hero .bottle-img {
  position: relative; z-index: 3; width: auto; height: 440px; max-width: 90%; object-fit: contain;
  filter: drop-shadow(0 40px 50px rgba(76,29,149,.5)); animation: ccFloaty 5.5s ease-in-out infinite;
  border-radius: 18px;
}
@keyframes ccFloaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.cc-hero .badge-float {
  position: absolute; background: #fff; border-radius: 16px; padding: 10px 14px;
  box-shadow: var(--shadow); font-size: .78rem; font-weight: 600; z-index: 4;
  display: flex; align-items: center; gap: 7px;
}
.cc-hero .badge-float.a { top: 40px; right: -4px; animation: ccFloaty 4s ease-in-out infinite; }
.cc-hero .badge-float.b { bottom: 70px; left: -14px; animation: ccFloaty 4.6s ease-in-out infinite .5s; }
.cc-hero .badge-float .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(16,185,129,.22); }
@media(max-width:860px) {
  .cc-hero .bottle-img { height: 360px; }
  .cc-hero .glow, .cc-hero .orbit { width: 340px; height: 340px; }
  .cc-hero .orbit.two { width: 270px; height: 270px; }
}

/* =========================================
   MARQUEE
   ========================================= */
.cc-marquee { padding: 28px 0; background: var(--violet-deep); color: #fff; overflow: hidden; }
.cc-marquee .marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ccSlide 22s linear infinite;
  font-family: var(--font-display); font-size: 1.05rem; opacity: .92;
}
@keyframes ccSlide { to { transform: translateX(-50%); } }
.cc-marquee .marquee-track span { display: inline-flex; align-items: center; gap: 12px; }
.cc-marquee .marquee-track b { color: var(--star); }

/* =========================================
   PROBLEM CARDS
   ========================================= */
.cc-problem { background: linear-gradient(180deg, var(--cream), #fff); }
.cc-problem .prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
@media(max-width:820px) { .cc-problem .prob-grid { grid-template-columns: 1fr; } }
.cc-problem .prob-card {
  background: #fff; border: 1px solid var(--lilac); border-radius: var(--radius);
  padding: 32px; box-shadow: 0 10px 30px -18px rgba(76,29,149,.25);
}
.cc-problem .prob-card .ic { font-size: 2rem; margin-bottom: 14px; }
.cc-problem .prob-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cc-problem .prob-card p { opacity: .72; font-size: .96rem; }

/* =========================================
   BENEFITS
   ========================================= */
.cc-benefits .bene-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 54px; }
@media(max-width:820px) { .cc-benefits .bene-grid { grid-template-columns: 1fr; } }
.cc-benefits .bene { display: flex; gap: 20px; align-items: flex-start; }
.cc-benefits .bene .num {
  flex: none; width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--violet-soft), var(--violet));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  box-shadow: 0 10px 24px -10px rgba(124,58,237,.6);
}
.cc-benefits .bene h3 { font-size: 1.3rem; margin-bottom: 6px; }
.cc-benefits .bene p { opacity: .74; font-size: 1rem; }

/* =========================================
   SCIENCE / INGREDIENTS
   ========================================= */
.cc-science {
  background: radial-gradient(ellipse 60% 50% at 85% 20%, rgba(167,139,250,.3), transparent 60%), var(--violet-deep);
  color: #fff; overflow: hidden;
}
.cc-science .cc-kicker { color: var(--star); }
.cc-science .cc-lead { color: rgba(255,255,255,.78); }
.cc-science .ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
@media(max-width:820px) { .cc-science .ing-grid { grid-template-columns: 1fr; } }
.cc-science .ing {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 30px; backdrop-filter: blur(6px);
}
.cc-science .ing .ic { font-size: 2.2rem; margin-bottom: 14px; }
.cc-science .ing h3 { font-size: 1.35rem; margin-bottom: 8px; color: #fff; }
.cc-science .ing p { color: rgba(255,255,255,.78); font-size: .95rem; }
.cc-science .ing .pill {
  display: inline-block; margin-top: 14px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(253,230,138,.2); color: var(--star); padding: 5px 12px; border-radius: 100px;
}
.cc-science .free-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 46px; }
.cc-science .free-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; padding: 10px 20px; font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.cc-compare { background: var(--cream); }
.cc-compare .ctable {
  margin-top: 50px; background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--lilac);
}
.cc-compare .ctable table { width: 100%; border-collapse: collapse; }
.cc-compare .ctable th, .cc-compare .ctable td { padding: 18px 20px; text-align: center; font-size: .95rem; }
.cc-compare .ctable thead th { background: var(--violet-deep); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.cc-compare .ctable thead th.cc { background: var(--violet); }
.cc-compare .ctable tbody tr:nth-child(even) { background: var(--cream); }
.cc-compare .ctable td:first-child, .cc-compare .ctable th:first-child { text-align: left; font-weight: 600; }
.cc-compare .ctable .cc { background: rgba(124,58,237,.06); font-weight: 600; }
.cc-compare .yes { color: #16a34a; font-weight: 700; }
.cc-compare .no { color: #cbb8e8; }
@media(max-width:640px) { .cc-compare .ctable th, .cc-compare .ctable td { padding: 12px 10px; font-size: .82rem; } }

/* =========================================
   TESTIMONIALS
   ========================================= */
.cc-testimonials .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 54px; }
@media(max-width:820px) { .cc-testimonials .testi-grid { grid-template-columns: 1fr; } }
.cc-testimonials .tcard {
  background: #fff; border: 1px solid var(--lilac); border-radius: var(--radius);
  padding: 30px; box-shadow: 0 12px 34px -22px rgba(76,29,149,.3); position: relative;
}
.cc-testimonials .tcard .rate { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.cc-testimonials .tcard p { font-size: 1.02rem; margin-bottom: 18px; }
.cc-testimonials .tcard .who { display: flex; align-items: center; gap: 12px; }
.cc-testimonials .tcard .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-soft), var(--violet));
  display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--font-display);
}
.cc-testimonials .tcard .who b { display: block; font-size: .95rem; }
.cc-testimonials .tcard .who small { opacity: .6; font-size: .82rem; }
.cc-testimonials .verified {
  position: absolute; top: 24px; right: 24px; font-size: .7rem; font-weight: 700;
  color: #16a34a; background: #dcfce7; padding: 4px 10px; border-radius: 100px;
}

/* =========================================
   PRE-ORDER BUILDER
   ========================================= */
.cc-offer { background: linear-gradient(180deg, #fff, var(--cream)); }
.cc-offer .builder {
  margin-top: 54px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 0;
  background: #fff; border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--lilac);
}
@media(max-width:860px) { .cc-offer .builder { grid-template-columns: 1fr; } }
.cc-offer .builder-visual {
  background: radial-gradient(ellipse at 50% 30%, rgba(167,139,250,.35), transparent 70%),
              linear-gradient(160deg, #efe7ff, #f8f4ff);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 30px; position: relative;
}
.cc-offer .builder-visual img { height: 300px; width: auto; filter: drop-shadow(0 30px 40px rgba(76,29,149,.45)); border-radius: 14px; }
.cc-offer .builder-visual .flav { margin-top: 18px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--violet-deep); }
.cc-offer .builder-visual .net { font-size: .85rem; opacity: .6; }
.cc-offer .builder-form { padding: 42px 40px; }
@media(max-width:520px) { .cc-offer .builder-form { padding: 32px 24px; } }
.cc-offer .builder-form h3 { font-size: 1.7rem; margin-bottom: 6px; }
.cc-offer .builder-form .desc { opacity: .7; font-size: .97rem; margin-bottom: 26px; }
.cc-offer .tiers { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.cc-offer .tier {
  display: flex; align-items: center; gap: 16px; border: 2px solid var(--lilac);
  border-radius: 18px; padding: 18px 20px; cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s; position: relative; background: #fff;
}
.cc-offer .tier:hover { border-color: var(--violet-soft); transform: translateY(-2px); }
.cc-offer .tier.active { border-color: var(--violet); background: rgba(124,58,237,.05); box-shadow: 0 14px 34px -20px rgba(124,58,237,.5); }
.cc-offer .tier .radio {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--violet-soft); display: grid; place-items: center; transition: border-color .2s;
}
.cc-offer .tier.active .radio { border-color: var(--violet); }
.cc-offer .tier .radio::after {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: var(--violet); transform: scale(0); transition: transform .2s;
}
.cc-offer .tier.active .radio::after { transform: scale(1); }
.cc-offer .tier .info { flex: 1; }
.cc-offer .tier .info b { font-size: 1.12rem; font-family: var(--font-display); display: block; }
.cc-offer .tier .info small { opacity: .62; font-size: .85rem; }
.cc-offer .tier .right { text-align: right; flex: none; }
.cc-offer .tier .right .per { font-weight: 700; font-size: 1.15rem; color: var(--violet-deep); }
.cc-offer .tier .right .tot { font-size: .82rem; opacity: .6; }
.cc-offer .tier .save-tag {
  position: absolute; top: -11px; right: 16px;
  background: linear-gradient(135deg, var(--gold), #d97706); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; box-shadow: 0 6px 16px -6px rgba(217,119,6,.6);
}
.cc-offer .tier .save-tag.best { background: linear-gradient(135deg, var(--violet), var(--violet-deep)); }
.cc-offer .summary { background: var(--cream); border-radius: 18px; padding: 22px 24px; margin-bottom: 22px; }
.cc-offer .summary .line { display: flex; justify-content: space-between; align-items: center; font-size: .95rem; margin-bottom: 10px; }
.cc-offer .summary .line:last-child { margin-bottom: 0; }
.cc-offer .summary .line.tot {
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--violet-deep);
  border-top: 1px dashed var(--violet-soft); padding-top: 14px; margin-top: 4px;
}
.cc-offer .summary .savings { color: var(--mint); font-weight: 700; }
.cc-offer .preorder-btn { width: 100%; font-size: 1.15rem; padding: 20px; }
.cc-offer .builder-micro {
  text-align: center; font-size: .82rem; opacity: .62; margin-top: 14px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.cc-offer .builder-micro span { display: inline-flex; align-items: center; gap: 6px; }
.cc-offer .guarantee {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 46px; background: #fff; border: 1px dashed var(--violet-soft);
  border-radius: var(--radius); padding: 24px 30px; max-width: 680px; margin-inline: auto;
}
.cc-offer .guarantee .badge {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-soft), var(--violet));
  display: grid; place-items: center; color: #fff; font-size: 1.8rem;
}
.cc-offer .guarantee h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 3px; }
.cc-offer .guarantee p { font-size: .92rem; opacity: .72; }

/* =========================================
   FAQ
   ========================================= */
.cc-faq .faq-wrap { max-width: 760px; margin: 54px auto 0; }
.cc-faq details {
  background: #fff; border: 1px solid var(--lilac); border-radius: 18px;
  margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s;
}
.cc-faq details[open] { box-shadow: 0 14px 36px -22px rgba(76,29,149,.35); }
.cc-faq summary {
  padding: 22px 26px; font-weight: 600; font-size: 1.05rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.cc-faq summary::-webkit-details-marker { display: none; }
.cc-faq summary .chev {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lilac);
  display: grid; place-items: center; transition: transform .25s;
  color: var(--violet-deep); font-weight: 700;
}
.cc-faq details[open] summary .chev { transform: rotate(45deg); }
.cc-faq details .ans { padding: 0 26px 24px; opacity: .78; font-size: 1rem; }

/* =========================================
   FINAL CTA
   ========================================= */
.cc-final {
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(167,139,250,.4), transparent 60%),
              linear-gradient(160deg, var(--violet), var(--violet-deep));
  color: #fff; text-align: center; overflow: hidden; position: relative;
}
.cc-final h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 18px; }
.cc-final p { font-size: 1.18rem; color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 32px; }
.cc-final .cc-btn { background: #fff; color: var(--violet-deep); box-shadow: 0 16px 40px -10px rgba(0,0,0,.4); }
.cc-final .cc-btn:hover { box-shadow: 0 22px 50px -10px rgba(0,0,0,.5); }
.cc-final .micro { margin-top: 20px; font-size: .86rem; color: rgba(255,255,255,.7); }

/* =========================================
   FOOTER
   ========================================= */
.cc-footer {
  background: var(--ink); color: rgba(255,255,255,.6); padding: 50px 0 36px;
  text-align: center; font-size: .88rem;
}
.cc-footer .logo { justify-content: center; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.cc-footer .logo img { height: 54px; background: #fff; border-radius: 50%; padding: 6px; }
.cc-footer .fdis { max-width: 680px; margin: 18px auto 0; font-size: .78rem; opacity: .5; line-height: 1.5; }
