/* ============================================
   CUSTOM ORDER PAGE — custom-order.css
   ============================================ */

/* ===== HERO ===== */
.co-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 100px 24px 80px;
}

.co-hero-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(135deg, #1a1423 0%, #2d1f45 40%, #6a4c93 80%, #ff9e00 200%);
    z-index: 0;
}

.co-hero-blobs { position:absolute; top:0; left:0; width:100%; height:100%; z-index:1; pointer-events:none; overflow:hidden; }
.co-blob { position:absolute; border-radius:50%; filter:blur(60px); }
.co-blob-1 { width:400px; height:400px; background:rgba(255,158,0,0.22); top:-100px; right:-60px; animation:float 16s infinite ease-in-out; }
.co-blob-2 { width:300px; height:300px; background:rgba(184,100,255,0.18); bottom:-80px; left:-40px; animation:float 20s infinite ease-in-out reverse; }
.co-blob-3 { width:200px; height:200px; background:rgba(255,100,150,0.12); top:50%; left:20%; animation:float 24s infinite ease-in-out 3s; }

.co-hero-content { position:relative; z-index:2; max-width:760px; }

.co-hero-tag {
    display: inline-block;
    background: rgba(255,158,0,0.2);
    border: 1px solid rgba(255,158,0,0.5);
    color: var(--accent);
    padding: 6px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: block;
}

.co-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.co-hero-content h1 span { color: var(--accent); font-family: 'Samarkan', cursive; }

.co-hero-content > p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 36px;
    line-height: 1.65;
    max-width: 560px;
    margin-left: auto; margin-right: auto;
}

.co-hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.co-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 7px 16px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.co-badge:hover { background: rgba(255,158,0,0.25); border-color: rgba(255,158,0,0.5); }
.co-badge i { color: var(--accent); font-size: 0.75rem; }

.co-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,158,0,0.4);
}

.co-hero-cta:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(255,158,0,0.5); }
.co-hero-cta i { animation: bounce 2s infinite; }

@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

.co-hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 2s ease 1s both;
}

.co-hero-scroll-hint i { animation: bounce 2s infinite; }

/* ===== SHARED ===== */
.co-section-header { text-align: center; margin-bottom: 55px; }

.co-tag {
    display: inline-block;
    background: rgba(106,76,147,0.1);
    color: var(--primary);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    border: 1px solid rgba(106,76,147,0.2);
}

.co-tag.light {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.2);
}

.co-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.co-section-header.light h2 { color: white; }
.co-section-header h2 span { color: var(--primary); font-family: 'Samarkan', cursive; }
.co-section-header.light h2 span { color: var(--accent); }

.co-section-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-text);
    max-width: 480px;
    margin: 0 auto;
}

/* ===== WHAT WE CREATE ===== */
.co-what { padding: 80px 0; background: white; }
.co-what-container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

.co-items-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.co-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--secondary);
    border-radius: 16px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
}

.co-item:hover {
    border-color: var(--primary);
    background: white;
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(106,76,147,0.14);
}

.co-item.selected {
    border-color: var(--primary);
    background: rgba(106,76,147,0.08);
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(106,76,147,0.18);
}

.co-item-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(106,76,147,0.25);
    transition: all 0.3s ease;
}

.co-item:hover .co-item-icon { transform: rotate(-8deg) scale(1.1); }
.co-item.selected .co-item-icon { background: linear-gradient(135deg, var(--accent), #ffb133); }

/* ===== PROCESS ===== */
.co-process {
    padding: 90px 0;
    background: linear-gradient(135deg, #1a1423 0%, #3d2a5a 100%);
    color: white;
}

.co-process-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.co-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.co-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.co-step-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(255,158,0,0.35);
    position: relative;
    z-index: 2;
}

.co-step-line {
    position: absolute;
    top: 54px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.12);
    z-index: 1;
}

.co-step:last-child .co-step-line { display: none; }

.co-step-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}

.co-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
}

.co-step p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* ===== ORDER FORM ===== */
.co-form-section { padding: 90px 0; background: var(--secondary); }
.co-form-container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Progress bar */
.co-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}

.co-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.co-progress-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #e0d6f0;
    color: #aaa;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}

.co-progress-step.active .co-progress-num,
.co-progress-step.done .co-progress-num {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(106,76,147,0.3);
}

.co-progress-step.done .co-progress-num::after { content: '✓'; }

.co-progress-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.co-progress-step.active .co-progress-label { color: var(--primary); }

.co-progress-line {
    flex: 1;
    height: 2px;
    background: #e0d6f0;
    min-width: 80px;
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.co-progress-line.done { background: var(--primary); }

/* Form wrap */
.co-form-wrap {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(106,76,147,0.1);
    border: 1.5px solid #ede8f5;
    overflow: visible;
}

.co-step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid #ede8f5;
}

.co-step-title span {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Field grid */
.co-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    overflow: visible;
}

.co-field-full { grid-column: 1 / -1; }

.co-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

.co-field:has(.co-dd-menu.open) { z-index: 999; }

.co-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.req { color: #e53935; }

.co-input-wrap { position: relative; display: flex; align-items: flex-start; }

.co-input-icon {
    position: absolute;
    left: 14px;
    top: 13px;
    color: #ccc;
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.25s;
}

.co-input-wrap:focus-within .co-input-icon { color: var(--primary); }

.co-input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1.5px solid #e0d6f0;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: #fdfcff;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.co-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(106,76,147,0.1);
}

input[type="date"].co-input { cursor: pointer; }

.co-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.co-error {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: #e53935;
    font-weight: 600;
    min-height: 16px;
}

/* Custom dropdown inside form */
.co-dd { position: relative; z-index: 50; overflow: visible; }

.co-dd-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fdfcff;
    border: 1.5px solid #e0d6f0;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.co-dd-trigger:hover, .co-dd-trigger.open {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106,76,147,0.1);
    background: white;
}

.co-dd-icon { font-size: 0.85rem; color: #ccc; flex-shrink: 0; transition: color 0.25s; }
.co-dd-trigger:hover .co-dd-icon, .co-dd-trigger.open .co-dd-icon { color: var(--primary); }
.co-dd-text { flex: 1; color: #aaa; }
.co-dd-text.selected { color: var(--dark); font-weight: 600; }
.co-dd-chevron { font-size: 0.72rem; color: #ccc; transition: transform 0.3s ease, color 0.25s; flex-shrink: 0; }
.co-dd-trigger.open .co-dd-chevron { transform: rotate(180deg); color: var(--primary); }

.co-dd-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: white;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(106,76,147,0.18), 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #ede6f8;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top center;
    transition: all 0.25s cubic-bezier(0.25,0.8,0.25,1);
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
}

.co-dd-menu.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.co-dd-header {
    padding: 10px 14px 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #f0ebfa;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.co-dd-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: left;
}

.co-dd-opt i { width: 16px; font-size: 0.78rem; color: var(--primary); opacity: 0.55; flex-shrink: 0; transition: opacity 0.18s; }
.co-dd-opt:hover { background: #f7f3ff; color: var(--primary); padding-left: 18px; }
.co-dd-opt:hover i { opacity: 1; }
.co-dd-opt.active { background: linear-gradient(90deg, #f0e8ff, #fdf6ff); color: var(--primary); border-left: 3px solid var(--primary); }
.co-dd-opt.active i { opacity: 1; }

/* Colour chips */
.co-colours, .co-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.co-colour-btn, .co-style-btn {
    padding: 7px 16px;
    border: 1.5px solid #e0d6f0;
    border-radius: 30px;
    background: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.22s ease;
}

.co-colour-btn:hover, .co-style-btn:hover { border-color: var(--primary); color: var(--primary); }
.co-colour-btn.active, .co-style-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 3px 10px rgba(106,76,147,0.25);
}

/* Navigation buttons */
.co-form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #ede8f5;
}

.co-next-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(106,76,147,0.3);
}

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

.co-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: transparent;
    color: var(--gray-text);
    border: 1.5px solid #e0d6f0;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.co-back-btn:hover { border-color: var(--primary); color: var(--primary); }

.co-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(106,76,147,0.3);
}

.co-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(106,76,147,0.4); }
.co-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Order summary */
.co-summary {
    background: #f8f1ff;
    border-radius: 14px;
    padding: 20px 24px;
    margin: 24px 0;
    border: 1.5px solid #ede8f5;
}

.co-summary h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0d6f0;
}

.co-summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    padding: 5px 0;
}

.co-summary-row span:first-child { color: var(--gray-text); font-weight: 600; }
.co-summary-row span:last-child  { color: var(--dark); font-weight: 700; }

/* Agreement */
.co-agree-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-text);
    cursor: pointer;
    line-height: 1.5;
    margin-top: 8px;
    user-select: none;
}

.co-agree-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid #d5c8eb;
    background: white;
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    cursor: pointer;
}

.co-agree-box:hover { border-color: var(--primary); transform: scale(1.06); }

.co-agree-tick {
    font-size: 11px;
    color: white;
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.co-agree-box.checked {
    background: var(--primary);
    border-color: var(--primary);
}

.co-agree-box.checked .co-agree-tick { opacity: 1; }

.co-agree-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.co-agree-label a:hover { text-decoration: underline; }

/* ===== IMAGE UPLOAD (Step 2) ===== */
.co-upload-area {
    border: 2px dashed #d5c8eb;
    border-radius: 14px;
    background: #fdfcff;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: visible;
}

.co-upload-area:hover {
    border-color: var(--primary);
    background: #f8f1ff;
    box-shadow: 0 4px 16px rgba(106,76,147,0.1);
}

.co-upload-area.dragover {
    border-color: var(--accent);
    background: #fff8ee;
    box-shadow: 0 6px 24px rgba(255,158,0,0.2);
    transform: scale(1.01);
}

.co-upload-inner {
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.co-upload-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 1.3rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(106,76,147,0.25);
    transition: transform 0.3s ease;
}

.co-upload-area:hover .co-upload-icon { transform: scale(1.1) rotate(-6deg); }

.co-upload-text { display: flex; flex-direction: column; gap: 4px; }

.co-upload-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem; font-weight: 700; color: var(--dark);
}

.co-upload-hint {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.73rem; color: var(--gray-text); line-height: 1.5;
}

.co-upload-btn {
    background: white;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 7px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem; font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
}

.co-upload-btn:hover {
    background: var(--primary); color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106,76,147,0.25);
}

/* Previews */
.co-upload-previews {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 16px 16px;
}

.co-preview-item {
    position: relative;
    width: 84px; height: 84px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(106,76,147,0.18);
    animation: popIn 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
    flex-shrink: 0;
}

.co-preview-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

.co-preview-remove {
    position: absolute; top: 4px; right: 4px;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(229,57,53,0.9); color: white; border: none;
    font-size: 0.6rem; display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.18s ease; z-index: 2;
}

.co-preview-remove:hover { background: #c62828; transform: scale(1.15); }

.co-preview-name {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(26,20,35,0.72); color: white;
    font-family: 'Montserrat', sans-serif; font-size: 0.58rem; font-weight: 600;
    padding: 3px 5px; text-align: center;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Success */
.co-success { text-align: center; padding: 60px 20px; }

.co-success-icon {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white; font-size: 2.5rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 10px 30px rgba(76,175,80,0.35);
    animation: popIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes popIn { from { transform:scale(0); opacity:0; } to { transform:scale(1); opacity:1; } }

.co-success h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: 14px; }
.co-success p  { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: var(--gray-text); max-width: 480px; margin: 0 auto 20px; line-height: 1.7; }
.co-success p strong { color: var(--primary); }

.co-success-info {
    background: #f8f1ff;
    border-radius: 12px;
    padding: 16px 24px;
    max-width: 400px;
    margin: 0 auto 28px;
    text-align: left;
    border: 1px solid #ede8f5;
}

.co-success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== EXAMPLES ===== */
.co-examples { padding: 80px 0; background: white; }
.co-examples-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.co-examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.co-example-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.co-example-card:hover { transform: translateY(-8px); box-shadow: 0 16px 36px rgba(106,76,147,0.14); }

.co-example-card img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.co-example-card:hover img { transform: scale(1.06); }

.co-example-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(26,20,35,0.9), transparent);
}

.co-example-type {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.co-example-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ===== FAQ ===== */
.co-faq { padding: 80px 0; background: var(--secondary); }
.co-faq-container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.co-faq-list { display: flex; flex-direction: column; gap: 12px; }

.co-faq-item {
    background: white;
    border-radius: 14px;
    border: 1.5px solid #ede8f5;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.25s ease;
}

.co-faq-item:hover { box-shadow: 0 6px 20px rgba(106,76,147,0.08); }
.co-faq-item.open { border-color: rgba(106,76,147,0.3); }

.co-faq-q {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; gap: 16px;
    font-family: 'Montserrat', sans-serif; font-size: 0.95rem;
    font-weight: 700; color: var(--dark);
}

.co-faq-q i { font-size: 0.8rem; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.co-faq-item.open .co-faq-q i { transform: rotate(180deg); }

.co-faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 22px;
}

.co-faq-item.open .co-faq-a { max-height: 200px; padding: 0 22px 18px; }

.co-faq-a p { font-family: 'Montserrat', sans-serif; font-size: 0.88rem; color: var(--gray-text); line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .co-items-grid { grid-template-columns: repeat(5, 1fr); }
    .co-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .co-step-line { display: none; }
    .co-examples-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .co-hero-content h1 { font-size: 2.6rem; }
    .co-items-grid { grid-template-columns: repeat(4, 1fr); }
    .co-field-grid { grid-template-columns: 1fr; }
    .co-form-wrap { padding: 28px 20px; }
    .co-progress-line { min-width: 40px; }
    .co-section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .co-hero-content h1 { font-size: 2rem; }
    .co-hero-badges { gap: 8px; }
    .co-items-grid { grid-template-columns: repeat(3, 1fr); }
    .co-steps { grid-template-columns: 1fr; }
    .co-examples-grid { grid-template-columns: 1fr 1fr; }
    .co-success-actions { flex-direction: column; align-items: center; }
}