
/* ======================================
   👑 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 – ULTRA CLEAN VIP SECTION
   =================================== */

.ct-vipclean {
  width: 100%;
  padding: 6rem 0;
  background: #f7f6f3; /* Crown beige Hintergrund */
}

.ct-vipclean-inner {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* -------------------------
   IMAGE (LEFT)
-------------------------- */
.ct-vipclean-img {
  flex: 1.2;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.17);
}

.ct-vipclean-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -------------------------
   TEXT (RIGHT)
-------------------------- */
.ct-vipclean-text {
  flex: 1;
  max-width: 520px;
}

.ct-vipclean-text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--crown-text-dark);
}

.ct-vipclean-line {
  width: 70px;
  height: 4px;
  background: var(--crown-gold);
  display: block;
  border-radius: 10px;
  margin: 0.7rem 0 1.8rem;
}

.ct-vipclean-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #444;
  margin-bottom: 2rem;
}

/* -------------------------
   GOLD CHECKPOINTS
-------------------------- */
.ct-vipclean-points {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ct-vipclean-point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.ct-vipclean-check {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--crown-gold);
  line-height: 1;
  margin-top: 0.15rem;
}

.ct-vipclean-point p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.ct-vipclean-point strong {
  color: var(--crown-text-dark);
}

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

  .ct-vipclean {
    padding: 5rem 0;
  }

  .ct-vipclean-inner {
    gap: 3.4rem;
  }

  .ct-vipclean-text h2 {
    font-size: 2.2rem;
  }

  .ct-vipclean-sub {
    font-size: 1rem;
  }

  .ct-vipclean-point p {
    font-size: .96rem;
  }
}



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

  .ct-vipclean {
    padding: 4.6rem 0;
  }

  .ct-vipclean-inner {
    gap: 3rem;
  }

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

  .ct-vipclean-sub {
    font-size: .96rem;
    margin-bottom: 1.7rem;
  }

  .ct-vipclean-point p {
    font-size: .92rem;
  }
}



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

  .ct-vipclean-inner {
    gap: 2.4rem;
  }

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

  .ct-vipclean-sub {
    font-size: .92rem;
  }

  .ct-vipclean-point p {
    font-size: .9rem;
  }
}



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

  .ct-vipclean {
    padding: 4rem 0;
  }

  .ct-vipclean-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .ct-vipclean-img {
    max-height: 360px;
    border-radius: 16px;
  }

  .ct-vipclean-text h2 {
    font-size: 1.72rem;
    text-align: center;
  }

  .ct-vipclean-line {
    margin: 0.6rem auto 1.5rem;
  }

  .ct-vipclean-sub {
    font-size: .9rem;
    text-align: center;
  }

  .ct-vipclean-points {
    gap: 1rem;
  }

  .ct-vipclean-point p {
    font-size: .88rem;
  }
}



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

  .ct-vipclean {
    padding: 3.5rem 0;
  }

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

  .ct-vipclean-sub {
    font-size: .84rem;
    margin-bottom: 1.4rem;
  }

  .ct-vipclean-point p {
    font-size: .82rem;
    line-height: 1.45;
  }

  .ct-vipclean-check {
    font-size: 1.1rem;
  }
}



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

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

  .ct-vipclean-sub {
    font-size: .8rem;
  }

  .ct-vipclean-point p {
    font-size: .78rem;
  }
}



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

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

  .ct-vipclean-sub {
    font-size: .76rem;
  }

  .ct-vipclean-point p {
    font-size: .75rem;
  }
}

/* =========================================
   CROWN TRANSFERS – CORPORATE UNIQUE SECTION
   ========================================= */

.ct-corp-unique {
  width: 100%;
  padding: 6rem 0;
  background: #f7f6f3;
}

.ct-corp-unique-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 4%;
}

/* HEAD */
.ct-corp-unique-head {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}

.ct-corp-unique-head h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--crown-text-dark);
}

.ct-corp-unique-line {
  width: 70px;
  height: 4px;
  background: var(--crown-gold);
  display: block;
  border-radius: 10px;
  margin: 0.7rem auto 1.8rem;
}

.ct-corp-unique-sub {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.55;
}

/* GRID */
.ct-corp-unique-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

/* BOXES */
.ct-corp-unique-box {
  padding: 2.2rem 2rem;
  background: #f7f6f3;
  border: 2px solid rgba(199,163,71,0.35);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.ct-corp-unique-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  border-color: var(--crown-gold);
}

.ct-corp-unique-box h3 {
  font-size: 1.35rem;
  color: var(--crown-text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ct-corp-unique-box p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #555;
}

/* BUTTON */
.ct-corp-unique-btnwrap {
  margin-top: 3.5rem;
  text-align: center;
}

.ct-corp-unique-btn {
  padding: 0.9rem 2.2rem;
  background: var(--crown-gold);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.25s;
}

.ct-corp-unique-btn:hover {
  opacity: 0.85;
}


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

  .ct-corp-unique {
    padding: 5rem 0;
  }

  .ct-corp-unique-head h2 {
    font-size: 2.2rem; /* gleich wie Desktop */
  }

  .ct-corp-unique-sub {
    font-size: 1rem;
  }

  .ct-corp-unique-grid {
    gap: 1.9rem;
  }

  .ct-corp-unique-box {
    padding: 2rem 1.8rem;
  }

  .ct-corp-unique-box h3 {
    font-size: 1.25rem;
  }

  .ct-corp-unique-box p {
    font-size: .95rem;
  }

  .ct-corp-unique-btn {
    padding: 0.85rem 2rem;
    font-size: .95rem;
  }
}



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

  .ct-corp-unique {
    padding: 4.7rem 0;
  }

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

  .ct-corp-unique-sub {
    font-size: .96rem;
  }

  .ct-corp-unique-grid {
    gap: 1.8rem;
  }

  .ct-corp-unique-box {
    padding: 1.9rem 1.7rem;
  }

  .ct-corp-unique-box h3 {
    font-size: 1.18rem;
  }

  .ct-corp-unique-box p {
    font-size: .92rem;
  }

  .ct-corp-unique-btn {
    padding: .82rem 1.9rem;
    font-size: .9rem;
  }
}



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

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

  .ct-corp-unique-sub {
    font-size: .92rem;
  }

  .ct-corp-unique-grid {
    gap: 1.7rem;
  }

  .ct-corp-unique-box {
    padding: 1.75rem 1.55rem;
  }

  .ct-corp-unique-box h3 {
    font-size: 1.13rem;
  }

  .ct-corp-unique-box p {
    font-size: .9rem;
  }

  .ct-corp-unique-btn {
    padding: .78rem 1.8rem;
    font-size: .88rem;
  }
}



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

  .ct-corp-unique {
    padding: 4rem 0;
  }

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

  .ct-corp-unique-sub {
    font-size: .88rem;
  }

  .ct-corp-unique-grid {
    gap: 1.6rem;
  }

  .ct-corp-unique-box {
    padding: 1.6rem 1.45rem;
    border-radius: 16px;
  }

  .ct-corp-unique-box h3 {
    font-size: 1.05rem;
  }

  .ct-corp-unique-box p {
    font-size: .86rem;
  }

  .ct-corp-unique-btn {
    padding: .75rem 1.65rem;
    font-size: .82rem;
  }
}



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

  .ct-corp-unique {
    padding: 3.6rem 0;
  }

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

  .ct-corp-unique-sub {
    font-size: .84rem;
  }

  /* Grid → 1 Spalte */
  .ct-corp-unique-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ct-corp-unique-box {
    padding: 1.45rem 1.25rem;
    border-radius: 14px;
  }

  .ct-corp-unique-box h3 {
    font-size: 1rem;
  }

  .ct-corp-unique-box p {
    font-size: .82rem;
  }

  .ct-corp-unique-btn {
    padding: .68rem 1.5rem;
    font-size: .78rem;
  }
}



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

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

  .ct-corp-unique-sub {
    font-size: .8rem;
  }

  .ct-corp-unique-box {
    padding: 1.35rem 1.15rem;
  }

  .ct-corp-unique-box h3 {
    font-size: .95rem;
  }

  .ct-corp-unique-box p {
    font-size: .8rem;
  }

  .ct-corp-unique-btn {
    padding: .6rem 1.3rem;
    font-size: .76rem;
  }
}



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

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

  .ct-corp-unique-sub {
    font-size: .76rem;
  }

  .ct-corp-unique-box {
    padding: 1.28rem 1rem;
  }

  .ct-corp-unique-box h3 {
    font-size: .92rem;
  }

  .ct-corp-unique-box p {
    font-size: .78rem;
  }

  .ct-corp-unique-btn {
    padding: .55rem 1.15rem;
    font-size: .72rem;
  }
}


/* ============================================
   👑 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 – ROADSHOW TIMELINE
   =================================== */

.ct-roadshow {
  width: 100%;
  padding: 6rem 0;
  background: #f7f6f3;
}

.ct-roadshow-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 4%;
}

/* HEAD */
.ct-roadshow-head {
  max-width: 620px;
  margin-bottom: 4rem;
}

.ct-roadshow-head h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--crown-text-dark);
}

.ct-roadshow-line {
  width: 70px;
  height: 4px;
  background: var(--crown-gold);
  display: block;
  border-radius: 10px;
  margin: 0.7rem 0 1.6rem;
}

.ct-roadshow-head p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.55;
}

/* TIMELINE */
.ct-roadshow-timeline {
  position: relative;
  padding-left: 45px;
  border-left: 3px solid var(--crown-gold);
}

/* EACH STEP */
.ct-roadshow-step {
  margin-bottom: 2.8rem;
  position: relative;
}

.ct-roadshow-step:last-child {
  margin-bottom: 0;
}

.ct-roadshow-dot {
  width: 16px;
  height: 16px;
  background: var(--crown-gold);
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 4px;
  box-shadow: 0 0 10px rgba(199,163,71,0.5);
}

.ct-roadshow-content {
  padding-left: 1rem;
}

.ct-roadshow-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--crown-text-dark);
  margin-bottom: 0.4rem;
}

.ct-roadshow-content p {
  font-size: 1rem;
  line-height: 1.55;
  color: #555;
}

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

  .ct-roadshow {
    padding: 5rem 0;
  }

  .ct-roadshow-head h2 {
    font-size: 2.2rem;
  }

  .ct-roadshow-head p {
    font-size: 1rem;
  }

  .ct-roadshow-content h3 {
    font-size: 1.15rem;
  }

  .ct-roadshow-content p {
    font-size: .95rem;
  }
}



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

  .ct-roadshow {
    padding: 4.6rem 0;
  }

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

  .ct-roadshow-head p {
    font-size: .96rem;
  }

  .ct-roadshow-step {
    margin-bottom: 2.4rem;
  }

  .ct-roadshow-content h3 {
    font-size: 1.12rem;
  }

  .ct-roadshow-content p {
    font-size: .92rem;
  }
}



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

  .ct-roadshow-head {
    margin-bottom: 3.4rem;
  }

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

  .ct-roadshow-head p {
    font-size: .92rem;
  }

  .ct-roadshow-timeline {
    padding-left: 38px;
  }

  .ct-roadshow-dot {
    width: 14px;
    height: 14px;
    left: -7px;
  }

  .ct-roadshow-content h3 {
    font-size: 1.08rem;
  }

  .ct-roadshow-content p {
    font-size: .9rem;
  }
}



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

  .ct-roadshow {
    padding: 4rem 0;
  }

  .ct-roadshow-head h2 {
    font-size: 1.72rem;
    text-align: center;
  }

  .ct-roadshow-line {
    margin: 0.6rem auto 1.4rem;
  }

  .ct-roadshow-head p {
    text-align: center;
    font-size: .9rem;
  }

  .ct-roadshow-timeline {
    padding-left: 32px;
  }

  .ct-roadshow-dot {
    width: 13px;
    height: 13px;
    left: -6.5px;
  }

  .ct-roadshow-content h3 {
    font-size: 1.02rem;
  }

  .ct-roadshow-content p {
    font-size: .88rem;
  }
}



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

  .ct-roadshow {
    padding: 3.5rem 0;
  }

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

  .ct-roadshow-head p {
    font-size: .85rem;
    line-height: 1.5;
  }

  .ct-roadshow-timeline {
    padding-left: 26px;
    border-left-width: 2px;
  }

  .ct-roadshow-dot {
    width: 11px;
    height: 11px;
    left: -5.5px;
  }

  .ct-roadshow-content h3 {
    font-size: .95rem;
  }

  .ct-roadshow-content p {
    font-size: .82rem;
    line-height: 1.45;
  }
}



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

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

  .ct-roadshow-head p {
    font-size: .8rem;
  }

  .ct-roadshow-timeline {
    padding-left: 22px;
  }

  .ct-roadshow-dot {
    width: 10px;
    height: 10px;
    left: -5px;
  }

  .ct-roadshow-content h3 {
    font-size: .9rem;
  }

  .ct-roadshow-content p {
    font-size: .78rem;
  }
}



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

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

  .ct-roadshow-head p {
    font-size: .76rem;
  }

  .ct-roadshow-timeline {
    padding-left: 18px;
  }

  .ct-roadshow-dot {
    width: 9px;
    height: 9px;
    left: -4.5px;
  }

  .ct-roadshow-content h3 {
    font-size: .86rem;
  }

  .ct-roadshow-content p {
    font-size: .75rem;
  }
}


/* =============================================
   CROWN TRANSFERS – SEO VIP PRIVATE JET SECTION
   ============================================= */

.ct-seo-vip {
  width: 100%;
  padding: 6rem 0;
  background: #f7f6f3;
}

.ct-seo-vip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

/* HEAD */
.ct-seo-vip h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--crown-text-dark);
}

.ct-seo-vip-line {
  width: 70px;
  height: 4px;
  background: var(--crown-gold);
  border-radius: 10px;
  display: block;
  margin: 0.7rem 0 1.6rem;
}

.ct-seo-vip-sub {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  max-width: 850px;
  margin-bottom: 2.8rem;
}

/* POINTS */
.ct-seo-vip-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.ct-seo-vip-point {
  display: flex;
  gap: 0.9rem;
}

.ct-seo-vip-check {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--crown-gold);
  margin-top: 0.1rem;
}

.ct-seo-vip-point p {
  font-size: 1rem;
  color: #333;
  line-height: 1.55;
}

/* TARGET GROUPS */
.ct-seo-vip-h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--crown-text-dark);
  margin-bottom: 1.5rem;
}

.ct-seo-vip-targets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ct-seo-vip-target {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.ct-seo-vip-target span {
  font-size: 1.25rem;
  color: var(--crown-gold);
  line-height: 1;
  margin-top: 2px;
}

.ct-seo-vip-target p {
  font-size: 1rem;
  line-height: 1.55;
  color: #333;
}

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

  .ct-seo-vip {
    padding: 5rem 0;
  }

  .ct-seo-vip h2 {
    font-size: 2.2rem;
  }

  .ct-seo-vip-sub {
    font-size: 1rem;
  }

  .ct-seo-vip-point p,
  .ct-seo-vip-target p {
    font-size: .95rem;
  }

  .ct-seo-vip-h3 {
    font-size: 1.22rem;
  }
}



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

  .ct-seo-vip {
    padding: 4.7rem 0;
  }

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

  .ct-seo-vip-sub {
    font-size: .96rem;
    margin-bottom: 2.4rem;
  }

  .ct-seo-vip-point p,
  .ct-seo-vip-target p {
    font-size: .92rem;
  }

  .ct-seo-vip-h3 {
    font-size: 1.18rem;
  }
}



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

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

  .ct-seo-vip-sub {
    font-size: .92rem;
    line-height: 1.55;
  }

  .ct-seo-vip-point p,
  .ct-seo-vip-target p {
    font-size: .9rem;
  }

  .ct-seo-vip-h3 {
    font-size: 1.12rem;
  }
}



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

  .ct-seo-vip {
    padding: 4rem 0;
  }

  .ct-seo-vip h2 {
    font-size: 1.72rem;
  }

  .ct-seo-vip-line {
    margin: 0.6rem 0 1.4rem;
  }

  .ct-seo-vip-sub {
    font-size: .88rem;
  }

  .ct-seo-vip-point p,
  .ct-seo-vip-target p {
    font-size: .86rem;
  }

  .ct-seo-vip-h3 {
    font-size: 1.05rem;
  }
}



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

  .ct-seo-vip {
    padding: 3.5rem 0;
  }

  .ct-seo-vip h2 {
    font-size: 1.55rem;
  }

  .ct-seo-vip-sub {
    font-size: .85rem;
    margin-bottom: 2rem;
  }

  .ct-seo-vip-point p,
  .ct-seo-vip-target p {
    font-size: .82rem;
    line-height: 1.45;
  }

  .ct-seo-vip-h3 {
    font-size: .98rem;
    margin-bottom: 1.1rem;
  }
}



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

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

  .ct-seo-vip-sub {
    font-size: .8rem;
  }

  .ct-seo-vip-point p,
  .ct-seo-vip-target p {
    font-size: .78rem;
  }

  .ct-seo-vip-h3 {
    font-size: .9rem;
  }
}



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

  .ct-seo-vip h2 {
    font-size: 1.32rem;
  }

  .ct-seo-vip-sub {
    font-size: .76rem;
  }

  .ct-seo-vip-point p,
  .ct-seo-vip-target p {
    font-size: .75rem;
  }

  .ct-seo-vip-h3 {
    font-size: .86rem;
  }
}


/* ========================================
   CROWN TRANSFERS – SEO SECTION WITH SUBHEADINGS
   ======================================== */

.ct-seosection {
  width: 100%;
  padding: 6rem 0;
  background: #f7f6f3;
}

.ct-seosection-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

/* H2 */
.ct-seosection h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--crown-text-dark);
}

.ct-seosection-line {
  width: 70px;
  height: 4px;
  background: var(--crown-gold);
  border-radius: 10px;
  display: block;
  margin: 0.7rem 0 1.8rem;
}

/* H3 Zwischenüberschriften */
.ct-seosection-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--crown-text-dark);
  margin: 2.2rem 0 0.8rem;
}

/* Text paragraphs */
.ct-seosection-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  max-width: 950px;
  margin-bottom: 1.6rem;
}

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

  .ct-seosection {
    padding: 5rem 0;
  }

  .ct-seosection h2 {
    font-size: 2.2rem;
  }

  .ct-seosection-subtitle {
    font-size: 1.25rem;
    margin: 2rem 0 .7rem;
  }

  .ct-seosection-text {
    font-size: 1rem;
    line-height: 1.65;
  }
}



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

  .ct-seosection {
    padding: 4.7rem 0;
  }

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

  .ct-seosection-subtitle {
    font-size: 1.2rem;
  }

  .ct-seosection-text {
    font-size: .96rem;
    line-height: 1.62;
  }
}



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

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

  .ct-seosection-subtitle {
    font-size: 1.15rem;
    margin-top: 1.7rem;
  }

  .ct-seosection-text {
    font-size: .92rem;
    line-height: 1.6;
  }
}



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

  .ct-seosection {
    padding: 4rem 0;
  }

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

  .ct-seosection-line {
    margin: .6rem 0 1.4rem;
  }

  .ct-seosection-subtitle {
    font-size: 1.08rem;
  }

  .ct-seosection-text {
    font-size: .88rem;
    line-height: 1.58;
  }
}



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

  .ct-seosection {
    padding: 3.6rem 0;
  }

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

  .ct-seosection-subtitle {
    font-size: 1rem;
    margin: 1.6rem 0 .6rem;
  }

  .ct-seosection-text {
    font-size: .84rem;
    line-height: 1.48;
    margin-bottom: 1.4rem;
  }
}



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

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

  .ct-seosection-subtitle {
    font-size: .95rem;
  }

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



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

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

  .ct-seosection-subtitle {
    font-size: .9rem;
  }

  .ct-seosection-text {
    font-size: .76rem;
    line-height: 1.45;
  }
}



