:root {
  --ccs-o1-brand-purple: #80608f;
  --ccs-o1-plum: #4c3658;
  --ccs-o1-ink: #202536;
  --ccs-o1-muted: #657080;
  --ccs-o1-paper: #fffaf6;
  --ccs-o1-alt: #eef8f5;
  --ccs-o1-line: #eadfe8;
  --ccs-o1-white: #ffffff;
  --ccs-o1-mint: #7d9a83;
  --ccs-o1-soft-shadow: 0 22px 48px rgba(76, 54, 88, 0.14);
}

.ccs-o1-home,
.ccs-o1-home * {
  box-sizing: border-box;
}

.ccs-o1-home {
  overflow: hidden;
  margin: 0;
  color: var(--ccs-o1-ink);
  background: var(--ccs-o1-white);
  font-family: Inter, Arial, sans-serif;
}

.ccs-o1-home h1,
.ccs-o1-home h2,
.ccs-o1-home h3,
.ccs-o1-home p {
  margin-top: 0;
}

.ccs-o1-home a {
  color: inherit;
  text-decoration: none;
}

.ccs-o1-home sup {
  font-size: 0.7em;
  line-height: 0;
}

.ccs-o1-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px max(32px, calc((100vw - 1180px) / 2 + 28px));
  background: var(--ccs-o1-white);
  border-bottom: 1px solid rgba(120, 96, 136, 0.11);
}

.ccs-o1-logo {
  display: block;
  width: 156px;
  height: auto;
}

.ccs-o1-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #5c6372;
  font-size: 14px;
  font-weight: 700;
}

.ccs-o1-button,
.ccs-o1-report-primary,
.ccs-o1-report-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.ccs-o1-button,
.ccs-o1-report-primary {
  color: var(--ccs-o1-white);
  background: var(--ccs-o1-brand-purple);
  box-shadow: 0 12px 28px rgba(120, 96, 136, 0.22);
}

.ccs-o1-button-light,
.ccs-o1-report-secondary {
  color: var(--ccs-o1-brand-purple);
  background: var(--ccs-o1-white);
  border-color: #ded4df;
  box-shadow: none;
}

.ccs-o1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 38px;
  align-items: center;
  padding: 62px max(32px, calc((100vw - 1180px) / 2 + 28px)) 56px;
  background: linear-gradient(100deg, #fffaf7 0%, #f9eef3 52%, #eef4f6 100%);
}

.ccs-o1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--ccs-o1-brand-purple);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ccs-o1-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--ccs-o1-mint);
  border-radius: 999px;
}

.ccs-o1-hero .ccs-o1-eyebrow {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.ccs-o1-hero h1 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--ccs-o1-plum);
  font-family: Nunito, Inter, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
}

.ccs-o1-lead {
  max-width: 600px;
  margin-bottom: 26px;
  color: #4c5360;
  font-size: 17px;
  line-height: 1.65;
}

.ccs-o1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.ccs-o1-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
}

.ccs-o1-trust-row div {
  padding: 12px 13px;
  color: #566070;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(120, 96, 136, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.ccs-o1-hero-media {
  position: relative;
  min-height: 454px;
}

.ccs-o1-photo-card {
  position: absolute;
  inset: 0 0 92px 26px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(76, 54, 88, 0.22);
}

.ccs-o1-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ccs-o1-deadline-card {
  position: absolute;
  left: 26px;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 92px;
  padding: 16px 22px;
  background: var(--ccs-o1-white);
  border: 1px solid rgba(120, 96, 136, 0.14);
  border-radius: 8px;
  box-shadow: var(--ccs-o1-soft-shadow);
}

.ccs-o1-deadline-card p {
  margin: 0;
  color: var(--ccs-o1-brand-purple);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.ccs-o1-deadline-card sup {
  font-size: 0.7em;
  line-height: 0;
}

.ccs-o1-section,
.ccs-o1-report-section {
  padding: 54px max(32px, calc((100vw - 1180px) / 2 + 28px));
}

.ccs-o1-alt {
  background: var(--ccs-o1-paper);
}

.ccs-o1-section-title-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.ccs-o1-section-title-row h2,
.ccs-o1-section h2,
.ccs-o1-privacy h2,
.ccs-o1-report-card h2,
.ccs-o1-cta-panel h2,
.ccs-o1-signup-panel h2 {
  margin-bottom: 0;
  color: var(--ccs-o1-plum);
  font-family: Nunito, Inter, sans-serif;
  line-height: 1.08;
}

.ccs-o1-section-title-row h2,
.ccs-o1-section h2,
.ccs-o1-privacy h2 {
  font-size: 34px;
}

.ccs-o1-section-title-row p,
.ccs-o1-steps-copy p,
.ccs-o1-privacy p {
  margin-bottom: 0;
  color: var(--ccs-o1-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ccs-o1-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ccs-o1-card {
  min-height: 212px;
  padding: 24px;
  background: var(--ccs-o1-white);
  border: 1px solid rgba(120, 96, 136, 0.13);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(76, 54, 88, 0.07);
}

.ccs-o1-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--ccs-o1-brand-purple);
  background: #f1e8f2;
  border-radius: 8px;
  font-weight: 900;
}

.ccs-o1-card:nth-child(2) .ccs-o1-icon {
  background: #e9eef7;
}

.ccs-o1-card.ccs-o1-card-featured {
  background: var(--ccs-o1-brand-purple);
  border-color: var(--ccs-o1-brand-purple);
  box-shadow: 0 18px 34px rgba(120, 96, 136, 0.22);
}

.ccs-o1-card.ccs-o1-card-featured .ccs-o1-icon {
  color: var(--ccs-o1-white);
  background: rgba(255, 255, 255, 0.18);
}

.ccs-o1-card.ccs-o1-card-featured h3,
.ccs-o1-card.ccs-o1-card-featured p {
  color: var(--ccs-o1-white);
}

.ccs-o1-card h3 {
  margin-bottom: 10px;
  color: var(--ccs-o1-plum);
  font-size: 18px;
  line-height: 1.25;
}

.ccs-o1-card p {
  margin: 0;
  color: var(--ccs-o1-muted);
  font-size: 14px;
  line-height: 1.62;
}

.ccs-o1-steps-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.ccs-o1-steps-copy h2 {
  margin-bottom: 14px;
}

.ccs-o1-steps-copy p {
  margin-bottom: 22px;
}

.ccs-o1-steps {
  display: grid;
  gap: 14px;
}

.ccs-o1-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--ccs-o1-white);
  border: 1px solid rgba(120, 96, 136, 0.13);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(76, 54, 88, 0.06);
}

.ccs-o1-step > div {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ccs-o1-white);
  background: var(--ccs-o1-brand-purple);
  border-radius: 8px;
  font-weight: 900;
}

.ccs-o1-step h3 {
  margin-bottom: 5px;
  color: var(--ccs-o1-plum);
}

.ccs-o1-step p {
  margin: 0;
  color: var(--ccs-o1-muted);
  font-size: 14px;
  line-height: 1.56;
}

.ccs-o1-privacy {
  padding: 58px max(32px, calc((100vw - 1180px) / 2 + 28px));
  text-align: center;
  background: var(--ccs-o1-alt);
}

.ccs-o1-privacy-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: var(--ccs-o1-white);
  background: #2c8a6c;
  border-radius: 999px;
  font-weight: 900;
}

.ccs-o1-privacy > p {
  max-width: 620px;
  margin: 14px auto 34px;
}

.ccs-o1-privacy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.ccs-o1-privacy-list article div {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  color: #2c8a6c;
  background: rgba(44, 138, 108, 0.12);
  border-radius: 999px;
  font-weight: 900;
}

.ccs-o1-privacy-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ccs-o1-plum);
}

.ccs-o1-privacy-list p {
  margin: 0;
  color: var(--ccs-o1-muted);
  font-size: 13px;
  line-height: 1.5;
}

.ccs-o1-report-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.ccs-o1-report-wrap {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(430px, 1.1fr);
  gap: 32px;
  align-items: start;
}

.ccs-o1-report-image {
  position: relative;
  align-self: start;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(76, 54, 88, 0.16);
}

.ccs-o1-report-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
}

.ccs-o1-report-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: var(--ccs-o1-plum);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.ccs-o1-report-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 32px;
  background: var(--ccs-o1-white);
  border: 1px solid rgba(120, 96, 136, 0.16);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(76, 54, 88, 0.12);
}

.ccs-o1-report-kicker {
  margin: 0 0 12px;
  color: var(--ccs-o1-brand-purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ccs-o1-report-kicker::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--ccs-o1-mint);
  border-radius: 999px;
  vertical-align: middle;
}

.ccs-o1-report-card h2 {
  margin: 0 0 14px;
  color: var(--ccs-o1-plum);
  font-size: 32px;
  line-height: 1.08;
}

.ccs-o1-report-intro {
  margin: 0 0 20px;
  color: var(--ccs-o1-muted);
  font-size: 15px;
  line-height: 1.6;
}

.ccs-o1-report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ccs-o1-split-cta {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  padding: 54px max(32px, calc((100vw - 1180px) / 2 + 28px));
  background: linear-gradient(180deg, #fbfaf9 0%, #f5f0f6 100%);
}

.ccs-o1-cta-panel,
.ccs-o1-signup-panel {
  padding: 28px;
  background: var(--ccs-o1-white);
  border: 1px solid rgba(120, 96, 136, 0.13);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(76, 54, 88, 0.07);
}

.ccs-o1-cta-panel h2,
.ccs-o1-signup-panel h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.ccs-o1-cta-panel p,
.ccs-o1-signup-panel p {
  margin-bottom: 20px;
  color: var(--ccs-o1-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ccs-o1-hubspot-form-shell {
  overflow: hidden;
  min-height: 170px;
}

.ccs-o1-hubspot-form-shell .hs-form-frame {
  width: 100%;
  min-height: 160px;
}

.ccs-o1-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(32px, calc((100vw - 1180px) / 2 + 28px));
  color: #6b6370;
  background: var(--ccs-o1-white);
  border-top: 1px solid rgba(120, 96, 136, 0.12);
  font-size: 13px;
}

.ccs-o1-footer strong {
  color: var(--ccs-o1-plum);
}

.ccs-o1-footer-links {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .ccs-o1-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .ccs-o1-nav-links {
    flex-wrap: wrap;
  }

  .ccs-o1-hero,
  .ccs-o1-steps-wrap,
  .ccs-o1-report-wrap,
  .ccs-o1-split-cta {
    grid-template-columns: 1fr;
  }

  .ccs-o1-cards,
  .ccs-o1-privacy-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .ccs-o1-nav {
    padding: 18px 20px;
  }

  .ccs-o1-nav-links {
    display: none;
  }

  .ccs-o1-logo {
    width: 122px;
  }

  .ccs-o1-hero {
    padding: 26px 20px 34px;
  }

  .ccs-o1-hero-media {
    order: -1;
    min-height: 315px;
  }

  .ccs-o1-photo-card {
    inset: 0 0 84px 0;
  }

  .ccs-o1-deadline-card {
    left: 0;
    height: 84px;
    padding: 16px 18px;
  }

  .ccs-o1-hero h1 {
    font-size: 34px;
  }

  .ccs-o1-hero .ccs-o1-eyebrow {
    font-size: 15px;
  }

  .ccs-o1-lead {
    font-size: 15px;
  }

  .ccs-o1-actions,
  .ccs-o1-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ccs-o1-button,
  .ccs-o1-report-primary,
  .ccs-o1-report-secondary {
    width: 100%;
  }

  .ccs-o1-section,
  .ccs-o1-report-section,
  .ccs-o1-privacy,
  .ccs-o1-split-cta {
    padding: 34px 20px;
  }

  .ccs-o1-section-title-row {
    display: block;
    margin-bottom: 18px;
  }

  .ccs-o1-section-title-row h2,
  .ccs-o1-section h2,
  .ccs-o1-privacy h2,
  .ccs-o1-report-card h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .ccs-o1-card,
  .ccs-o1-step {
    min-height: 0;
    padding: 20px;
  }

  .ccs-o1-step {
    grid-template-columns: 42px 1fr;
  }

  .ccs-o1-privacy-list {
    gap: 24px;
  }

  .ccs-o1-report-image img {
    height: 280px;
  }

  .ccs-o1-report-card,
  .ccs-o1-cta-panel,
  .ccs-o1-signup-panel {
    min-height: 0;
    padding: 22px;
  }

  .ccs-o1-footer {
    display: block;
    padding: 24px 20px;
    line-height: 1.7;
  }

  .ccs-o1-footer-links {
    margin-top: 10px;
    gap: 14px;
  }
}

/* WordPress theme hardening: keep the template visually consistent inside theme wrappers. */
body.ccs-o1-template-page #header,
body.ccs-o1-template-page header#header,
body.ccs-o1-template-page #masthead,
body.ccs-o1-template-page header#masthead,
body.ccs-o1-template-page .site-header,
body.ccs-o1-template-page header.site-header,
body.ccs-o1-template-page .main-header,
body.ccs-o1-template-page .elementor-location-header,
body.ccs-o1-template-page .wp-site-blocks > header,
body.ccs-o1-template-page .wp-block-template-part > header,
body.ccs-o1-template-page .av_header_top,
body.ccs-o1-template-page .header_bg,
body.ccs-o1-template-page .main_menu {
  display: none !important;
}

body.ccs-o1-template-page #main {
  padding-top: 0 !important;
}

body.ccs-o1-template-page .ccs-o1-nav {
  display: flex !important;
}

.ccs-o1-home {
  width: 100% !important;
  max-width: none !important;
}

.ccs-o1-home,
.ccs-o1-home p,
.ccs-o1-home a,
.ccs-o1-home div,
.ccs-o1-home section,
.ccs-o1-home article {
  font-family: Inter, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.ccs-o1-home h1,
.ccs-o1-home h2,
.ccs-o1-home h3 {
  font-family: Nunito, Inter, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.ccs-o1-home .ccs-o1-eyebrow,
.ccs-o1-home .ccs-o1-report-kicker {
  text-transform: uppercase !important;
}

.ccs-o1-home a.ccs-o1-button,
.ccs-o1-home a.ccs-o1-button:visited,
.ccs-o1-home a.ccs-o1-button:hover,
.ccs-o1-home a.ccs-o1-button:focus,
.ccs-o1-home a.ccs-o1-report-primary,
.ccs-o1-home a.ccs-o1-report-primary:visited,
.ccs-o1-home a.ccs-o1-report-primary:hover,
.ccs-o1-home a.ccs-o1-report-primary:focus {
  color: var(--ccs-o1-white) !important;
  background: var(--ccs-o1-brand-purple) !important;
  border-color: var(--ccs-o1-brand-purple) !important;
  text-decoration: none !important;
}

.ccs-o1-home a.ccs-o1-button-light,
.ccs-o1-home a.ccs-o1-button-light:visited,
.ccs-o1-home a.ccs-o1-button-light:hover,
.ccs-o1-home a.ccs-o1-button-light:focus,
.ccs-o1-home a.ccs-o1-report-secondary,
.ccs-o1-home a.ccs-o1-report-secondary:visited,
.ccs-o1-home a.ccs-o1-report-secondary:hover,
.ccs-o1-home a.ccs-o1-report-secondary:focus {
  color: var(--ccs-o1-brand-purple) !important;
  background: var(--ccs-o1-white) !important;
  border-color: #ded4df !important;
  text-decoration: none !important;
}

.ccs-o1-home .ccs-o1-nav-links a:not(.ccs-o1-button),
.ccs-o1-home .ccs-o1-nav-links a:not(.ccs-o1-button):visited {
  color: #5c6372 !important;
  text-decoration: none !important;
}

.ccs-o1-home .ccs-o1-card.ccs-o1-card-featured,
.ccs-o1-home .ccs-o1-card.ccs-o1-card-featured h3,
.ccs-o1-home .ccs-o1-card.ccs-o1-card-featured p,
.ccs-o1-home .ccs-o1-card.ccs-o1-card-featured strong {
  color: var(--ccs-o1-white) !important;
}

.ccs-o1-home .ccs-o1-card.ccs-o1-card-featured {
  background: var(--ccs-o1-brand-purple) !important;
  border-color: var(--ccs-o1-brand-purple) !important;
}

.ccs-o1-home .ccs-o1-logo,
.ccs-o1-home .ccs-o1-photo-card img,
.ccs-o1-home .ccs-o1-report-image img {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
