.elementor-1245 .elementor-element.elementor-element-efdc301{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #C9A84C;
      --gold-light: #E2C07A;
      --bg: #1a1008;
      --bg-2: #1f1409;
      --bg-3: #231609;
      --white: #F5EDE0;
      --white-dim: rgba(245,237,224,0.65);
      --white-faint: rgba(245,237,224,0.35);
      --border: rgba(180,140,60,0.25);
      --border-strong: rgba(180,140,60,0.45);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg);
      color: var(--white);
      line-height: 1.7;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    a { color: inherit; text-decoration: none; }

    /* ── MAIN ── */
    .main {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 24px;
      position: relative;
      overflow: hidden;
    }

    .main::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 60% 30%, rgba(180,130,50,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 30% 80%, rgba(120,80,20,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .card {
      position: relative;
      max-width: 600px;
      width: 100%;
      text-align: center;
      padding: 64px 56px;
      background: var(--bg-2);
      border: 1px solid var(--border);
    }

    /* Corner decorations */
    .card::before,
    .card::after {
      content: '';
      position: absolute;
      width: 32px; height: 32px;
      border-color: var(--gold);
      border-style: solid;
    }

    .card::before {
      top: -1px; left: -1px;
      border-width: 2px 0 0 2px;
    }

    .card::after {
      bottom: -1px; right: -1px;
      border-width: 0 2px 2px 0;
    }

    .card__corner-tr,
    .card__corner-bl {
      position: absolute;
      width: 32px; height: 32px;
      border-color: var(--gold);
      border-style: solid;
    }

    .card__corner-tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
    .card__corner-bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }

    .crown-wrap {
      margin-bottom: 32px;
      opacity: 0.75;
    }

    .eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
      opacity: 0.85;
      display: block;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.3;
      color: var(--white);
      margin-bottom: 32px;
    }

    h1 em { font-style: italic; color: var(--gold); }

    .gold-line {
      width: 56px; height: 1.5px;
      background: var(--gold);
      margin: 0 auto 36px;
      opacity: 0.6;
    }

    /* ── STEPS ── */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 44px;
      text-align: left;
    }

    .step {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
    }

    .step--done { border-left: 2px solid var(--gold); }
    .step--next { border-left: 2px solid rgba(201,168,76,0.4); }

    .step__num {
      width: 32px; height: 32px; min-width: 32px;
      border: 1px solid var(--border-strong);
      color: var(--gold);
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .step--done .step__num {
      background: rgba(201,168,76,0.1);
    }

    .step__content {}

    .step__label {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
      opacity: 0.8;
    }

    .step--done .step__label { color: var(--gold); }
    .step--next .step__label { color: var(--white-faint); }

    .step__text {
      font-size: 15px;
      color: var(--white-dim);
      line-height: 1.6;
      font-weight: 300;
    }

    .step--done .step__text { color: var(--white-faint); text-decoration: line-through; text-decoration-color: rgba(201,168,76,0.3); }

    /* ── BUTTON ── */
    .btn {
      display: inline-block;
      background: var(--gold);
      color: var(--bg);
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 18px 44px;
      border-radius: 0;
      transition: background 0.2s, transform 0.15s;
      cursor: pointer;
      border: none;
      width: 100%;
      text-align: center;
    }

    .btn:hover { background: var(--gold-light); transform: translateY(-2px); }

    .note {
      margin-top: 16px;
      font-size: 12px;
      color: var(--white-faint);
      letter-spacing: 0.04em;
    }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 28px 24px;
      text-align: center;
      font-size: 12px;
      color: var(--white-faint);
      letter-spacing: 0.05em;
    }

    @media (max-width: 520px) {
      .card { padding: 44px 28px; }
    }/* End custom CSS */