/* ======================================
   👑 CROWN TRANSFERS – ABOUT HERO (FINAL)
   ====================================== */

.a2-hero {
  position: relative;
  width: 100%;
  height: 58vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #000;
}

/* BACKGROUND IMAGE */
.a2-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.58) saturate(1.15) contrast(1.18);
  z-index: 1;
}

/* GLASS BOX */
.a2-hero-glass {
  position: relative;
  z-index: 3;
  max-width: 600px;
  width: 88%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 2rem 1.8rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* HEADLINE */
.a2-hero-glass h1 {
  font-size: 2.45rem;
  line-height: 1.18;
  font-weight: 700;
  color: #fff;
  margin-bottom: .55rem;
}

/* TEXT */
.a2-hero-glass p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

/* BUTTONS */
.a2-hero-actions {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
}

.a2-btn {
  padding: .8rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .92rem;
}

/* GOLD */
.a2-btn-gold {
  background: var(--gold);
  color: #fff;
}

/* GHOST */
.a2-btn-ghost {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}


/* ============================================================
   🧩 1500px – 1100px / MacBook Retina Compact
   ============================================================ */
@media (min-width: 1100px) and (max-width: 1500px) {

  .a2-hero {
    height: 56vh;
  }

  .a2-hero-glass {
    max-width: 560px;
    padding: 1.9rem 1.7rem;
  }

  .a2-hero-glass h1 {
    font-size: 2.25rem;
  }

  .a2-hero-glass p {
    font-size: 1rem;
  }

  .a2-btn {
    padding: .75rem 1.15rem;
    font-size: .88rem;
  }
}


/* ============================================================
   🧩 bis 1100px – Laptop
   ============================================================ */
@media (max-width: 1100px) {

  .a2-hero {
    height: 52vh;
  }

  .a2-hero-glass {
    max-width: 520px;
    padding: 1.75rem 1.55rem;
  }

  .a2-hero-glass h1 {
    font-size: 2.05rem;
    line-height: 1.17;
  }

  .a2-hero-glass p {
    font-size: .98rem;
  }

  .a2-btn {
    padding: .68rem 1rem;
    font-size: .82rem;
  }
}


/* ============================================================
   🧩 bis 900px – Tablet quer (iPad landscape)
   ============================================================ */
@media (max-width: 900px) {

  .a2-hero {
    height: 47vh;
  }

  .a2-hero-glass {
    max-width: 480px;
    padding: 1.6rem 1.4rem;
  }

  .a2-hero-glass h1 {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .a2-hero-glass p {
    font-size: .92rem;
  }

  .a2-btn {
    padding: .62rem .95rem;
    font-size: .8rem;
  }
}


/* ============================================================
   🧩 bis 768px – Tablet hoch (iPad Mini vertical)
   ============================================================ */
@media (max-width: 768px) {

  .a2-hero {
    height: 42vh;
  }

  .a2-hero-glass {
    max-width: 450px;
    padding: 1.45rem 1.3rem;
  }

  .a2-hero-glass h1 {
    font-size: 1.7rem;
    line-height: 1.14;
  }

  .a2-hero-glass p {
    font-size: .88rem;
  }

  .a2-btn {
    padding: .58rem .9rem;
    font-size: .78rem;
  }
}


/* ============================================================
   🧩 bis 600px – große Handys (NEUE VERSION)
   ============================================================ */
@media (max-width: 600px) {

  .a2-hero {
    height: 36vh;
  }

  .a2-hero-glass {
    max-width: 82%;
    padding: 1.2rem 1rem;
    border-radius: 16px;
  }

  .a2-hero-glass h1 {
    font-size: 1.48rem;
    line-height: 1.14;
  }

  .a2-hero-glass p {
    font-size: .82rem;
  }

  .a2-btn {
    padding: .5rem .85rem;
    font-size: .75rem;
  }
}


/* ============================================================
   🧩 bis 420px – iPhone 12 / moderne Phones (NEU)
   ============================================================ */
@media (max-width: 420px) {

  .a2-hero {
    height: 32vh;
  }

  .a2-hero-glass {
    max-width: 88%;
    padding: 1rem .9rem;
  }

  .a2-hero-glass h1 {
    font-size: 1.32rem;
    line-height: 1.12;
  }

  .a2-hero-glass p {
    font-size: .78rem;
  }

  .a2-btn {
    padding: .45rem .75rem;
    font-size: .72rem;
  }
}


/* ============================================================
   🧩 bis 350px – super kleine Geräte
   ============================================================ */
@media (max-width: 350px) {

  .a2-hero {
    height: 30vh;
  }

  .a2-hero-glass {
    max-width: 92%;
    padding: .9rem .8rem;
  }

  .a2-hero-glass h1 {
    font-size: 1.15rem;
    line-height: 1.1;
  }

  .a2-hero-glass p {
    font-size: .72rem;
  }

  .a2-btn {
    padding: .42rem .7rem;
    font-size: .68rem;
  }
}


/* ============================================================
   CROWN TRANSFERS – EVENT INTRO SECTION (1 IMAGE, PREMIUM SEO)
   ============================================================ */

.ct-eventintro {
  padding: 4.2rem 0 4rem;
  background: #f7f6f3;
}

.ct-eventintro-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* IMAGE */
.ct-eventintro-img {
  flex: 1;
}

.ct-eventintro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 38px rgba(0,0,0,0.16);
}

/* TEXT */
.ct-eventintro-text {
  flex: 1;
}

.ct-eventintro-text h2 {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--crown-text-dark);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.65rem;
}

/* gold line */
.ct-eventintro-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: var(--crown-gold);
  border-radius: 3px;
}

.ct-eventintro-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.62;
  margin-bottom: 1rem;
}

.ct-eventintro-highlight {
  background: #fff;
  border-left: 4px solid var(--crown-gold);
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 0.4rem;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

/* ============================================================
   🧩 1500px – 1100px / MacBook Retina Fix
   ============================================================ */
@media (min-width: 1100px) and (max-width: 1500px) {

  .ct-eventintro {
    padding: 3.8rem 0 3.6rem;
  }

  .ct-eventintro-wrap {
    gap: 2.6rem;
  }

  .ct-eventintro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .ct-eventintro-text p {
    font-size: .98rem;
    line-height: 1.6;
  }

  .ct-eventintro-img img {
    height: 380px;
  }
}



/* ============================================================
   🧩 bis 1100px – Laptop
   ============================================================ */
@media (max-width: 1100px) {

  .ct-eventintro {
    padding: 3.6rem 0 3.4rem;
  }

  .ct-eventintro-wrap {
    gap: 2.4rem;
  }

  .ct-eventintro-text h2 {
    font-size: 2rem;
  }

  .ct-eventintro-text p {
    font-size: .95rem;
  }

  .ct-eventintro-img img {
    height: 360px;
  }
}



/* ============================================================
   🧩 bis 900px – Tablet quer
   ============================================================ */
@media (max-width: 900px) {

  .ct-eventintro-wrap {
    gap: 2rem;
  }

  .ct-eventintro-text h2 {
    font-size: 1.85rem;
  }

  .ct-eventintro-text p {
    font-size: .92rem;
  }

  .ct-eventintro-img img {
    height: 330px;
  }
}



/* ============================================================
   🧩 bis 768px – Tablet hoch
   ============================================================ */
@media (max-width: 768px) {

  .ct-eventintro {
    padding: 3.4rem 0 3.2rem;
  }

  .ct-eventintro-wrap {
    flex-direction: column;
    gap: 1.8rem;
    text-align: center;
  }

  .ct-eventintro-text h2 {
    font-size: 1.72rem;
    padding-bottom: .55rem;
  }

  .ct-eventintro-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ct-eventintro-text p {
    font-size: .9rem;
    line-height: 1.55;
  }

  .ct-eventintro-img img {
    height: 300px;
    border-radius: 16px;
  }

  .ct-eventintro-highlight {
    text-align: left;
    font-size: .9rem;
  }
}



/* ============================================================
   🧩 bis 600px – kleine Smartphones
   ============================================================ */
@media (max-width: 600px) {

  .ct-eventintro {
    padding: 3.1rem 0 3rem;
  }

  .ct-eventintro-text h2 {
    font-size: 1.55rem;
  }

  .ct-eventintro-text p {
    font-size: .84rem;
    line-height: 1.48;
  }

  .ct-eventintro-img img {
    height: 260px;
  }

  .ct-eventintro-highlight {
    font-size: .85rem;
    padding: .8rem 1rem;
  }
}



/* ============================================================
   🧩 bis 420px – moderne Smartphones (iPhone 12 etc.)
   ============================================================ */
@media (max-width: 420px) {

  .ct-eventintro-text h2 {
    font-size: 1.42rem;
  }

  .ct-eventintro-text p {
    font-size: .8rem;
  }

  .ct-eventintro-img img {
    height: 240px;
  }

  .ct-eventintro-highlight {
    font-size: .8rem;
  }
}



/* ============================================================
   🧩 bis 350px – sehr kleine Geräte
   ============================================================ */
@media (max-width: 350px) {

  .ct-eventintro-text h2 {
    font-size: 1.32rem;
  }

  .ct-eventintro-text p {
    font-size: .76rem;
  }

  .ct-eventintro-img img {
    height: 220px;
  }

  .ct-eventintro-highlight {
    font-size: .76rem;
    padding: .7rem .9rem;
  }
}


/* ============================================================================
   PREMIUM SPLIT SECTION – TEXT LEFT, IMAGE RIGHT (ct-mat3)
   ============================================================================ */

.ct-mat3 {
  padding: 5rem 0;
  background: #f7f6f3;
}

.ct-mat3-wrap {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  align-items: center;
  gap: 3.8rem;
}

/* =============================
   TEXT SECTION
   ============================= */
.ct-mat3-text {
  flex: 1;
  padding-right: 1rem;
}

.ct-mat3-text h2 {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--crown-text-dark);
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: .55rem;
}

.ct-mat3-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--crown-gold);
  border-radius: 3px;
}

.ct-mat3-intro {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.6rem;
}

.ct-mat3-list {
  list-style: none;
  padding: 0;
}

.ct-mat3-list li {
  font-size: .97rem;
  color: #333;
  margin-bottom: .55rem;
  padding-left: 1.3rem;
  position: relative;
}

.ct-mat3-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 8px;
  height: 8px;
  background: var(--crown-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(199,163,71,0.5);
}

/* =============================
   IMAGE SECTION (PREMIUM CARD)
   ============================= */
.ct-mat3-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ct-mat3-image img {
  width: 100%;
  max-width: 540px;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  transition: .3s ease;
}

.ct-mat3-image img:hover {
  transform: translateY(-6px);
}

/* ============================================================
   🧩 1500px – 1100px / MacBook Retina Fix
   ============================================================ */
@media (min-width: 1100px) and (max-width: 1500px) {

  .ct-mat3 {
    padding: 4.4rem 0;
  }

  .ct-mat3-wrap {
    gap: 3.2rem;
  }

  .ct-mat3-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .ct-mat3-intro {
    font-size: .98rem;
    line-height: 1.65;
  }

  .ct-mat3-list li {
    font-size: .94rem;
  }

  .ct-mat3-image img {
    height: 390px;
    max-width: 500px;
  }
}



/* ============================================================
   🧩 bis 1100px – Laptop
   ============================================================ */
@media (max-width: 1100px) {

  .ct-mat3 {
    padding: 4.2rem 0;
  }

  .ct-mat3-wrap {
    gap: 2.8rem;
  }

  .ct-mat3-text h2 {
    font-size: 2rem;
  }

  .ct-mat3-intro {
    font-size: .95rem;
  }

  .ct-mat3-list li {
    font-size: .92rem;
  }

  .ct-mat3-image img {
    height: 360px;
    max-width: 470px;
  }
}



/* ============================================================
   🧩 bis 900px – Tablet quer
   ============================================================ */
@media (max-width: 900px) {

  .ct-mat3-wrap {
    gap: 2.3rem;
  }

  .ct-mat3-text h2 {
    font-size: 1.85rem;
  }

  .ct-mat3-intro {
    font-size: .92rem;
  }

  .ct-mat3-list li {
    font-size: .9rem;
  }

  .ct-mat3-image img {
    height: 330px;
    max-width: 440px;
  }
}



/* ============================================================
   🧩 bis 768px – Tablet hoch
   ============================================================ */
@media (max-width: 768px) {

  .ct-mat3 {
    padding: 3.8rem 0;
  }

  .ct-mat3-wrap {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .ct-mat3-text {
    padding-right: 0;
  }

  .ct-mat3-text h2 {
    font-size: 1.72rem;
    padding-bottom: .5rem;
  }

  .ct-mat3-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ct-mat3-intro {
    font-size: .9rem;
    line-height: 1.58;
  }

  .ct-mat3-list li {
    font-size: .88rem;
    padding-left: 1rem;
  }

  .ct-mat3-image img {
    height: 300px;
    max-width: 420px;
    border-radius: 17px;
  }
}



/* ============================================================
   🧩 bis 600px – kleine Smartphones
   ============================================================ */
@media (max-width: 600px) {

  .ct-mat3 {
    padding: 3.4rem 0;
  }

  .ct-mat3-text h2 {
    font-size: 1.55rem;
  }

  .ct-mat3-intro {
    font-size: .84rem;
    margin-bottom: 1.3rem;
  }

  .ct-mat3-list li {
    font-size: .82rem;
  }

  .ct-mat3-image img {
    height: 260px;
    max-width: 100%;
  }
}



/* ============================================================
   🧩 bis 420px – moderne Smartphones (iPhone 12 etc.)
   ============================================================ */
@media (max-width: 420px) {

  .ct-mat3-text h2 {
    font-size: 1.42rem;
  }

  .ct-mat3-intro {
    font-size: .8rem;
  }

  .ct-mat3-list li {
    font-size: .78rem;
  }

  .ct-mat3-image img {
    height: 240px;
  }
}



/* ============================================================
   🧩 bis 350px – sehr kleine Geräte
   ============================================================ */
@media (max-width: 350px) {

  .ct-mat3-text h2 {
    font-size: 1.32rem;
  }

  .ct-mat3-intro {
    font-size: .76rem;
  }

  .ct-mat3-list li {
    font-size: .75rem;
  }

  .ct-mat3-image img {
    height: 220px;
  }
}


/* ============================================
   👑 CROWN TRANSFERS – CTA SECTION (CLEAN IVORY)
   ============================================ */

.ct-cta {
  width: 100%;
  background: #f7f6f3; /* Crown Ivory Clean Background */
  padding: 6rem 0;
  border-top: 1px solid rgba(199,163,71,0.25); /* dezente goldene Linie */
}

.ct-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4%;
  text-align: center;
  color: #1a1a1a; /* Text in elegantem Dunkelgrau */
}

/* HEADLINE */
.ct-cta h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
  letter-spacing: -0.2px;
}

/* PARAGRAPH */
.ct-cta p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 2.8rem auto;
  line-height: 1.65;
}

/* ACTION BUTTONS */
.ct-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BASE BUTTON */
.ct-cta-btn {
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

/* GOLD BUTTON */
.ct-cta-gold {
  background: #c7a347;
  color: #fff;
}

.ct-cta-gold:hover {
  background: #d6b860;
  box-shadow: 0 0 18px rgba(199,163,71,0.4);
  transform: translateY(-3px);
}

/* GHOST BUTTON (HELL / IVORY VERSION) */
.ct-cta-ghost {
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.15);
  color: #1a1a1a;
}

.ct-cta-ghost:hover {
  background: rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* ============================================================
   🧩 1500px – 1100px / MacBook Pro Retina Fix
   ============================================================ */
@media (min-width: 1100px) and (max-width: 1500px) {
  .ct-cta {
    padding: 5rem 0;
  }
  .ct-cta h2 {
    font-size: 2rem;
  }
  .ct-cta p {
    font-size: 1rem;
    margin-bottom: 2.4rem;
  }
  .ct-cta-btn {
    padding: 0.85rem 1.6rem;
    font-size: .9rem;
  }
}


/* ============================================================
   🧩 bis 1100px – Laptop
   ============================================================ */
@media (max-width: 1100px) {
  .ct-cta {
    padding: 4.7rem 0;
  }
  .ct-cta h2 {
    font-size: 1.9rem;
  }
  .ct-cta p {
    font-size: .98rem;
  }
  .ct-cta-btn {
    padding: .82rem 1.55rem;
    font-size: .88rem;
  }
}


/* ============================================================
   🧩 bis 900px – Tablet quer
   ============================================================ */
@media (max-width: 900px) {
  .ct-cta {
    padding: 4.4rem 0;
  }
  .ct-cta h2 {
    font-size: 1.75rem;
  }
  .ct-cta p {
    font-size: .95rem;
    margin-bottom: 2.2rem;
  }
  .ct-cta-btn {
    padding: .78rem 1.45rem;
    font-size: .85rem;
  }
}


/* ============================================================
   🧩 bis 768px – Tablet hoch
   ============================================================ */
@media (max-width: 768px) {
  .ct-cta {
    padding: 4rem 0;
  }
  .ct-cta h2 {
    font-size: 1.65rem;
  }
  .ct-cta p {
    font-size: .92rem;
    line-height: 1.55;
  }
  .ct-cta-btn {
    padding: .75rem 1.3rem;
    font-size: .82rem;
  }
}


/* ============================================================
   🧩 bis 600px – kleine Handys
   ============================================================ */
@media (max-width: 600px) {
  .ct-cta {
    padding: 3.6rem 0;
  }
  .ct-cta h2 {
    font-size: 1.55rem;
    margin-bottom: 1rem;
  }
  .ct-cta p {
    font-size: .88rem;
    margin-bottom: 1.9rem;
  }
  .ct-cta-actions {
    gap: .75rem;
  }
  .ct-cta-btn {
    padding: .65rem 1.15rem;
    font-size: .78rem;
    border-radius: 10px;
  }
}


/* ============================================================
   🧩 bis 420px – iPhone 12 / moderne Smartphones
   ============================================================ */
@media (max-width: 420px) {
  .ct-cta {
    padding: 3.2rem 0;
  }
  .ct-cta h2 {
    font-size: 1.45rem;
  }
  .ct-cta p {
    font-size: .85rem;
    margin-bottom: 1.6rem;
  }
  .ct-cta-btn {
    padding: .6rem 1rem;
    font-size: .75rem;
  }
}


/* ============================================================
   🧩 bis 350px – sehr kleine Geräte
   ============================================================ */
@media (max-width: 350px) {
  .ct-cta {
    padding: 2.9rem 0;
  }
  .ct-cta h2 {
    font-size: 1.32rem;
  }
  .ct-cta p {
    font-size: .8rem;
    margin-bottom: 1.4rem;
  }
  .ct-cta-btn {
    padding: .55rem .9rem;
    font-size: .72rem;
  }
}


/* ============================================================================
   CROWN TRANSFERS – EVENT BENEFITS (ULTRA PREMIUM)
   ============================================================================ */

.ct-eventbenefits {
  padding: 5rem 0;
  background: #f7f6f3;
}

.ct-eventbenefits-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  text-align: center;
}

/* HEADLINE */
.ct-eventbenefits h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--crown-text-dark);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}

.ct-eventbenefits h2::after {
  content: "";
  width: 85px;
  height: 3px;
  background: var(--crown-gold);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* GRID */
.ct-eventbenefits-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 2rem;
  margin-bottom: 3rem;
}

/* CARD */
.ct-eb-item {
  background: #f7f6f3;
  text-align: left;
  padding: 1.8rem 1.6rem 1.7rem;
  border-radius: 16px;
  border: 1px solid rgba(199,163,71,0.13);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  position: relative;
}

/* Hover effect */
.ct-eb-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.10);
  border-color: rgba(199,163,71,0.28);
}

/* GOLD BAR ON TOP LEFT */
.ct-eb-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 4px;
  background: var(--crown-gold);
  border-radius: 0 0 6px 0;
}

/* TITLES */
.ct-eb-item h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--crown-text-dark);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

/* PARAGRAPH */
.ct-eb-item p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.55;
}

/* ======================
   CTA BUTTON
   ====================== */
.ct-eventbenefits-btn {
  display: inline-block;
  background: var(--crown-gold);
  padding: 0.9rem 1.9rem;
  color: #fff;
  font-size: 0.98rem;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.25s ease;
}

.ct-eventbenefits-btn:hover {
  background: #b79539;
}

/* ============================================================
   🧩 1500px – 1100px / MacBook Retina Fix
   ============================================================ */
@media (min-width: 1100px) and (max-width: 1500px) {

  .ct-eventbenefits {
    padding: 4.5rem 0;
  }

  .ct-eventbenefits h2 {
    font-size: 2.2rem;
    margin-bottom: 2.6rem;
  }

  .ct-eventbenefits-content {
    gap: 2rem 1.8rem;
  }

  .ct-eb-item {
    padding: 1.65rem 1.5rem;
  }

  .ct-eb-item h3 {
    font-size: 1.12rem;
  }

  .ct-eb-item p {
    font-size: .93rem;
  }

  .ct-eventbenefits-btn {
    font-size: .9rem;
    padding: .85rem 1.7rem;
  }
}



/* ============================================================
   🧩 bis 1100px – Laptop
   ============================================================ */
@media (max-width: 1100px) {

  .ct-eventbenefits {
    padding: 4.2rem 0;
  }

  .ct-eventbenefits h2 {
    font-size: 2rem;
  }

  .ct-eventbenefits-content {
    gap: 1.9rem 1.7rem;
  }

  .ct-eb-item {
    padding: 1.55rem 1.45rem;
  }

  .ct-eb-item h3 {
    font-size: 1.08rem;
  }

  .ct-eb-item p {
    font-size: .9rem;
  }
}



/* ============================================================
   🧩 bis 900px – Tablet quer
   ============================================================ */
@media (max-width: 900px) {

  .ct-eventbenefits h2 {
    font-size: 1.85rem;
  }

  .ct-eventbenefits-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.7rem 1.4rem;
  }

  .ct-eb-item {
    padding: 1.45rem 1.35rem;
  }

  .ct-eb-item h3 {
    font-size: 1.05rem;
  }

  .ct-eb-item p {
    font-size: .88rem;
  }
}



/* ============================================================
   🧩 bis 768px – Tablet hoch
   ============================================================ */
@media (max-width: 768px) {

  .ct-eventbenefits {
    padding: 3.8rem 0;
  }

  .ct-eventbenefits h2 {
    font-size: 1.72rem;
    margin-bottom: 2.2rem;
  }

  .ct-eventbenefits-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 1.3rem;
  }

  .ct-eb-item {
    padding: 1.35rem 1.25rem;
  }

  .ct-eb-item h3 {
    font-size: 1.02rem;
  }

  .ct-eb-item p {
    font-size: .86rem;
  }

  .ct-eventbenefits-btn {
    padding: .75rem 1.5rem;
    font-size: .85rem;
  }
}



/* ============================================================
   🧩 bis 600px – kleine Smartphones
   ============================================================ */
@media (max-width: 600px) {

  .ct-eventbenefits {
    padding: 3.4rem 0;
  }

  .ct-eventbenefits h2 {
    font-size: 1.55rem;
    margin-bottom: 2rem;
  }

  .ct-eventbenefits-content {
    grid-template-columns: 1fr; /* 1 GRID – die einzige sinnvolle Lösung */
    gap: 1.4rem;
  }

  .ct-eb-item {
    padding: 1.25rem 1.15rem;
  }

  .ct-eb-item h3 {
    font-size: .98rem;
  }

  .ct-eb-item p {
    font-size: .82rem;
    line-height: 1.48;
  }

  .ct-eventbenefits-btn {
    padding: .7rem 1.3rem;
    font-size: .8rem;
    border-radius: 10px;
  }
}



/* ============================================================
   🧩 bis 420px – moderne Smartphones (iPhone 12 etc.)
   ============================================================ */
@media (max-width: 420px) {

  .ct-eventbenefits h2 {
    font-size: 1.42rem;
  }

  .ct-eb-item h3 {
    font-size: .95rem;
  }

  .ct-eb-item p {
    font-size: .78rem;
  }

  .ct-eventbenefits-btn {
    font-size: .75rem;
    padding: .65rem 1.15rem;
  }
}



/* ============================================================
   🧩 bis 350px – sehr kleine Geräte
   ============================================================ */
@media (max-width: 350px) {

  .ct-eventbenefits h2 {
    font-size: 1.32rem;
    margin-bottom: 1.7rem;
  }

  .ct-eb-item h3 {
    font-size: .9rem;
  }

  .ct-eb-item p {
    font-size: .75rem;
  }

  .ct-eventbenefits-btn {
    font-size: .72rem;
    padding: .6rem 1rem;
  }
}


/* ============================================================
   CROWN TRANSFERS – EVENT TYPES SECTION
   ============================================================ */

.ct-eventtypes {
  padding: 4rem 0 3.2rem;
  background: #f7f6f3;
}

.ct-eventtypes-head {
  max-width: 780px;
  margin: 0 auto 2.4rem auto;
  text-align: center;
}

/* HEADLINE – Crown Transfers Premium Style */
.ct-eventtypes-head h2 {
  font-size: 2.3rem;
  font-weight: 700; /* dicker */
  color: var(--crown-text-dark);
  margin-bottom: 0.9rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.55rem;
}

/* Goldener Strich unter H2 */
.ct-eventtypes-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 68px;
  height: 3px;
  background: var(--crown-gold);
  border-radius: 2px;
}


.ct-eventtypes-head p {
  font-size: 1rem;
  color: #333;
  opacity: 0.9;
}

/* Horizontal Scroll Track */
.ct-eventtypes-track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  padding: 0 1.4rem 1.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.ct-eventtypes-track::-webkit-scrollbar {
  height: 6px;
}

.ct-eventtypes-track::-webkit-scrollbar-thumb {
  background: rgba(199,163,71,0.4);
  border-radius: 10px;
}

/* Cards */
.ct-eventtypes-card {
  min-width: 270px;
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 7px 20px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.ct-eventtypes-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-color: rgba(199,163,71,0.55);
}

.ct-eventtypes-card h3 {
  font-size: 1.25rem;
  color: var(--crown-text-dark);
  margin-bottom: 0.55rem;
}

.ct-eventtypes-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.45;
}

/* ============================================================
   🧩 1500px – 1100px / MacBook Retina Fix
   ============================================================ */
@media (min-width: 1100px) and (max-width: 1500px) {

  .ct-eventtypes {
    padding: 3.6rem 0 3rem;
  }

  .ct-eventtypes-head h2 {
    font-size: 2.1rem;
  }

  .ct-eventtypes-head p {
    font-size: .95rem;
  }

  .ct-eventtypes-card {
    min-width: 255px;
    padding: 1.5rem 1.35rem;
  }

  .ct-eventtypes-card h3 {
    font-size: 1.18rem;
  }

  .ct-eventtypes-card p {
    font-size: .9rem;
  }
}



/* ============================================================
   🧩 bis 1100px – Laptop
   ============================================================ */
@media (max-width: 1100px) {

  .ct-eventtypes {
    padding: 3.4rem 0 2.7rem;
  }

  .ct-eventtypes-head h2 {
    font-size: 2rem;
  }

  .ct-eventtypes-head p {
    font-size: .93rem;
  }

  .ct-eventtypes-card {
    min-width: 245px;
    padding: 1.45rem 1.3rem;
  }

  .ct-eventtypes-card h3 {
    font-size: 1.15rem;
  }

  .ct-eventtypes-card p {
    font-size: .88rem;
  }
}



/* ============================================================
   🧩 bis 900px – Tablet quer
   ============================================================ */
@media (max-width: 900px) {

  .ct-eventtypes {
    padding: 3.2rem 0 2.5rem;
  }

  .ct-eventtypes-head h2 {
    font-size: 1.85rem;
  }

  .ct-eventtypes-head p {
    font-size: .9rem;
  }

  .ct-eventtypes-card {
    min-width: 235px;
    padding: 1.35rem 1.25rem;
  }

  .ct-eventtypes-card h3 {
    font-size: 1.12rem;
  }

  .ct-eventtypes-card p {
    font-size: .86rem;
  }
}



/* ============================================================
   🧩 bis 768px – Tablet hoch
   ============================================================ */
@media (max-width: 768px) {

  .ct-eventtypes {
    padding: 3rem 0 2.3rem;
  }

  .ct-eventtypes-head h2 {
    font-size: 1.72rem;
  }

  .ct-eventtypes-card {
    min-width: 225px;
    padding: 1.3rem 1.15rem;
  }

  .ct-eventtypes-card h3 {
    font-size: 1.08rem;
  }

  .ct-eventtypes-card p {
    font-size: .84rem;
  }
}



/* ============================================================
   🧩 bis 600px – kleine Smartphones
   ============================================================ */
@media (max-width: 600px) {

  .ct-eventtypes {
    padding: 2.8rem 0 2.1rem;
  }

  .ct-eventtypes-head h2 {
    font-size: 1.55rem;
  }

  .ct-eventtypes-head p {
    font-size: .86rem;
  }

  /* Smooth scrolling für mobiles Swiping */
  .ct-eventtypes-track {
    gap: 1.3rem;
    padding: 0 1rem 1rem;
  }

  .ct-eventtypes-card {
    min-width: 210px;
    padding: 1.2rem 1.05rem;
  }

  .ct-eventtypes-card h3 {
    font-size: 1rem;
  }

  .ct-eventtypes-card p {
    font-size: .8rem;
    line-height: 1.45;
  }
}



/* ============================================================
   🧩 bis 420px – moderne Smartphones (iPhone 12)
   ============================================================ */
@media (max-width: 420px) {

  .ct-eventtypes-head h2 {
    font-size: 1.42rem;
  }

  .ct-eventtypes-card {
    min-width: 200px;
  }

  .ct-eventtypes-card h3 {
    font-size: .95rem;
  }

  .ct-eventtypes-card p {
    font-size: .78rem;
  }
}



/* ============================================================
   🧩 bis 350px – sehr kleine Geräte
   ============================================================ */
@media (max-width: 350px) {

  .ct-eventtypes-head h2 {
    font-size: 1.32rem;
  }

  .ct-eventtypes-card {
    min-width: 185px;
  }

  .ct-eventtypes-card h3 {
    font-size: .9rem;
  }

  .ct-eventtypes-card p {
    font-size: .75rem;
  }
}


/* ============================================================
   PREMIUM SEO SECTION – SMOOTH TEXT VERSION
   ============================================================ */

.ct-eventseo2 {
  padding: 4.5rem 0;
  background: #f7f6f3;
}

.ct-eventseo2-wrap {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 4%;
}

.ct-eventseo2 h2 {
  text-align: center;
  font-size: 2.35rem;
  font-weight: 700;
  margin-bottom: 2.4rem;
  color: var(--crown-text-dark);
  position: relative;
  padding-bottom: .65rem;
}

.ct-eventseo2 h2::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--crown-gold);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.ct-eventseo2-intro {
  max-width: 750px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.65;
  color: #444;
}

.ct-eventseo2-block {
  margin-bottom: 2.8rem;
}

.ct-eventseo2-block h3 {
  font-size: 1.32rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--crown-text-dark);
}

.ct-eventseo2-block p {
  font-size: 1rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: .6rem;
}

.ct-eventseo2-block ul {
  list-style: none;
  padding-left: 0;
}

.ct-eventseo2-block ul li {
  padding-left: 1.2rem;
  margin-bottom: .45rem;
  font-size: .97rem;
  color: #333;
  position: relative;
}

.ct-eventseo2-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: 8px;
  height: 8px;
  background: var(--crown-gold);
  border-radius: 50%;
}

/* ============================================================
   🧩 1500px – 1100px / MacBook Retina Fix
   ============================================================ */
@media (min-width: 1100px) and (max-width: 1500px) {
  .ct-eventseo2 {
    padding: 4.2rem 0;
  }
  .ct-eventseo2 h2 {
    font-size: 2.15rem;
  }
  .ct-eventseo2-intro {
    font-size: .98rem;
  }
  .ct-eventseo2-block h3 {
    font-size: 1.25rem;
  }
  .ct-eventseo2-block p {
    font-size: .96rem;
  }
  .ct-eventseo2-block ul li {
    font-size: .92rem;
  }
}


/* ============================================================
   🧩 bis 1100px – Laptop
   ============================================================ */
@media (max-width: 1100px) {
  .ct-eventseo2 {
    padding: 3.9rem 0;
  }
  .ct-eventseo2 h2 {
    font-size: 2rem;
  }
  .ct-eventseo2-intro {
    font-size: .95rem;
  }
  .ct-eventseo2-block h3 {
    font-size: 1.22rem;
  }
  .ct-eventseo2-block p {
    font-size: .95rem;
  }
  .ct-eventseo2-block ul li {
    font-size: .9rem;
  }
}


/* ============================================================
   🧩 bis 900px – Tablet quer
   ============================================================ */
@media (max-width: 900px) {
  .ct-eventseo2 {
    padding: 3.6rem 0;
  }
  .ct-eventseo2 h2 {
    font-size: 1.85rem;
  }
  .ct-eventseo2-intro {
    font-size: .93rem;
  }
  .ct-eventseo2-block h3 {
    font-size: 1.18rem;
  }
  .ct-eventseo2-block p {
    font-size: .93rem;
  }
  .ct-eventseo2-block ul li {
    font-size: .88rem;
  }
}


/* ============================================================
   🧩 bis 768px – Tablet hoch
   ============================================================ */
@media (max-width: 768px) {
  .ct-eventseo2 {
    padding: 3.3rem 0;
  }
  .ct-eventseo2 h2 {
    font-size: 1.72rem;
  }
  .ct-eventseo2-intro {
    font-size: .9rem;
  }
  .ct-eventseo2-block h3 {
    font-size: 1.12rem;
  }
  .ct-eventseo2-block p {
    font-size: .9rem;
  }
  .ct-eventseo2-block ul li {
    font-size: .85rem;
  }
}


/* ============================================================
   🧩 bis 600px – kleine Smartphones
   ============================================================ */
@media (max-width: 600px) {
  .ct-eventseo2 {
    padding: 3rem 0;
  }
  .ct-eventseo2 h2 {
    font-size: 1.55rem;
  }
  .ct-eventseo2-intro {
    font-size: .88rem;
  }
  .ct-eventseo2-block {
    margin-bottom: 2.2rem;
  }
  .ct-eventseo2-block h3 {
    font-size: 1.05rem;
  }
  .ct-eventseo2-block p {
    font-size: .88rem;
  }
  .ct-eventseo2-block ul li {
    font-size: .83rem;
  }
}


/* ============================================================
   🧩 bis 420px – moderne Smartphones (iPhone 12)
   ============================================================ */
@media (max-width: 420px) {
  .ct-eventseo2 h2 {
    font-size: 1.42rem;
    padding-bottom: .55rem;
  }
  .ct-eventseo2-intro {
    font-size: .86rem;
  }
  .ct-eventseo2-block h3 {
    font-size: 1rem;
  }
  .ct-eventseo2-block p {
    font-size: .85rem;
  }
  .ct-eventseo2-block ul li {
    font-size: .8rem;
  }
}


/* ============================================================
   🧩 bis 350px – Sehr kleine Geräte
   ============================================================ */
@media (max-width: 350px) {
  .ct-eventseo2 h2 {
    font-size: 1.32rem;
  }
  .ct-eventseo2-intro {
    font-size: .83rem;
  }
  .ct-eventseo2-block h3 {
    font-size: .95rem;
  }
  .ct-eventseo2-block p {
    font-size: .82rem;
  }
  .ct-eventseo2-block ul li {
    font-size: .78rem;
  }
}

