  .custom-layout {
    padding: 3rem 0 6rem;
  }

  /* ─── EXAMPLES GRID ─── */
  .examples-intro { margin-bottom: 3rem; }
  .examples-intro h2 { margin-bottom: 0.75rem; }
  .examples-intro p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; }

  .examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
  }

  .example-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .example-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

  .example-img {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
  }

  .ei1 { background: linear-gradient(145deg, #f5e0f0, #e8c8f5); }
  .ei2 { background: linear-gradient(145deg, #dce8f5, #c4d4ef); }
  .ei3 { background: linear-gradient(145deg, #f5eada, #edd8b8); }
  .ei4 { background: linear-gradient(145deg, #daf0e8, #b8e8d8); }
  .ei5 { background: linear-gradient(145deg, #f5e6e6, #efd0d0); }
  .ei6 { background: linear-gradient(145deg, #ebe0f5, #d8c4ef); }

  .example-info { padding: 0.9rem 1.1rem 1.1rem; background: white; }
  .example-name { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.2rem; }
  .example-price { font-size: 0.75rem; color: var(--text-light); }
  .example-price strong { color: var(--deep-purple); font-family: 'Playfair Display', serif; font-size: 0.9rem; }

  /* ─── PROCESS STEPS ─── */
  .process-section { margin-bottom: 3rem; }
  .process-steps { display: flex; flex-direction: column; gap: 0; }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.25rem;
    align-items: start;
    position: relative;
  }

  .process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--lavender), transparent);
  }

  .process-step { padding-bottom: 2rem; }
  .process-step:last-child { padding-bottom: 0; }

  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-purple);
  }

  .step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .step-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  .sc1 { background: linear-gradient(135deg, #f5e0f0, #e8c8f5); }
  .sc2 { background: linear-gradient(135deg, #dce8f5, #c4d4ef); }
  .sc3 { background: linear-gradient(135deg, #f5eada, #edd8b8); }
  .sc4 { background: linear-gradient(135deg, #daf0e8, #b8e8d8); }

  .step-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--deep-purple);
    margin-bottom: 0.3rem;
    padding-top: 0.75rem;
  }

  .step-content p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ─── CTA BUTTON ─── */
  .custom-cta-wrap {
    text-align: center;
    margin-bottom: 3rem;
  }
  .custom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--purple));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(92,56,120,0.2);
  }
  .custom-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 0 24px rgba(92,56,120,0.4); }
  .custom-cta-btn img { width: 28px; height: 28px; object-fit: contain; border-radius: 50%; }

  /* ─── FORM MODAL ─── */
  .custom-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
  }
  .custom-modal-overlay.open { display: flex; }

  .custom-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 620px;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    position: relative;
    margin: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .custom-form-card::-webkit-scrollbar { display: none; }

  .custom-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-light);
    cursor: pointer;
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .custom-modal-close:hover { background: var(--cream); color: var(--deep-purple); }

  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .form-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.75rem;
    line-height: 1.5;
    text-align: center;
  }

  /* Type selector */
  .type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .type-option {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
  }

  .type-option:hover { border-color: var(--purple); }
  .type-option.selected { border-color: var(--deep-purple); background: rgba(92,56,120,0.05); }
  .type-option input { display: none; }
  .type-option-icon { font-size: 1.4rem; display: block; margin-bottom: 4px; }
  .type-option-name { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); }
  .type-option-price { font-size: 0.7rem; color: var(--text-light); margin-top: 2px; }

  /* Photo upload hint */
  .photo-hint {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.1rem;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .photo-hint strong { color: var(--deep-purple); }

  /* Response time */
  .response-time {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(90,158,160,0.08);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin: 1.25rem 0;
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 700;
  }

  /* ─── FAQ ─── */
  .faq-section { margin-top: 3rem; }

  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.1rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--deep-purple); }
  .faq-question.open { color: var(--deep-purple); }

  .faq-arrow {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .faq-question.open .faq-arrow { transform: rotate(180deg); }

  .faq-answer {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
  }

  .faq-answer.open {
    max-height: 300px;
    padding-bottom: 1.1rem;
  }

  /* Success state */
  .form-success {
    text-align: center;
    padding: 2rem 0;
    display: none;
  }

  .form-success.show { display: block; }
  .form-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
  .form-success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--deep-purple);
    margin-bottom: 0.75rem;
  }
  .form-success-text {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto 1.5rem;
  }

  /* ─── TEMPLATE PREVIEW POPUP ─── */
  .tpl-preview-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .tpl-preview-overlay.open { display: flex; }
  .tpl-preview-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    position: relative;
    text-align: center;
    animation: fadeUp 0.25s ease;
  }
  .tpl-preview-close {
    position: absolute; top: 0.8rem; right: 0.8rem;
    background: none; border: none; font-size: 1.3rem;
    color: var(--text-light); cursor: pointer;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
  }
  .tpl-preview-close:hover { background: var(--cream); color: var(--deep-purple); }
  .tpl-preview-main-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    background: var(--cream);
  }
  .tpl-preview-thumbs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
  }
  .tpl-preview-thumb {
    width: 52px; height: 52px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    opacity: 0.7;
  }
  .tpl-preview-thumb:hover { opacity: 1; transform: scale(1.05); }
  .tpl-preview-thumb.active { border-color: var(--deep-purple); opacity: 1; }
  .tpl-preview-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--deep-purple);
    margin-bottom: 0.25rem;
  }
  .tpl-preview-price {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 0.3rem;
  }
  .tpl-preview-desc {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  .tpl-preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--deep-purple), var(--purple));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(92,56,120,0.2);
  }
  .tpl-preview-cta img { width: 22px; height: 22px; object-fit: contain; border-radius: 50%; }
  .tpl-preview-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(92,56,120,0.35); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    .custom-form-card { padding: 1.75rem 1.5rem; }
    .tpl-preview-card { padding: 1.5rem; }
  }

  @media (max-width: 480px) {
    .type-selector { grid-template-columns: 1fr 1fr; }
    .custom-form-card { padding: 1.5rem 1.25rem; }
    .custom-cta-btn { font-size: 0.8rem; padding: 0.85rem 1.8rem; }
    .tpl-preview-card { max-width: 95vw; }
  }
  .iti { width: 100%; }
  .iti__tel-input { width: 100%; }
