/* ============================================
   MODISH PARTIES — Payment Portal Styles
   ============================================ */

/* --- CSS Custom Properties / Design Tokens --- */
:root {
    /* Primary Palette — Deep Wine/Burgundy */
    --primary-50: #fdf2f4;
    --primary-100: #fce7eb;
    --primary-200: #f9d0d9;
    --primary-300: #f4a9b8;
    --primary-400: #ed7a93;
    --primary-500: #e14d6f;
    --primary-600: #c8305a;
    --primary-700: #a8224a;
    --primary-800: #8c1f42;
    --primary-900: #781e3d;
    --primary-950: #430a1e;

    /* Accent — Rose Gold */
    --accent-50: #fef7f0;
    --accent-100: #fdeede;
    --accent-200: #fad9b8;
    --accent-300: #f7be87;
    --accent-400: #f39b54;
    --accent-500: #ef8030;
    --accent-600: #e06626;

    /* Neutral */
    --neutral-50: #fafafa;
    --neutral-100: #f4f4f5;
    --neutral-200: #e4e4e7;
    --neutral-300: #d4d4d8;
    --neutral-400: #a1a1aa;
    --neutral-500: #71717a;
    --neutral-600: #52525b;
    --neutral-700: #3f3f46;
    --neutral-800: #27272a;
    --neutral-900: #18181b;

    /* Background */
    --bg-page: #f8f5f2;
    --bg-card: #ffffff;
    --bg-panel: #faf8f6;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(120, 30, 61, 0.04);
    --shadow-md: 0 4px 12px rgba(120, 30, 61, 0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 40px rgba(120, 30, 61, 0.08), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 60px rgba(120, 30, 61, 0.1), 0 4px 16px rgba(0,0,0,0.05);

    /* Sizing */
    --max-width: 720px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 500ms;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-page);
    color: var(--neutral-800);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body.locked {
    overflow: hidden;
}

/* --- Password Gate Overlay --- */
.password-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0a10 0%, #2d1320 40%, #1a0e14 100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 24px;
}

.password-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(225, 77, 111, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(243, 155, 84, 0.06) 0%, transparent 50%);
    animation: float-blob 20s ease-in-out infinite;
}

.password-overlay.unlocked {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.password-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px 36px 40px;
    text-align: center;
    animation: password-card-in 0.8s var(--ease-out) both;
}

@keyframes password-card-in {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.password-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.password-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    filter: brightness(1.2);
}

.password-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.password-logo-text .logo-name {
    color: rgba(255, 255, 255, 0.9);
}

.password-logo-text .logo-tagline {
    color: rgba(225, 77, 111, 0.7);
}

.password-lock-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(225, 77, 111, 0.15), rgba(243, 155, 84, 0.1));
    border: 1px solid rgba(225, 77, 111, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-400);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(225, 77, 111, 0.1); }
    50% { box-shadow: 0 0 40px rgba(225, 77, 111, 0.2); }
}

.password-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.password-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.password-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    color: white;
    outline: none;
    transition: all var(--duration-fast) var(--ease-out);
    letter-spacing: 2px;
}

.password-input:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(225, 77, 111, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.password-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0;
}

.password-input.error {
    border-color: #ef4444;
    animation: shake 0.5s var(--ease-out);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
}

.password-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--duration-fast);
}

.password-toggle:hover {
    color: rgba(255, 255, 255, 0.6);
}

.password-error {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: #ef4444;
    font-weight: 500;
    animation: fade-up 0.3s var(--ease-out);
}

.password-error.visible {
    display: flex;
}

.password-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: 0 4px 20px rgba(225, 77, 111, 0.3);
}

.password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(225, 77, 111, 0.4);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.password-btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .password-card {
        padding: 36px 24px 32px;
    }

    .password-title {
        font-size: 19px;
    }

    .password-logo-img {
        width: 40px;
        height: 40px;
    }
}


/* --- Ambient Background --- */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(225, 77, 111, 0.06) 0%, transparent 70%);
    animation: float-blob 20s ease-in-out infinite;
}

.ambient-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 155, 84, 0.05) 0%, transparent 70%);
    animation: float-blob 25s ease-in-out infinite reverse;
}

@keyframes float-blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- Header --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 245, 242, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(120, 30, 61, 0.06);
    transition: box-shadow var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(120, 30, 61, 0.06);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--duration-fast) var(--ease-out);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-800);
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-500);
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out);
    border: 1.5px solid;
}

.btn-whatsapp {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.25);
    background: rgba(37, 211, 102, 0.06);
}

.btn-whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-call {
    color: var(--primary-700);
    border-color: rgba(168, 34, 74, 0.2);
    background: rgba(168, 34, 74, 0.04);
}

.btn-call:hover {
    background: var(--primary-700);
    color: white;
    border-color: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(168, 34, 74, 0.2);
}

/* --- Main Content --- */
.main-content {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 60px 0 50px;
    animation: fade-up 0.8s var(--ease-out) both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(225, 77, 111, 0.08), rgba(243, 155, 84, 0.08));
    border: 1px solid rgba(225, 77, 111, 0.12);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-700);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-500);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--neutral-500);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Accordion Sections --- */
.accordion-section {
    margin-bottom: 16px;
    animation: fade-up 0.8s var(--ease-out) both;
}

.accordion-section:nth-child(2) { animation-delay: 0.1s; }
.accordion-section:nth-child(3) { animation-delay: 0.15s; }

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: var(--bg-card);
    border: 1px solid rgba(120, 30, 61, 0.06);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-sm);
    font-family: inherit;
}

.accordion-trigger:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(120, 30, 61, 0.12);
    transform: translateY(-1px);
}

.accordion-trigger[aria-expanded="true"] {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom-color: transparent;
    box-shadow: var(--shadow-md);
}

.accordion-trigger-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--duration-fast) var(--ease-spring);
}

.accordion-trigger:hover .accordion-icon-wrap {
    transform: scale(1.05);
}

.invoice-icon {
    background: linear-gradient(135deg, rgba(225, 77, 111, 0.1), rgba(225, 77, 111, 0.05));
    color: var(--primary-600);
}

.howto-icon {
    background: linear-gradient(135deg, rgba(243, 155, 84, 0.12), rgba(243, 155, 84, 0.05));
    color: var(--accent-500);
}

.accordion-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
}

.accordion-desc {
    font-size: 13px;
    color: var(--neutral-400);
    font-weight: 400;
}

.accent-text {
    color: var(--primary-600);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.chevron {
    color: var(--neutral-400);
    transition: transform var(--duration-normal) var(--ease-out), color var(--duration-fast);
    flex-shrink: 0;
}

.accordion-trigger[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
    color: var(--primary-600);
}

/* --- Accordion Panel --- */
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-out);
    background: var(--bg-card);
    border-left: 1px solid rgba(120, 30, 61, 0.06);
    border-right: 1px solid rgba(120, 30, 61, 0.06);
    border-bottom: 1px solid rgba(120, 30, 61, 0.06);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.accordion-panel.open {
    max-height: 1200px;
}

.accordion-panel-inner {
    padding: 8px 28px 28px;
}

.panel-info {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* --- Invoice Form --- */
.invoice-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-700);
    letter-spacing: 0.3px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="tel"] {
    padding: 14px 18px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    color: var(--neutral-800);
    background: var(--bg-panel);
    transition: all var(--duration-fast) var(--ease-out);
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(225, 77, 111, 0.08);
    background: white;
}

.form-group input::placeholder {
    color: var(--neutral-300);
}

.range-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.range-wrapper input[type="range"] {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, var(--primary-500) 0%, var(--primary-500) 50%, var(--neutral-200) 50%, var(--neutral-200) 100%);
    outline: none;
    cursor: pointer;
}

.range-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary-500);
    box-shadow: 0 2px 8px rgba(225, 77, 111, 0.2);
    cursor: pointer;
    transition: transform var(--duration-fast) var(--ease-spring);
}

.range-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.range-value {
    min-width: 48px;
    padding: 8px 12px;
    background: var(--primary-50);
    color: var(--primary-700);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: 0 4px 16px rgba(120, 30, 61, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(120, 30, 61, 0.3);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

.btn-submit:active {
    transform: translateY(0);
}

/* --- Steps List --- */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--neutral-100);
    transition: background var(--duration-fast);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content strong {
    font-size: 15px;
    color: var(--neutral-800);
}

.step-content p {
    font-size: 13px;
    color: var(--neutral-500);
    margin-top: 2px;
}

.step-content a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--duration-fast);
}

.step-content a:hover {
    color: var(--primary-800);
    text-decoration: underline;
}

.support-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(225, 77, 111, 0.04), rgba(243, 155, 84, 0.04));
    border: 1px solid rgba(225, 77, 111, 0.08);
    border-radius: var(--radius-md);
    color: var(--neutral-600);
    font-size: 13px;
    line-height: 1.6;
}

.support-notice svg {
    color: var(--primary-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.support-notice a {
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
}

.support-notice a:hover {
    text-decoration: underline;
}

/* --- Section Heading --- */
.payment-methods-section {
    margin-top: 48px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 600;
    color: var(--neutral-800);
    text-align: center;
    margin-bottom: 8px;
    animation: fade-up 0.8s var(--ease-out) 0.2s both;
}

.section-subheading {
    text-align: center;
    font-size: 14px;
    color: var(--neutral-400);
    margin-bottom: 32px;
    animation: fade-up 0.8s var(--ease-out) 0.25s both;
}

/* --- Payment Cards --- */
.payment-card {
    margin-bottom: 12px;
    animation: fade-up 0.8s var(--ease-out) both;
}

.payment-card:nth-child(3) { animation-delay: 0.3s; }
.payment-card:nth-child(4) { animation-delay: 0.35s; }
.payment-card:nth-child(5) { animation-delay: 0.4s; }
.payment-card:nth-child(6) { animation-delay: 0.45s; }
.payment-card:nth-child(7) { animation-delay: 0.5s; }

.payment-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-md);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.payment-trigger::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
    opacity: 0;
    transition: opacity var(--duration-fast);
}

.payment-trigger:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.payment-trigger:hover::before {
    opacity: 1;
}

.payment-trigger[aria-expanded="true"] {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.payment-trigger .chevron {
    color: rgba(255, 255, 255, 0.6);
}

.payment-trigger[aria-expanded="true"] .chevron {
    color: white;
}

.payment-trigger-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.payment-method-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.payment-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.payment-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bnpl-badge {
    background: rgba(37, 211, 102, 0.2);
    color: #7ef5a8;
}

.payment-trigger-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-fee {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

.fee-free {
    color: #7ef5a8;
}

.fee-charge {
    color: #ffd07a;
}

/* --- Payment Panel --- */
.payment-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-out);
    background: var(--bg-card);
    border-left: 1px solid rgba(120, 30, 61, 0.08);
    border-right: 1px solid rgba(120, 30, 61, 0.08);
    border-bottom: 1px solid rgba(120, 30, 61, 0.08);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.payment-panel.open {
    max-height: 1200px;
}

.payment-panel-inner {
    padding: 24px 28px 28px;
}

.payment-panel-inner h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 12px;
}

.payment-panel-inner > p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.payment-panel-inner > p a {
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
}

.payment-panel-inner > p a:hover {
    text-decoration: underline;
}

/* Bank Details */
.bank-details {
    background: var(--bg-panel);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-md);
    padding: 4px 0;
    margin-bottom: 16px;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid var(--neutral-100);
    gap: 12px;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 13px;
    color: var(--neutral-500);
    font-weight: 500;
    flex-shrink: 0;
}

.detail-value {
    font-size: 14px;
    color: var(--neutral-800);
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}

.btn-copy {
    background: none;
    border: 1px solid var(--neutral-200);
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    color: var(--neutral-400);
    transition: all var(--duration-fast) var(--ease-out);
    flex-shrink: 0;
}

.btn-copy:hover {
    color: var(--primary-600);
    border-color: var(--primary-300);
    background: var(--primary-50);
}

.btn-copy.copied {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}

.panel-note {
    font-size: 13px;
    color: var(--neutral-500);
    font-style: italic;
    padding: 12px 16px;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-300);
}

/* Office Info */
.office-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
    padding: 16px 20px;
    background: var(--bg-panel);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-100);
}

.office-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--neutral-600);
}

.office-detail svg {
    color: var(--primary-500);
    flex-shrink: 0;
}

/* Card Brands */
.card-brands {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.brand-chip {
    padding: 6px 10px;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stripe Form */
.stripe-form {
    margin-top: 8px;
}

.fee-notice {
    font-size: 12px;
    color: var(--neutral-400);
    margin-top: 4px;
    margin-bottom: 12px;
}

.total-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-50), rgba(243, 155, 84, 0.05));
    border: 1px solid rgba(225, 77, 111, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    font-size: 14px;
}

.total-display span {
    color: var(--neutral-500);
}

.total-display strong {
    color: var(--primary-700);
    font-size: 18px;
}

.btn-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: 0 4px 16px rgba(120, 30, 61, 0.2);
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(120, 30, 61, 0.3);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

/* BNPL Steps */
.bnpl-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-panel);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-100);
}

.bnpl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.bnpl-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bnpl-step span {
    font-size: 11px;
    color: var(--neutral-400);
}

.bnpl-step strong {
    font-size: 14px;
    color: var(--neutral-800);
}

.bnpl-connector {
    width: 30px;
    height: 2px;
    background: var(--neutral-200);
    margin-top: -20px;
    flex-shrink: 0;
}

.bnpl-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(243, 155, 84, 0.06);
    border: 1px solid rgba(243, 155, 84, 0.12);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--accent-600);
    font-weight: 500;
    margin-bottom: 20px;
}

.bnpl-notice svg {
    flex-shrink: 0;
    color: var(--accent-500);
}

/* Contact Actions */
.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-contact {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-out);
    border: 1.5px solid;
}

.btn-wa {
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.25);
    background: rgba(37, 211, 102, 0.05);
}

.btn-wa:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-1px);
}

.btn-email {
    color: var(--primary-700);
    border-color: rgba(168, 34, 74, 0.2);
    background: rgba(168, 34, 74, 0.04);
}

.btn-email:hover {
    background: var(--primary-700);
    color: white;
    border-color: var(--primary-700);
    transform: translateY(-1px);
}

/* --- Trust Section --- */
.trust-section {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--neutral-100);
    animation: fade-up 0.8s var(--ease-out) 0.5s both;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--neutral-400);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--duration-fast);
}

.trust-badge svg {
    color: var(--primary-400);
    opacity: 0.7;
}

.trust-badge:hover {
    color: var(--neutral-600);
}

.trust-badge:hover svg {
    opacity: 1;
}

/* --- Footer --- */
.footer {
    margin-top: 60px;
    padding: 32px 24px;
    background: var(--neutral-900);
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
    filter: brightness(1.2);
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.footer-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--primary-400);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.15);
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all var(--duration-fast) var(--ease-spring);
    z-index: 90;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }

    .header-actions {
        gap: 6px;
    }

    .btn-header {
        padding: 8px 14px;
        font-size: 12px;
    }

    .btn-header svg {
        width: 14px;
        height: 14px;
    }

    .main-content {
        padding: 0 16px 40px;
    }

    .hero {
        padding: 40px 0 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .accordion-trigger {
        padding: 16px 18px;
    }

    .accordion-icon-wrap {
        width: 40px;
        height: 40px;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-desc {
        font-size: 11px;
    }

    .accordion-panel-inner {
        padding: 8px 18px 22px;
    }

    .payment-trigger {
        padding: 14px 18px;
    }

    .payment-name {
        font-size: 14px;
    }

    .payment-badge {
        display: none;
    }

    .payment-panel-inner {
        padding: 18px 20px 22px;
    }

    .bnpl-steps {
        padding: 14px 8px;
    }

    .bnpl-connector {
        width: 16px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .detail-value {
        text-align: left;
    }

    .trust-badges {
        gap: 24px;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 480px) {
    .logo-name {
        font-size: 16px;
    }

    .logo-tagline {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .btn-header span,
    .btn-whatsapp span,
    .btn-call span {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 22px;
    }

    .payment-fee {
        font-size: 12px;
    }

    .steps-list .step-item {
        gap: 12px;
    }

    .bnpl-step span {
        font-size: 10px;
    }

    .bnpl-step strong {
        font-size: 12px;
    }

    .bnpl-circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* --- Print --- */
@media print {
    .header, .floating-whatsapp, .ambient-bg { display: none; }
    body { background: white; }
    .main-content { max-width: 100%; }
}
