/* =============================================
   BridgePoint CoP Page Styles
   Brand Colors: 
     Dark Purple: #2d1045 (deep background)
     Purple: #671f69 (primary brand)
     Light Purple: #502869 (matches graphics)
     Orange: #ffa200 (accent/gold)
   Fonts: Montserrat (headings), Open Sans (body)
   ============================================= */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

/* === BRAND VARIABLES === */
:root {
  --bp-purple: #671f69;
  --bp-purple-dark: #2d1045;
  --bp-purple-mid: #502869;
  --bp-purple-faint: #f0e4f0;
  --bp-orange: #ffa200;
  --bp-orange-dark: #bb6a00;
  --bp-orange-light: #ffcc66;
  --bp-white: #ffffff;
  --bp-off-white: #f6f6f6;
  --bp-text: #333333;
  --bp-text-light: #666666;
  --bp-max-width: 1200px;
  --bp-section-padding: clamp(3rem, 6vw, 5rem);
}

/* === CONTAINER === */
.cop-container {
  max-width: var(--bp-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === SECTION TITLES === */
.cop-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bp-purple);
  text-align: center;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cop-section-title--light {
  color: var(--bp-white);
}

.cop-section-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--bp-text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cop-section-intro--light {
  color: rgba(255, 255, 255, 0.85);
}

.cop-section-intro strong {
  color: var(--bp-orange);
  font-weight: 700;
}

/* === BUTTONS === */
.cop-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  transition: all 0.25s ease;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.cop-btn--primary {
  background: var(--bp-orange);
  color: var(--bp-purple-dark);
  border-color: var(--bp-orange);
}

.cop-btn--primary:hover {
  background: var(--bp-orange-dark);
  border-color: var(--bp-orange-dark);
  color: #fff;
}

.cop-btn--secondary {
  background: transparent;
  color: var(--bp-white);
  border-color: var(--bp-white);
}

.cop-btn--secondary:hover {
  background: var(--bp-white);
  color: var(--bp-purple);
}

.cop-btn--outline {
  background: transparent;
  color: var(--bp-white);
  border-color: var(--bp-orange);
}

.cop-btn--outline:hover {
  background: var(--bp-orange);
  color: var(--bp-purple-dark);
}

.cop-btn--large {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* ================================================
   HERO SECTION — Image 1 as background
   ================================================ */
.cop-hero {
  position: relative;
  background: url('/public/images/cop-banner.jpg') center top / cover no-repeat;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
  text-align: center;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cop-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 16, 69, 0.92) 0%,
    rgba(80, 40, 105, 0.85) 40%,
    rgba(103, 31, 105, 0.80) 100%
  );
  z-index: 1;
  /* Blur the background image text so it becomes texture, not readable text */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cop-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cop-hero__badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--bp-orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.cop-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--bp-orange);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(45, 16, 69, 0.4);
}

.cop-hero__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cop-hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   ABOUT SECTION — Image 3 (team photo)
   ================================================ */
.cop-about {
  padding: var(--bp-section-padding) 0;
  background: var(--bp-white);
}

.cop-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cop-about__intro {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--bp-text);
}

.cop-about__intro strong {
  color: var(--bp-purple);
}

.cop-about__text > p {
  margin-bottom: 1rem;
  color: var(--bp-text-light);
  line-height: 1.7;
}

.cop-about__list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.cop-about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: var(--bp-text);
  line-height: 1.6;
}

.cop-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cop-about__img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(45, 16, 69, 0.15);
}

/* ================================================
   WHY IT MATTERS
   ================================================ */
.cop-why {
  padding: var(--bp-section-padding) 0;
  background: var(--bp-off-white);
}

.cop-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cop-why__card {
  background: var(--bp-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-bottom: 4px solid var(--bp-orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cop-why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(80, 40, 105, 0.12);
}

.cop-why__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
}

.cop-why__icon svg {
  width: 100%;
  height: 100%;
}

.cop-why__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bp-purple);
  margin-bottom: 0.6rem;
}

.cop-why__card p {
  font-size: 0.9rem;
  color: var(--bp-text-light);
  line-height: 1.6;
}

/* ================================================
   CREATE FRAMEWORK — Image 2 style, deep purple
   ================================================ */
.cop-create {
  position: relative;
  padding: var(--bp-section-padding) 0;
  color: var(--bp-white);
  overflow: hidden;
}

.cop-create__bg {
  position: absolute;
  inset: 0;
  background: url('/public/images/cop-principles.jpg') center center / cover no-repeat;
  z-index: 0;
}

.cop-create__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(45, 16, 69, 0.93) 0%,
    rgba(80, 40, 105, 0.88) 50%,
    rgba(45, 16, 69, 0.93) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cop-create__container {
  position: relative;
  z-index: 1;
}

.cop-create__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cop-create__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  transition: background 0.25s ease;
}

.cop-create__item:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cop-create__letter {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--bp-orange);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.cop-create__content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bp-white);
  margin-bottom: 0.4rem;
}

.cop-create__content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ================================================
   WHAT TO EXPECT
   ================================================ */
.cop-expect {
  padding: var(--bp-section-padding) 0;
  background: var(--bp-white);
}

.cop-expect__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.cop-expect__card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 260px;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: var(--bp-off-white);
  border-left: 4px solid var(--bp-purple);
  transition: transform 0.25s ease;
}

.cop-expect__card:hover {
  transform: translateY(-3px);
}

.cop-expect__number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--bp-orange);
  opacity: 0.5;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.cop-expect__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bp-purple);
  margin-bottom: 0.5rem;
}

.cop-expect__card p {
  font-size: 0.9rem;
  color: var(--bp-text-light);
  line-height: 1.6;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.cop-testimonials {
  padding: var(--bp-section-padding) 0;
  background: var(--bp-off-white);
}

.cop-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.cop-testimonials__card {
  position: relative;
  background: var(--bp-white);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  border-top: 4px solid var(--bp-purple);
}

.cop-testimonials__quote {
  width: 48px;
  height: 38px;
  margin-bottom: 1rem;
}

.cop-testimonials__card blockquote p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bp-text);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cop-testimonials__card cite {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--bp-purple);
  font-style: normal;
}

/* ================================================
   CALL TO ACTION — Image 4 as background
   ================================================ */
.cop-cta {
  position: relative;
  padding: var(--bp-section-padding) 0;
  overflow: hidden;
}

.cop-cta__bg {
  position: absolute;
  inset: 0;
  background: url('/public/images/cop-invited.jpg') center center / cover no-repeat;
  z-index: 0;
}

.cop-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(45, 16, 69, 0.93) 0%,
    rgba(80, 40, 105, 0.88) 50%,
    rgba(45, 16, 69, 0.93) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cop-cta__container {
  position: relative;
  z-index: 1;
}

.cop-cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cop-cta h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--bp-orange);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cop-cta p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cop-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .cop-about__grid {
    grid-template-columns: 1fr;
  }

  .cop-about__visual {
    max-width: 600px;
    margin: 0 auto;
  }

  .cop-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cop-create__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cop-expect__card {
    flex: 0 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .cop-hero {
    min-height: 400px;
    padding: 3rem 1.25rem;
  }

  .cop-hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .cop-btn {
    width: 100%;
    max-width: 320px;
  }

  .cop-why__grid {
    grid-template-columns: 1fr;
  }

  .cop-create__grid {
    grid-template-columns: 1fr;
  }

  .cop-expect__card {
    flex: 0 1 100%;
  }

  .cop-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .cop-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .cop-hero__title {
    font-size: 2rem;
  }

  .cop-create__item {
    padding: 1.25rem 1rem;
  }

  .cop-create__letter {
    font-size: 2rem;
    width: 40px;
  }
}

.cop-btn--soon {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
  letter-spacing: 0.05em;
}