/* ============================================
   FESTIVAL WISHES POSTER MAKER — PREMIUM UI
   Royal Purple + Soft Gold — Responsive
   Mobile-First (Approved) + Desktop 1280px Layout
   Desktop Hero Alignment + Feature Row + SEO Width
   ============================================ */

/* ========== DESIGN TOKENS ========== */
:root {
    /* Brand Colors */
    --brand-primary: #3a1c5a;
    --brand-primary-dark: #2a1242;
    --brand-primary-light: #f5f0fa;
    --brand-secondary: #c9a227;
    --brand-secondary-light: #fdf8e8;
    
    /* Neutrals */
    --background: #faf9fc;
    --surface: #ffffff;
    --surface-alt: #f3eef8;
    --text-primary: #1a1420;
    --text-secondary: #5c5465;
    --text-muted: #8a8295;
    --border: #e5ddee;
    
    /* States */
    --success: #2d7a3d;
    --success-light: #edf5ed;
    --error: #b5382e;
    --error-light: #fdf0ef;
    
    /* Typography */
    --font-family-base: 'Segoe UI', system-ui, -apple-system, 'Noto Sans Devanagari', sans-serif;
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.8rem;
    --font-size-base: 0.95rem;
    --font-size-lg: 1.1rem;
    --font-size-h3: 1.2rem;
    --font-size-h2: 1.3rem;
    --font-size-h1: 1.5rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 3rem;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 20, 32, 0.06);
    --shadow-md: 0 4px 14px rgba(26, 20, 32, 0.1);
    --shadow-lg: 0 8px 30px rgba(26, 20, 32, 0.15);
    
    /* Glow */
    --glow-gold: 0 0 20px rgba(201, 162, 39, 0.35), 0 0 50px rgba(201, 162, 39, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    
    /* Container */
    --container-max-mobile: 480px;
    --container-max-desktop: 1280px;
    --container-pad: 1rem;
}

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: var(--container-max-mobile);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 13px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    min-height: 50px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
    outline: 3px solid var(--brand-secondary);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: #ffffff;
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--brand-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--brand-secondary);
    color: var(--text-primary);
}

.btn-gold:hover:not(:disabled) {
    background-color: #b08a1a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-nav {
    background-color: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    min-height: 44px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.btn-nav:hover:not(:disabled) {
    background-color: var(--surface-alt);
}

.btn-nav:disabled {
    opacity: 0.35;
}

.btn-use-template,
.btn-submit-request,
.btn-create-another {
    width: 100%;
    margin-top: var(--space-2);
}

.btn-use-template {
    background-color: var(--brand-primary);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(58, 28, 90, 0.3);
}

.btn-use-template:hover:not(:disabled) {
    background-color: var(--brand-primary-dark);
}

/* ========== PROMPTMANDIR HEADER ========== */
.pm-header {
    background-color: var(--brand-primary);
    position: sticky;
    top: 0;
    z-index: 100;
}

.pm-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    gap: var(--space-2);
}

.pm-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pm-logo-img {
    max-height: 32px;
    width: auto;
}

.pm-nav {
    display: none;
}

.pm-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 9px 10px;
    cursor: pointer;
    min-height: 40px;
}

.menu-bar {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
}

.pm-mobile-menu {
    display: none;
    background-color: var(--surface);
    padding: var(--space-4) var(--container-pad);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 52px);
    overflow-y: auto;
}

.pm-mobile-menu.open {
    display: block;
}

.pm-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
}

.pm-menu-close {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-size: var(--font-size-base);
    cursor: pointer;
    color: var(--text-primary);
    min-height: 36px;
}

.pm-mobile-nav {
    display: flex;
    flex-direction: column;
}

.pm-mobile-nav-link {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.pm-mobile-nav-link:last-child {
    border-bottom: none;
}

/* ========== HERO ========== */
.hero-section {
    background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-primary-dark) 40%, var(--background) 100%);
    padding: var(--space-5) 0 var(--space-4);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.hero-text {
    text-align: center;
}

/* Hero Title — Exactly 2 Lines */
.hero-title {
    font-size: var(--font-size-h1);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: var(--space-2);
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-title .hero-brand {
    display: block;
    font-size: 1.3em;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-title .hero-tool {
    display: block;
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--brand-secondary);
    white-space: nowrap;
}

.hero-subtitle {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-3);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.btn-hero {
    background-color: var(--brand-secondary);
    color: var(--text-primary);
    font-weight: 700;
    padding: 13px 32px;
    min-height: 50px;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.btn-hero:hover:not(:disabled) {
    background-color: #b08a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.5);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-top: var(--space-2);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 80px;
}

.feature-icon {
    font-size: var(--font-size-sm);
    color: var(--brand-secondary);
    font-weight: 700;
}

.feature-text {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Hero Image — 16:9 */
.hero-image-area {
    display: flex;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--surface);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== SECTION COMMON ========== */
.how-section,
.festival-section,
.template-section,
.personalization-section,
.seo-content-section {
    padding: var(--space-5) 0;
}

.how-section { background-color: var(--surface); }
.festival-section { background-color: var(--background); }
.template-section { background-color: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.personalization-section { background-color: var(--background); }
.seo-content-section { background-color: var(--surface); }

.section-heading {
    font-size: var(--font-size-h2);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.section-subtext {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-4);
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== STEPS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2);
}

.step-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background-color: var(--brand-secondary);
    color: var(--text-primary);
    font-weight: 700;
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon { font-size: 1.5rem; margin-bottom: var(--space-1); }
.step-title { font-size: var(--font-size-base); font-weight: 700; }
.step-text { font-size: var(--font-size-xs); color: var(--text-secondary); }

/* ========== FESTIVAL SELECTOR ========== */
.festival-selector {
    background-color: var(--surface);
    border: 2px solid var(--brand-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-md);
    max-width: 420px;
    margin: 0 auto;
}

.festival-label {
    font-weight: 800;
    font-size: var(--font-size-lg);
    display: block;
    margin-bottom: var(--space-2);
    color: var(--brand-primary);
    text-align: center;
}

.festival-select-container {
    position: relative;
}

.festival-select {
    width: 100%;
    padding: 14px 44px 14px 16px;
    border: 2px solid var(--brand-secondary);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    color: var(--text-primary);
    background-color: var(--brand-secondary-light);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-height: 54px;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.festival-select:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px rgba(58, 28, 90, 0.15);
    background-color: var(--surface);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--brand-primary);
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.selected-festival-info {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background-color: var(--success-light);
    border: 1px solid #c8e0c8;
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--success);
    font-weight: 600;
    margin-top: var(--space-2);
}

/* ========== EMPTY / ERROR ========== */
.empty-state, .error-state {
    text-align: center;
    padding: var(--space-4);
}
.empty-icon, .error-icon { font-size: 2rem; margin-bottom: var(--space-2); }
.empty-state p, .error-state p { font-size: var(--font-size-base); font-weight: 600; }
.empty-note { font-size: var(--font-size-sm); color: var(--text-muted); margin-top: var(--space-1); }

/* ========== TEMPLATE VIEWER ========== */
.template-viewer {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    max-width: 420px;
    margin: 0 auto;
}

.template-default-state,
.template-loading-state,
.template-empty-state,
.template-error-state {
    text-align: center;
    padding: var(--space-4);
}

.placeholder-message { max-width: 320px; margin: 0 auto; }
.placeholder-icon { font-size: 2rem; margin-bottom: var(--space-2); }
.placeholder-message p { font-size: var(--font-size-base); font-weight: 600; }
.placeholder-note { font-size: var(--font-size-sm); color: var(--text-muted); margin-top: var(--space-1); }

.loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--brand-primary);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-2);
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.template-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.template-counter {
    text-align: center;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.template-preview-container {
    border-radius: var(--radius-md);
    background-color: var(--brand-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
    box-shadow: var(--glow-gold);
    border: 1px solid rgba(201, 162, 39, 0.4);
}

.template-preview-image {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.template-name {
    text-align: center;
    font-size: var(--font-size-base);
    font-weight: 700;
}

.template-navigation {
    display: flex;
    gap: var(--space-2);
}

.template-navigation .btn {
    flex: 1;
}

.template-selected-confirmation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background-color: var(--success-light);
    border: 1px solid #c8e0c8;
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--success);
    font-weight: 600;
    text-align: center;
}

/* ========== PERSONALIZATION ========== */
.personalization-form-container {
    background-color: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    max-width: 420px;
    margin: 0 auto;
}

.personalization-default-state {
    text-align: center;
    padding: var(--space-4);
}

.personalization-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.selection-summary {
    background-color: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    text-align: center;
}

.summary-title {
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.summary-preview {
    margin-bottom: var(--space-2);
}

.summary-preview img {
    width: 100px;
    border-radius: var(--radius-sm);
    margin: 0 auto;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.summary-row {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-1);
    flex-wrap: wrap;
}

.summary-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.summary-value {
    font-weight: 700;
    color: var(--text-primary);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.form-label {
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    color: var(--text-primary);
    background-color: var(--surface);
    min-height: 48px;
    touch-action: manipulation;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(58, 28, 90, 0.08);
}

.form-error {
    font-size: var(--font-size-sm);
    color: var(--error);
    font-weight: 600;
}

.whatsapp-input-container {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.whatsapp-input-container:focus-within {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(58, 28, 90, 0.08);
}

.whatsapp-prefix {
    display: flex;
    align-items: center;
    padding: 0 12px;
    background-color: var(--brand-primary);
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.whatsapp-input {
    border: none;
    border-radius: 0;
}

.whatsapp-input:focus {
    outline: none;
    box-shadow: none;
}

.delivery-message {
    background-color: var(--brand-secondary-light);
    border: 1px solid #f0e0a0;
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    color: #6b5200;
    text-align: center;
}

.form-message {
    text-align: center;
    font-size: var(--font-size-sm);
}

/* ========== SUCCESS ========== */
.success-state {
    text-align: center;
    padding: var(--space-3) 0;
}

.success-icon { font-size: 2.5rem; margin-bottom: var(--space-2); }
.success-title { font-size: var(--font-size-h3); font-weight: 800; margin-bottom: var(--space-1); }
.success-subtitle { font-size: var(--font-size-sm); color: var(--text-secondary); margin-bottom: var(--space-3); }

.success-request-number {
    background-color: var(--success-light);
    border: 1px solid #c8e0c8;
    border-radius: var(--radius-md);
    padding: var(--space-3);
    margin-bottom: var(--space-3);
}
.success-request-label { font-size: var(--font-size-xs); font-weight: 700; text-transform: uppercase; color: var(--text-secondary); }
.success-request-value { font-size: 1.2rem; font-weight: 800; color: var(--success); }

.success-summary {
    background-color: var(--surface-alt);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    margin-bottom: var(--space-3);
    text-align: left;
}
.success-summary-row { display: flex; gap: var(--space-2); font-size: var(--font-size-sm); margin-bottom: var(--space-1); flex-wrap: wrap; }
.success-summary-label { font-weight: 600; color: var(--text-secondary); min-width: 85px; }
.success-summary-value { font-weight: 700; }

.success-delivery-message {
    background-color: var(--brand-secondary-light);
    border: 1px solid #f0e0a0;
    border-radius: var(--radius-md);
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    color: #6b5200;
    margin-bottom: var(--space-3);
    text-align: center;
}

.success-next-steps { font-size: var(--font-size-sm); color: var(--text-secondary); margin-bottom: var(--space-3); }

/* ========== SEO / FAQ ========== */
.seo-content { max-width: 420px; margin: 0 auto; }
.seo-content p { margin-bottom: var(--space-3); font-size: var(--font-size-base); line-height: 1.8; }
.seo-content h3 { font-size: var(--font-size-lg); font-weight: 700; margin-top: var(--space-4); margin-bottom: var(--space-2); }
.seo-list { margin-left: var(--space-4); margin-bottom: var(--space-3); }

.faq-list { margin-top: var(--space-4); }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    background: none;
    border: none;
    padding: var(--space-3);
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family-base);
}

.faq-icon {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-3) var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer[hidden] {
    display: none !important;
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: var(--brand-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4) 0;
    text-align: center;
    font-size: var(--font-size-xs);
}

/* ========== RESPONSIVE — TABLET (768px+) ========== */
@media (min-width: 768px) {
    :root {
        --container-max-mobile: 680px;
        --container-pad: 1.5rem;
        --font-size-h1: 2rem;
        --font-size-h2: 1.6rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image-container {
        max-width: 400px;
    }
    
    .template-viewer,
    .personalization-form-container {
        max-width: 480px;
    }
    
    .seo-content {
        max-width: 600px;
    }
}

/* ========== RESPONSIVE — DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
    :root {
        --container-max-mobile: var(--container-max-desktop);
        --container-pad: 2rem;
        --font-size-h1: 2.25rem;
        --font-size-h2: 2rem;
        --font-size-lg: 1.15rem;
        --font-size-base: 1rem;
    }
    
    /* ===== DESKTOP HEADER ===== */
    .pm-header-container {
        min-height: 64px;
        gap: var(--space-4);
    }
    
    .pm-logo-img {
        max-height: 40px;
    }
    
    .pm-nav {
        display: flex;
        align-items: center;
        gap: var(--space-2);
    }
    
    .pm-nav-link {
        font-size: 0.85rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        letter-spacing: 0.5px;
        white-space: nowrap;
        transition: all var(--transition-fast);
    }
    
    .pm-nav-link:hover {
        background-color: rgba(255, 255, 255, 0.12);
        color: var(--brand-secondary);
    }
    
    .pm-menu-btn {
        display: none;
    }
    
    .pm-mobile-menu {
        display: none !important;
    }
    
    /* ===== DESKTOP HERO ALIGNMENT ===== */
    .hero-section {
        padding: var(--space-6) 0 var(--space-5);
    }
    
    .hero-grid {
        flex-direction: row;
        align-items: center;
        gap: var(--space-8);
    }
    
    .hero-text {
        text-align: left;
        flex: 1;
    }
    
    .hero-title {
        font-size: var(--font-size-h1);
        line-height: 1.25;
        margin-bottom: var(--space-3);
    }
    
    .hero-title .hero-brand {
        font-size: 1.1em;
        font-weight: 800;
        letter-spacing: 0.8px;
    }
    
    .hero-title .hero-tool {
        font-size: 0.65em;
        font-weight: 600;
        letter-spacing: 0.2px;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
        margin-left: 0;
        margin-right: 0;
        margin-bottom: var(--space-3);
        max-width: 420px;
    }
    
    .hero-image-area {
        flex: 0 0 400px;
    }
    
    .hero-image-container {
        max-width: 400px;
    }
    
    /* ===== DESKTOP FEATURE ROW — COMPACT STRIP ===== */
    .hero-features {
        display: flex;
        justify-content: flex-start;
        gap: var(--space-5);
        margin-top: var(--space-3);
        flex-wrap: nowrap;
    }
    
    .feature-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--space-2);
        min-width: 0;
        background: none;
        border: none;
        padding: 0;
        border-radius: 0;
    }
    
    .feature-icon {
        font-size: 1rem;
        color: var(--brand-secondary);
        font-weight: 700;
    }
    
    .feature-text {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-primary);
        white-space: nowrap;
        line-height: 1;
        text-align: left;
    }
    
    /* Desktop Steps */
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Desktop Festival Selector */
    .festival-selector {
        max-width: none;
    }
    
    /* Desktop Template Viewer */
    .template-viewer {
        max-width: none;
    }
    
    .template-preview-image {
        max-height: 500px;
    }
    
    /* Desktop Personalization */
    .personalization-form-container {
        max-width: none;
    }
    
    .personalization-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }
    
    .selection-summary {
        grid-column: 1;
    }
    
    .personalization-fields {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
    }
    
    /* ===== DESKTOP SEO WIDTH — FULL CONTAINER ===== */
    .seo-content {
        max-width: 100%;
        margin: 0;
    }
    
    .seo-content p,
    .seo-content h3,
    .seo-list {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .faq-list {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========== RESPONSIVE — LARGE DESKTOP (1280px+) ========== */
@media (min-width: 1280px) {
    :root {
        --font-size-h1: 2.5rem;
    }
    
    .hero-image-area {
        flex: 0 0 450px;
    }
    
    .hero-image-container {
        max-width: 450px;
    }
}