:root {
  --deep-sea: #0E2A38;
  --thessaloniki-sky: #5B8FA8;
  --off-white: #F7F3EC;
  --olympus-stone: #E5DED2;
  --marble-red: #A8413A;
  --marble-red-dark: #8C342E;
  --field-green: #6B7A4F;
  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1EBE5D;
  --ink: #0E2A38;
  --ink-soft: #4A5F6B;
  --rule: #DCD3C3;
  --max-width: 1280px;
  --gutter: 48px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

  /* PAGE HERO */
  .page-hero {
    background: var(--deep-sea);
    color: var(--off-white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .page-hero-img { position: absolute; inset: 0; z-index: 0; opacity: 0.30; }
  .page-hero-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  .page-hero::before {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background:
      radial-gradient(ellipse at 100% 100%, rgba(123, 31, 44, 0.25) 0%, transparent 60%),
      radial-gradient(ellipse at 0% 0%, rgba(91, 143, 168, 0.18) 0%, transparent 50%),
      linear-gradient(180deg, rgba(14, 42, 56, 0.65) 0%, rgba(14, 42, 56, 0.88) 100%);
  }
  .page-hero .wrap { position: relative; z-index: 2; }
  .page-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(247, 243, 236, 0.85);
  }
  .page-hero-eyebrow .dash { width: 32px; height: 1px; background: var(--marble-red); }
  .page-hero h1 {
    font-family: var(--serif);
    font-size: clamp(48px, 6.5vw, 84px);
    line-height: 1;
    color: var(--off-white);
    margin-bottom: 24px;
    max-width: 16ch;
  }
  .page-hero h1 em { color: var(--marble-red); font-style: italic; }
  .page-hero-sub {
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.45;
    color: rgba(247, 243, 236, 0.85);
    max-width: 56ch;
  }

  /* WHATSAPP BAND */
  .ct-whatsapp {
    background: var(--whatsapp-green);
    color: #FFFFFF;
    padding: 48px 0;
  }
  .ct-whatsapp-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
  }
  .ct-whatsapp-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
  }
  .ct-whatsapp-title {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 10px;
  }
  .ct-whatsapp-title em { font-style: italic; }
  .ct-whatsapp-sub {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 64ch;
  }
  .ct-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    background: #FFFFFF;
    color: var(--whatsapp-green);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
  }
  .ct-whatsapp-btn:hover {
    background: #F0FFF4;
    transform: translateY(-1px);
  }
  .ct-whatsapp-btn svg {
    width: 22px;
    height: 22px;
    fill: var(--whatsapp-green);
  }

  /* DECISION SECTION — two cards */
  .ct-decision {
    background: var(--off-white);
    padding: 120px 0 100px;
  }
  .ct-decision-header {
    margin-bottom: 56px;
    max-width: 720px;
  }
  .ct-decision-header .eyebrow { display: block; margin-bottom: 16px; }
  .ct-decision-header h2 {
    font-family: var(--serif);
    font-size: clamp(34px, 4.4vw, 52px); letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .ct-decision-header h2 em { color: var(--marble-red); font-style: italic; }
  .ct-decision-header p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
  }

  .ct-cards {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 28px;
  }

  .ct-card {
    background: var(--off-white);
    border: 1px solid var(--rule);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), border-color var(--transition);
  }
  .ct-card:hover {
    transform: translateY(-4px);
    border-color: var(--marble-red);
  }

  .ct-card-header {
    padding: 32px 36px 28px;
  }
  .ct-card-header.dark {
    background: var(--deep-sea);
    color: var(--off-white);
  }
  .ct-card-header.tinted {
    background: var(--olympus-stone);
    color: var(--ink);
    border-bottom: 1px solid var(--rule);
  }

  .ct-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 4px 12px;
    margin-bottom: 16px;
  }
  .ct-badge.dark {
    background: rgba(123, 31, 44, 0.25);
    color: #F4C2A8;
  }
  .ct-badge.terracotta {
    background: rgba(123, 31, 44, 0.15);
    color: var(--marble-red);
  }

  .ct-card-title {
    font-family: var(--serif);
    font-size: clamp(24px, 2.5vw, 30px);
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .ct-card-title.light { color: var(--off-white); }
  .ct-card-title em { font-style: italic; }
  .ct-card-header.dark .ct-card-title em { color: var(--marble-red); }
  .ct-card-header.tinted .ct-card-title em { color: var(--marble-red); }

  .ct-card-sub {
    font-size: 13px;
    line-height: 1.55;
  }
  .ct-card-sub.light { color: rgba(247, 243, 236, 0.75); }
  .ct-card-sub.muted { color: var(--ink-soft); }

  .ct-card-body {
    padding: 32px 36px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .ct-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 16px;
  }

  /* HUBSPOT PLACEHOLDER */
  .ct-hs-placeholder {
    background: rgba(123, 31, 44, 0.06);
    border: 1px dashed rgba(123, 31, 44, 0.4);
    padding: 18px 22px;
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--marble-red-dark);
  }
  .ct-hs-placeholder strong {
    color: var(--ink);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
  }

  .ct-card-cta {
    margin-top: auto;
    padding: 16px 24px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .ct-card-cta.solid {
    background: var(--deep-sea);
    color: var(--off-white);
    border: 1px solid var(--deep-sea);
  }
  .ct-card-cta.solid:hover {
    background: var(--marble-red);
    border-color: var(--marble-red);
    transform: translateY(-1px);
  }
  .ct-card-cta.outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .ct-card-cta.outline:hover {
    background: var(--ink);
    color: var(--off-white);
    transform: translateY(-1px);
  }

  /* OTHER WAYS */
  .ct-other {
    background: var(--olympus-stone);
    padding: 100px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .ct-other-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .ct-other-header .eyebrow { display: block; margin-bottom: 14px; }
  .ct-other-header h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.15;
  }
  .ct-other-header h2 em { color: var(--marble-red); font-style: italic; }

  .ct-other-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .ct-other-card {
    background: var(--off-white);
    border: 1px solid var(--rule);
    padding: 28px 32px;
    transition: border-color var(--transition), transform var(--transition);
  }
  .ct-other-card:hover {
    border-color: var(--marble-red);
    transform: translateY(-3px);
  }
  .ct-other-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--marble-red);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .ct-other-value {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 8px;
    word-break: break-word;
  }
  .ct-other-detail {
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-soft);
  }
  .ct-other-placeholder-tag {
    display: inline-block;
    margin-left: 6px;
    font-family: var(--sans);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--marble-red);
    background: rgba(123, 31, 44, 0.08);
    padding: 2px 6px;
    vertical-align: middle;
  }

  /* FAQ TEASER */
  .ct-faq-teaser {
    background: var(--off-white);
    padding: 80px 0;
  }
  .ct-faq-teaser-inner {
    border-left: 3px solid var(--marble-red);
    padding: 24px 32px;
    background: var(--olympus-stone);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
  }
  .ct-faq-teaser-title {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .ct-faq-teaser-text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .ct-faq-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--marble-red);
    border-bottom: 1px solid var(--marble-red);
    padding-bottom: 4px;
    white-space: nowrap;
    transition: gap var(--transition);
  }
  .ct-faq-teaser-link:hover { gap: 12px; }

  /* APPLY BAND */
  .ct-apply {
    background: var(--marble-red);
    color: var(--off-white);
    padding: 80px 0;
  }
  .ct-apply-grid {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 48px;
    align-items: center;
  }
  .ct-apply-eyebrow {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(247, 243, 236, 0.8);
    margin-bottom: 14px;
  }
  .ct-apply-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 12px;
  }
  .ct-apply-title em { font-style: italic; color: rgba(247, 243, 236, 0.7); }
  .ct-apply-sub {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(247, 243, 236, 0.85);
    max-width: 56ch;
  }
  .ct-apply-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
  }
  .ct-apply-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--off-white);
    color: var(--marble-red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
  }
  .ct-apply-primary:hover { background: var(--olympus-stone); transform: translateY(-1px); }

  /* ============================================================
     RESPONSIVE — consolidated block (was previously two duplicated blocks)
     ============================================================ */

  @media (max-width: 1100px) {
    .ct-whatsapp-grid,
    .ct-cards,
    .ct-other-grid,
    .ct-faq-teaser-inner,
    .ct-apply-grid {
      grid-template-columns: 1fr;
    }

    .ct-whatsapp-grid,
    .ct-apply-grid {
      gap: 28px;
    }

    .ct-whatsapp-btn { justify-self: start; }

    .ct-faq-teaser-inner { gap: 16px; }
  }

  @media (max-width: 760px) {
    .wrap { padding: 0 24px; }
    .nav-primary { display: none; }
    .nav-toggle { display: flex; }

    .page-hero { padding: 140px 0 72px; }
    .page-hero h1 { font-size: clamp(40px, 13vw, 60px); }
    .page-hero-sub { font-size: 18px; }

    .ct-whatsapp { padding: 40px 0; }

    .ct-decision,
    .ct-other,
    .ct-faq-teaser,
    .ct-apply {
      padding: 72px 0;
    }

    .ct-card-header,
    .ct-card-body { padding: 28px 24px; }

    .ct-whatsapp-btn,
    .ct-apply-primary {
      width: 100%;
      justify-content: center;
    }

    .ct-other-card { padding: 24px; }

    .ct-faq-teaser-inner { padding: 24px; }
  }

  @media (max-width: 480px) {
    .page-hero { padding: 128px 0 64px; }

    .ct-decision,
    .ct-other,
    .ct-faq-teaser,
    .ct-apply {
      padding: 60px 0;
    }

    .ct-card-header,
    .ct-card-body { padding: 24px 20px; }

    .ct-whatsapp-title { font-size: 24px; }
  }
