:root {
    --primary: #ff3366;
    --primary-hover: #ff5e84;
    --primary-light: #ffd3db;
    --primary-dark: #d81159;
    --background: linear-gradient(135deg, #fff3f5 0%, #ffc0cb 50%, #d8b4f8 100%);
    --card-bg: rgba(255, 255, 255, 0.72);
    --card-border: rgba(255, 255, 255, 0.6);
    --text-main: #3d0c1b;
    --text-muted: #7d4f5c;
    --success: #2ec4b6;
    --danger: #e63946;
    --gold: #d4af37;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 15px 45px rgba(216, 17, 89, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--background);
    background-image: url("../assets/03_backgrounds/svg/page-background-clean.svg");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Hearts Container */
.heart-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    bottom: -50px;
    color: var(--primary);
    opacity: 0.6;
    animation: floatHeart 8s linear infinite;
    pointer-events: none;
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.6);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50vh) translateX(30px) rotate(180deg) scale(0.9);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-110vh) translateX(-30px) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

/* App Container */
.app-container {
    width: 100%;
    max-width: 1340px;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glassmorphism Card styling */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.glass-card:hover {
    box-shadow: 0 20px 50px rgba(216, 17, 89, 0.12);
}

/* Multi-step Layout */
.step {
    display: none;
    opacity: 0;
}

.step.active {
    display: flex;
    flex-direction: column;
    animation: cardSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.2) forwards;
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Typography styles */
.romantic-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.romantic-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 25px;
}

/* Proposal Buttons */
.proposal-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    position: relative;
    height: 80px;
}

/* Fleeing button gets absolute positioning when it starts escaping */
#btn-no.escaped {
    position: absolute;
    z-index: 999;
    transition: left 0.15s cubic-bezier(0.25, 0.8, 0.25, 1), top 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Buttons System */
.btn {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 24, 74, 0.3);
}

.btn-primary.beaming {
    animation: yesBeaming 1s infinite ease-in-out;
}

@keyframes yesBeaming {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 51, 102, 0.5), 0 0 30px rgba(255, 51, 102, 0.3);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 51, 102, 0.9), 0 0 60px rgba(255, 51, 102, 0.6);
        filter: brightness(1.25);
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 24, 74, 0.4);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-muted);
    border: 1px solid rgba(74, 21, 37, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
    background: white;
    color: var(--text-main);
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--primary-light);
}

.btn-outline:hover {
    background: rgba(255, 204, 213, 0.2);
    color: var(--primary-dark);
    border-color: var(--primary);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #bd2c38 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.2);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

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

/* Emoji Containers */
.emoji-container {
    text-align: center;
    margin-bottom: 25px;
}

.main-emoji {
    font-size: 3rem;
    margin: 0 5px;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

/* Step Navigation footer */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    gap: 15px;
}

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

/* STEP 2: Custom Calendar */
.calendar-wrapper {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.month-label {
    font-weight: 700;
    color: var(--text-main);
}

.cal-nav-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.cal-nav-btn:hover {
    background: var(--primary-light);
}

.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(255, 77, 109, 0.15);
    color: var(--primary-dark);
}

.calendar-day.disabled {
    color: #d1c1c5;
    cursor: not-allowed;
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(201, 24, 74, 0.25);
}

/* Time Picker Pill Buttons */
.time-picker-wrapper {
    margin-bottom: 10px;
}

.picker-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

@media (max-width: 400px) {
    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-slot {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 8px 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.time-slot:hover:not(.selected) {
    background: rgba(255, 77, 109, 0.1);
    border-color: var(--primary-light);
}

.time-slot.selected {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 10px rgba(201, 24, 74, 0.2);
}

/* STEP 3: Food Grid selection */
.food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}

.food-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.food-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(74, 21, 37, 0.05);
}

.food-emoji {
    font-size: 2.2rem;
    transition: var(--transition);
}

.food-card:hover .food-emoji {
    transform: scale(1.15);
}

.food-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.food-card.selected {
    background: rgba(255, 204, 213, 0.45);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 77, 109, 0.15);
}

.food-card.selected .food-name {
    color: var(--primary-dark);
    font-weight: 700;
}

/* STEP 4, 5, 6: Custom list option cards */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
}

.option-card {
    background: rgba(255, 255, 255, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.option-card:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--primary-light);
}

.option-icon {
    font-size: 1.8rem;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.option-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.option-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.option-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.option-card.selected {
    background: rgba(255, 204, 213, 0.45);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.1);
}

.option-card.selected .option-title {
    color: var(--primary-dark);
}

.option-card.selected .option-icon {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* STEP 7: Success Page & Summary Card */
.success-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 15px;
    animation: zoomPulse 1.5s ease infinite alternate;
}

@keyframes zoomPulse {
    0% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1.05);
    }
}

.summary-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 77, 109, 0.15);
    border-radius: var(--radius-md);
    padding: 22px;
    margin: 25px 0;
    box-shadow: 0 10px 25px rgba(201, 24, 74, 0.05);
}

.summary-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    border-bottom: 1px dashed var(--primary-light);
    padding-bottom: 8px;
    text-align: center;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: grid;
    grid-template-columns: 24px 110px 1fr;
    align-items: center;
    font-size: 0.9rem;
}

.summary-icon {
    font-size: 1.1rem;
}

.summary-label {
    color: var(--text-muted);
    font-weight: 500;
}

.summary-item strong {
    color: var(--text-main);
    word-break: break-word;
}

.romantic-footer {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 10px;
}

/* Custom Interactive Modal for the No button */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(74, 21, 37, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px !important;
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-content .btn {
    width: 100%;
}

/* RESPONSES DASHBOARD PAGE */
.responses-dashboard.glass-card {
    max-width: 900px;
    width: 100%;
    margin: 40px auto;
}

.dashboard-header {
    text-align: center;
    border-bottom: 1px solid rgba(74, 21, 37, 0.1);
    padding-bottom: 25px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.responses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    width: 100%;
}

.response-item {
    padding: 24px !important;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.response-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.response-badge {
    background: rgba(46, 196, 182, 0.15);
    color: var(--success);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.response-time {
    color: var(--text-muted);
    font-weight: 500;
}

.response-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resp-detail {
    display: grid;
    grid-template-columns: 28px 110px 1fr;
    align-items: flex-start;
    font-size: 0.88rem;
    line-height: 1.4;
}

.detail-icon {
    font-size: 1.1rem;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 600;
}

.resp-detail strong {
    color: var(--text-main);
    word-break: break-word;
}

@media (max-width: 480px) {
    .resp-detail {
        grid-template-columns: 24px 1fr;
        row-gap: 4px;
    }
    .resp-detail strong {
        grid-column: 2;
    }
}

.response-actions {
    border-top: 1px solid rgba(74, 21, 37, 0.08);
    padding-top: 14px;
    display: flex;
    justify-content: flex-end;
}

.empty-dashboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.empty-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.empty-dashboard h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.empty-dashboard p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Micro-animations and Highlights */
@keyframes massagePulse {
    0%, 100% {
        text-shadow: 0 0 4px rgba(255, 51, 102, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 12px rgba(255, 51, 102, 0.6);
        color: var(--primary-dark);
        transform: scale(1.05);
    }
}

.pulse-highlight {
    display: inline-block;
    animation: massagePulse 2s infinite ease-in-out;
    color: var(--primary-dark);
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.wiggle-animation {
    display: inline-block;
    animation: wiggle 0.5s ease infinite alternate;
}

@keyframes selectionPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

.option-card.selected, .food-card.selected {
    animation: selectionPulse 0.3s ease-in-out;
}

/* Animations for deleted items */
.fade-out {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ----------------------------------------------------
   NEW DESIGN SYSTEM EXTENSIONS FOR SENDER / RECEIVER
   ---------------------------------------------------- */

/* Gender Selector Toggle */
.gender-selector {
    display: flex;
    gap: 15px;
    width: 100%;
}

.gender-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    outline: none;
}

.gender-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--primary-light);
}

.gender-btn.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.15);
}

.gender-emoji {
    font-size: 2.2rem;
}

.gender-label {
    font-weight: 600;
    font-size: 1rem;
}

/* Input Fields styling */
.cute-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.cute-input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 12px rgba(255, 51, 102, 0.12);
}

/* Multi-select Chaperone config cards */
.chaperone-checks {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.chaperone-check-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.5);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.chaperone-check-card:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
}

.chaperone-check-card.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.check-status {
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
}

/* Links Display Container */
.links-container {
    background: rgba(255, 255, 255, 0.55);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 100%;
}

.link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.link-type-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-muted);
}

.link-input-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
}

.link-display-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(74, 21, 37, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    outline: none;
}

.copy-btn {
    white-space: nowrap;
    padding: 10px 20px;
}

/* Expiry notice warnings */
.expiry-notice-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 243, 245, 0.85);
    border: 1px dashed rgba(255, 51, 102, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 25px;
    color: var(--primary-dark);
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

.notice-icon {
    font-size: 1.6rem;
}

/* Animated Open Gift Box Screen styling */
.gift-box-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px 0;
}

.gift-box-btn {
    background: transparent;
    border: none;
    font-size: 7.5rem;
    cursor: pointer;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.gift-box-btn:hover {
    transform: scale(1.18) rotate(6deg);
}

.gift-box-btn.opened {
    animation: openGiftBox 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes openGiftBox {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.5) rotate(-20deg); filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 51, 102, 0.5)); opacity: 1; }
    100% { transform: scale(0) rotate(45deg); opacity: 0; }
}

/* Hourglass Beaming waiting animation */
.waiting-emoji {
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

/* ----------------------------------------------------
   SITE HEADER & FOOTER DESIGN SYSTEM
   ---------------------------------------------------- */
body.inner-page .app-container {
    min-height: calc(100vh - 160px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 20px 40px 20px;
    margin: 0 auto;
    max-width: 1340px;
    width: 100%;
    z-index: 10;
    position: relative;
}

body:not(.inner-page) .app-container {
    display: block;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1340px;
    z-index: 999;
    background: #ffffff;
    border: 1.5px solid rgba(255, 123, 144, 0.12);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.05);
    padding: 12px 36px;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: var(--transition);
}

.brand-wrapper:hover {
    transform: scale(1.02);
}

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

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: 0.5px;
    color: #3d0c1b;
}

.brand-dash {
    color: #ff3366;
}

.brand-subline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 1px;
}

.subline-dash {
    width: 18px;
    height: 1.5px;
    background-color: #ff3366;
}

.subline-heart {
    color: #ff3366;
    font-size: 0.62rem;
    line-height: 1;
}

.subline-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    color: #3d0c1b;
    letter-spacing: 0.5px;
    line-height: 1;
}

.site-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.15);
    transition: var(--transition);
}

.site-logo:hover {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 6px 15px rgba(255, 51, 102, 0.25);
}

.site-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #59172b;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-only-nav-link {
    display: none !important;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-actions .btn-primary {
    background: #ff3366;
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.15);
    transition: var(--transition);
    text-decoration: none;
}

.header-actions .btn-primary:hover {
    background: #ff5e84;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.25);
}

.header-actions .btn-login {
    background: #ffffff;
    border: 1.5px solid rgba(255, 123, 144, 0.15);
    color: #59172b;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.header-actions .btn-login:hover {
    background: rgba(255, 51, 102, 0.04);
    border-color: rgba(255, 51, 102, 0.25);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 4px;
    transition: transform 0.3s, opacity 0.3s;
}

.site-footer {
    text-align: center;
    padding: 20px 20px 15px 20px;
    background-image: url("../assets/03_backgrounds/svg/footer-background-clean.svg");
    background-size: cover;
    background-position: center top;
    backdrop-filter: blur(10px);
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1.5px solid rgba(255, 123, 144, 0.1);
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
}

/* ----------------------------------------------------
   PUFFY CLOUDS BACKGROUND SYSTEM
   ---------------------------------------------------- */
.clouds-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: #ffffff;
    border-radius: 50%;
    opacity: 0.82;
    filter: blur(24px);
}

.cloud-bottom-left {
    bottom: -60px;
    left: -80px;
    width: 440px;
    height: 220px;
}

.cloud-bottom-right {
    bottom: -60px;
    right: -100px;
    width: 460px;
    height: 240px;
}

.cloud-mid-right {
    top: 45%;
    right: -110px;
    width: 380px;
    height: 180px;
    opacity: 0.72;
}

.cloud-top-left {
    top: 20%;
    left: -120px;
    width: 280px;
    height: 140px;
    opacity: 0.65;
}

/* ----------------------------------------------------
   LANDING PAGE COMPONENTS (HERO, SECTIONS, GRIDS)
   ---------------------------------------------------- */
.hero-section {
    padding-top: 170px;
    padding-bottom: 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.new-way-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    color: #ff3366;
    padding: 8px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1.5px solid rgba(255, 123, 144, 0.25);
    box-shadow: 0 4px 15px rgba(255, 123, 144, 0.08);
    gap: 8px;
}

.new-way-badge span {
    margin: 0 6px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1.1;
    color: #3d0c1b;
    margin-bottom: 25px;
}

.highlight-text {
    color: #ff3366;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 30'%3E%3Cpath d='M0,22 Q45,22 85,22 Q90,22 93,20 Q95,18 97,16 L100,22 L103,16 Q105,18 107,20 Q110,22 115,22 Q155,22 200,22' stroke='%23ff3366' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3Cpath d='M100,5 C98.5,2 95.5,2 94,5 C92.5,8 96,12 100,16 C104,12 107.5,8 106,5 C104.5,2 101.5,2 100,5 Z' fill='%23ff3366'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: 100% 100%;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 20px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.22rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn-primary {
    background: #ff3366;
    color: #ffffff;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.18);
    transition: var(--transition);
    text-decoration: none;
}

.hero-buttons .btn-primary:hover {
    background: #ff5e84;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.28);
}

.hero-buttons .btn-outline {
    background: #ffffff;
    border: 1.5px solid rgba(255, 51, 102, 0.25);
    color: #ff3366;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: var(--transition);
    text-decoration: none;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 51, 102, 0.04);
    border-color: #ff3366;
    transform: translateY(-3px);
}

.hero-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 480px;
}

.hero-graphics::before, .hero-graphics::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid rgba(255, 51, 102, 0.15);
    animation: pulseRing 3.5s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-graphics::after {
    animation-delay: 1.75s;
}

@keyframes pulseRing {
    0% { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.35); opacity: 0; }
}

.badge-ring-outer {
    display: contents;
}

.badge-ring-middle {
    display: contents;
}

.hero-badge-img {
    width: 420px;
    height: 420px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 15px 35px rgba(255, 51, 102, 0.15));
    transition: var(--transition);
    z-index: 5;
    position: relative;
}

.hero-badge-img:hover {
    transform: scale(1.05);
}

.features-section {
    padding: 0 20px 80px 20px;
    width: 100%;
    max-width: 1340px;
    margin: -40px auto 40px auto;
    position: relative;
    z-index: 20;
}

.features-row-card {
    background: #ffffff;
    border-radius: 40px;
    border: 1.5px solid rgba(255, 123, 144, 0.18);
    box-shadow: 0 15px 45px rgba(255, 51, 102, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 15px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    text-align: left;
    padding: 10px 24px;
}

.feature-item:not(:last-child) {
    border-right: 1.5px solid rgba(255, 123, 144, 0.18);
}

.feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.1rem;
    flex-shrink: 0;
    background: radial-gradient(circle, #ffffff 0%, #fff0f2 50%, #ffe4e8 100%);
    border: 1.5px solid rgba(255, 123, 144, 0.22);
    box-shadow: 0 6px 15px rgba(255, 51, 102, 0.04);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.1);
}

.feature-info {
    display: flex;
    flex-direction: column;
}

.feature-info h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.08rem;
    color: #3d0c1b;
    margin: 0 0 4px 0;
}

.feature-info p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    line-height: 1.4;
    color: #7d4f5c;
    margin: 0;
}

/* ----------------------------------------------------
   INNER SUBPAGES CARD TEMPLATES
   ---------------------------------------------------- */
.inner-content-card {
    max-width: 1200px;
    width: 100%;
    margin: 140px auto 40px auto;
    padding: 60px 45px;
    border-radius: var(--radius-lg);
    z-index: 10;
    position: relative;
    background: #ffffff;
    border: 1.5px solid rgba(255, 123, 144, 0.12);
    box-shadow: 0 15px 45px rgba(255, 51, 102, 0.04);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.step-item-card, .feature-item-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 243, 245, 0.5);
    border: 1.5px solid rgba(255, 123, 144, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
}

.step-item-card:hover, .feature-item-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.05);
    border-color: rgba(255, 123, 144, 0.15);
}

.step-badge, .feature-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3);
}

.feature-badge {
    font-size: 1.5rem;
}

.dual-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-column h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 18px;
    color: var(--text-main);
}

.text-column p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.couple-card {
    border-radius: var(--radius-lg);
    background: #ffffff;
    border: 1px solid rgba(255, 123, 144, 0.15);
    padding: 30px;
    box-shadow: 0 15px 40px rgba(216, 17, 89, 0.04);
}

.couple-card .card-header {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.savings-progress {
    height: 16px;
    background: rgba(255, 51, 102, 0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #ff3366, #ff7b90);
    border-radius: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(216, 17, 89, 0.03);
}

.blog-post-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 12px 30px rgba(216, 17, 89, 0.06);
}

.blog-post-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.blog-post-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.about-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 45px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(255, 123, 144, 0.15);
    box-shadow: 0 15px 45px rgba(216, 17, 89, 0.06);
}

.about-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.about-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.about-cta {
    margin-top: 30px;
}

/* ----------------------------------------------------
   PROPOSAL CREATOR MODAL LAYOUT
   ---------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 12, 27, 0.45);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(216, 17, 89, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 51, 102, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 10;
}

.close-modal-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: rotate(90deg);
}

/* ----------------------------------------------------
   RESPONSIVENESS MEDIA QUERIES
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    body.inner-page .app-container {
        padding-top: 120px;
    }
    .hero-section {
        padding-top: 140px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 16px 0 16px !important;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-badge-img {
        max-width: 320px;
        width: 100%;
        height: auto;
    }
    .features-row-card {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    .dual-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .features-grid-6, .blog-mockup-grid, .works-steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ----------------------------------------------------
   MOCKUP ALL_PAGE_LOOK THEME RULES
   ---------------------------------------------------- */
.page-main-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: #3d0c1b;
    margin-bottom: 8px;
}
.page-main-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-muted);
}
.page-footer-note {
    text-align: center;
    margin-top: 35px;
    padding-top: 10px;
    border-top: none;
}
.heartwarming-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #fff0f3 0%, #ffe4ec 50%, #fff0f3 100%);
    border: 1.5px solid rgba(255, 123, 144, 0.15);
    border-radius: 50px;
    padding: 20px 50px;
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.04);
    width: 100%;
    max-width: 100%;
}
.banner-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.sweet-note-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    font-style: italic;
    color: #ff3366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    white-space: nowrap;
}
.heart-note-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}
.divider-hearts-img {
    max-width: 220px;
    height: auto;
    display: inline-block;
}
.sweet-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px auto 0 auto;
    max-width: 250px;
}
.divider-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(to right, transparent, rgba(255, 123, 144, 0.35), transparent);
}
.divider-heart {
    color: #ff3366;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Panel 1: How It Works Grid */
.works-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.works-step-card {
    background: #fff4f6;
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.03);
    transition: var(--transition);
}
.works-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.08);
}
.works-card-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.works-card-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.12);
}
.pink-gradient-bg {
    background: linear-gradient(135deg, #ff3366 0%, #ff7b90 100%);
}
.icon-emoji {
    font-size: 2.2rem;
    color: #ffffff;
}
.works-step-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 51, 102, 0.08);
    color: #ff3366;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 0.95rem;
}
.works-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #3d0c1b;
    margin-bottom: 12px;
}
.works-step-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Panel 2: Features Grid 6 */
.features-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}
.feature-detail-card {
    background: #fff4f6;
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.03);
    transition: var(--transition);
}
.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.08);
}
.feature-detail-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(255, 51, 102, 0.08);
}
.bg-pink-light { background: #ffeef1; color: #ff3366; }
.bg-calendar-light { background: #e8f9f8; color: #2ec4b6; }
.bg-alert-light { background: #fffbe8; color: #d4af37; }
.bg-chat-light { background: #f3efff; color: #9370db; }
.bg-lovealert-light { background: #ffeef1; color: #ff3366; }
.bg-trophy-light { background: #fff4e8; color: #ffa500; }

.feature-detail-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #3d0c1b;
    margin-bottom: 12px;
}
.feature-detail-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.features-about-banner {
    margin-top: 35px;
    background: rgba(255, 240, 243, 0.6);
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    border-radius: 24px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.02);
}
.features-about-banner h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #ff3366;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.features-about-banner p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.96rem;
    line-height: 1.6;
    color: #59172b;
    max-width: 800px;
    margin: 0 auto;
}
.features-about-banner strong {
    color: #ff3366;
    font-weight: 800;
}

/* Panel 3: Couples Double Cards */
.couples-double-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}
.couple-type-card {
    background: #fff4f6;
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    border-radius: 24px;
    padding: 30px 25px 0 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.02);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.couple-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.06);
}
.couple-type-card h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: #3d0c1b;
    margin-bottom: 10px;
}
.couple-type-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.couple-illustration-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}
.couple-cartoon-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    display: block;
}
.couple-type-card:hover .couple-cartoon-img {
    transform: scale(1.05);
}
.couples-perfect-for-section {
    text-align: center;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid rgba(255, 123, 144, 0.12);
    border-radius: 24px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.02);
}
.perfect-for-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #3d0c1b;
    margin-bottom: 18px;
}
.perfect-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}
.perfect-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.perfect-badge-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 51, 102, 0.2);
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}
.perfect-badge-circle:hover {
    transform: translateY(-3px);
    border-color: #ff3366;
    background: rgba(255, 51, 102, 0.04);
}
.badge-icon {
    font-size: 1.25rem;
}
.perfect-badge-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: #59172b;
    line-height: 1.3;
}

/* Panel 5: Blog Search and Grid */
.blog-search-container {
    display: flex;
    max-width: 600px;
    margin: 30px auto;
    gap: 10px;
}
.blog-search-input {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid rgba(255, 123, 144, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #3d0c1b;
}
.blog-search-btn {
    background: #ff3366;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.15);
    transition: var(--transition);
}
.blog-search-btn:hover {
    background: #ff5e84;
    transform: translateY(-2px);
}
.blog-filters-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.filter-pill {
    background: #fff4f6;
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    color: #59172b;
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.filter-pill:hover, .filter-pill.active {
    background: #ff3366;
    border-color: #ff3366;
    color: #ffffff;
}
.blog-mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.blog-card-v2 {
    background: #fff4f6;
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.03);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.blog-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.08);
}
.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.blog-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card-v2:hover .blog-header-img {
    transform: scale(1.05);
}
.blog-tag-overlay {
    position: absolute;
    bottom: 12px;
    left: 15px;
    background: #ffeef1;
    color: #ff3366;
    padding: 4px 14px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 123, 144, 0.2);
}
.blog-tag-overlay.date-ideas-tag {
    background: #e8f9f8;
    color: #2ec4b6;
    border-color: rgba(46, 196, 182, 0.2);
}
.blog-tag-overlay.relationship-tag {
    background: #fffbe8;
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.2);
}
.blog-card-content {
    padding: 20px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-content h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #3d0c1b;
    margin: 0 0 10px 0;
    line-height: 1.45;
}
.blog-card-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 15px 0;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 123, 144, 0.08);
    padding-top: 12px;
}
.blog-date-read {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.blog-card-v2 h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #3d0c1b;
    margin-bottom: 12px;
}
.blog-card-v2 p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text-muted);
}
.blog-bottom-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Panel 6: Contact details and forms */
.contact-dual-column {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-top: 30px;
    align-items: stretch;
}
.contact-left-card {
    background: #fff4f6;
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    border-radius: 24px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.02);
}
.contact-row-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 123, 144, 0.28);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.02);
    flex-shrink: 0;
    overflow: hidden;
}
.contact-pic-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.contact-row-content h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #3d0c1b;
    margin: 0;
}
.contact-row-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 4px 0 0 0;
}
.contact-right-card {
    background: #fff4f6;
    border: 1.5px solid rgba(255, 123, 144, 0.16);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.02);
}
.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-input-wrapper {
    width: 100%;
}
.contact-input-field {
    background: #ffffff;
    border: 1.5px solid rgba(255, 123, 144, 0.12);
    padding: 14px 20px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #3d0c1b;
    width: 100%;
    box-sizing: border-box;
    transition: var(--transition);
}
.contact-input-field:focus {
    outline: none;
    border-color: #ff3366;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.08);
}
.contact-textarea-field {
    height: 125px;
    resize: none;
}
.contact-submit-btn {
    background: #ff4f7d;
    border: none;
    color: #ffffff;
    padding: 15px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 79, 125, 0.15);
    transition: var(--transition);
    text-align: center;
}
.contact-submit-btn:hover {
    background: #ff3366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 79, 125, 0.25);
}

/* Panel 7: Create standalone view */
.chaperone-toggle-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.btn-toggle {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid rgba(255, 123, 144, 0.15);
    color: #59172b;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-toggle.selected {
    background: #ff3366;
    border-color: #ff3366;
    color: #ffffff;
}
.gift-box-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.emoji-clouds-box {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gift-box-emoji {
    font-size: 7.5rem;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}
.floating-heart {
    position: absolute;
    font-size: 2.2rem;
    animation: floatUpDown 2s ease-in-out infinite alternate;
}
.fh-1 { top: -20px; left: 30px; animation-delay: 0.2s; }
.fh-2 { top: -30px; right: 40px; animation-delay: 0.8s; }
.fh-3 { top: 40px; left: -10px; animation-delay: 0.5s; }
.creator-bottom-note {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 12px;
}
.standalone-results-panel {
    background: rgba(255, 243, 245, 0.6);
    border-radius: 20px;
    padding: 30px;
}

.live-love-widget {
    position: absolute;
    top: 26px;
    right: 28px;
    z-index: 2;
    width: min(250px, calc(100% - 56px));
    padding: 14px 16px 16px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1.5px solid rgba(255, 123, 144, 0.18);
    box-shadow: 0 18px 35px rgba(255, 51, 102, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.live-love-widget::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.12), rgba(46, 196, 182, 0.08), rgba(255, 179, 198, 0.16));
    z-index: -1;
}

.live-love-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ff3366;
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ec4b6;
    box-shadow: 0 0 0 6px rgba(46, 196, 182, 0.12);
    animation: liveDotPulse 1.6s ease-in-out infinite;
}

@keyframes liveDotPulse {
    0%, 100% {
        transform: scale(0.85);
        opacity: 0.75;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

.live-love-stats {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.live-love-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

.live-love-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    color: #3d0c1b;
    font-variant-numeric: tabular-nums;
}

.live-love-label {
    margin-top: 5px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.live-love-divider {
    width: 1.5px;
    height: 38px;
    border-radius: 99px;
    background: linear-gradient(to bottom, transparent, rgba(255, 51, 102, 0.28), transparent);
}

.count-pop {
    animation: countPop 0.48s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes countPop {
    0% { transform: scale(0.9); color: #3d0c1b; }
    45% { transform: scale(1.18); color: #ff3366; }
    100% { transform: scale(1); color: #3d0c1b; }
}

/* Panel 8: Login Lock panel */
.login-tab-headers {
    display: flex;
    border-bottom: 2px solid rgba(255, 123, 144, 0.15);
    margin-bottom: 25px;
}
.login-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
}
.login-tab-btn.active {
    color: #ff3366;
}
.login-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff3366;
}
.forgot-pass-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #ff3366;
    text-decoration: none;
    font-weight: 600;
}
.social-login-separator {
    display: flex;
    align-items: center;
    margin: 25px 0;
}
.sep-line {
    flex: 1;
    height: 1.5px;
    background: rgba(255, 123, 144, 0.15);
}
.sep-text {
    padding: 0 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.social-buttons-row {
    display: flex;
    gap: 15px;
}
.btn-social {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid rgba(255, 123, 144, 0.15);
    color: #59172b;
    padding: 12px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.btn-social:hover {
    background: rgba(255, 51, 102, 0.04);
}
.login-footer-link {
    text-align: center;
    margin-top: 25px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.register-highlight {
    color: #ff3366;
    text-decoration: none;
    font-weight: 700;
}
.login-graphic-column {
    display: flex;
    justify-content: center;
    align-items: center;
}
.winking-padlock-container {
    width: 250px;
    height: 250px;
}
.padlock-svg {
    width: 100%;
    height: 100%;
    animation: floatUpDown 3s ease-in-out infinite alternate;
}

/* ----------------------------------------------------
   PUFFY VECTOR CLOUDS BACKGROUND SYSTEM
   ---------------------------------------------------- */
.decorations-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.svg-cloud {
    position: absolute;
    filter: drop-shadow(0 10px 25px rgba(255, 51, 102, 0.04));
    opacity: 0.95;
    transition: var(--transition);
}

.cloud-bl {
    bottom: -15px;
    left: -20px;
    width: 380px;
    height: auto;
}

.cloud-br {
    bottom: -15px;
    right: -20px;
    width: 380px;
    height: auto;
}

.cloud-mr {
    top: 35%;
    right: -35px;
    width: 260px;
    height: auto;
}

.cloud-ml {
    top: 20%;
    left: -45px;
    width: 240px;
    height: auto;
}

.floating-deco {
    position: absolute;
    font-size: 1.3rem;
    animation: floatUpDown 4s ease-in-out infinite alternate;
    pointer-events: none;
}

.heart-1 {
    top: 15%;
    right: 12%;
    animation-delay: 0.5s;
    font-size: 1.6rem;
}

.heart-2 {
    bottom: 25%;
    left: 8%;
    animation-delay: 1.2s;
}

.sparkle-1 {
    top: 45%;
    left: 15%;
    animation-delay: 0.8s;
    font-size: 1.1rem;
}

.sparkle-2 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.5s;
    font-size: 1.2rem;
}

.star-1 {
    top: 28%;
    right: 28%;
    animation-delay: 0.2s;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }
    .site-nav.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 24px;
        padding: 25px;
        gap: 20px;
        border: 1.5px solid rgba(255, 123, 144, 0.15);
        box-shadow: 0 15px 35px rgba(255, 51, 102, 0.10);
        z-index: 1000;
        text-align: center;
    }
    .mobile-only-nav-link {
        display: block !important;
        margin-top: 10px;
        background: #ff3366;
        color: #ffffff !important;
        border-radius: 50px;
        padding: 12px 24px !important;
        font-weight: 700;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 51, 102, 0.2);
    }
    .mobile-only-nav-link::after {
        display: none !important;
    }
    .header-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    .features-row-card {
        grid-template-columns: 1fr;
        display: grid;
    }
    .feature-item {
        border-right: none !important;
        border-bottom: 1.5px solid rgba(255, 123, 144, 0.12) !important;
        padding: 20px 10px !important;
    }
    .feature-item:last-child {
        border-bottom: none !important;
    }
    .site-header {
        padding: 12px 20px;
        border-radius: 30px;
        width: calc(100% - 20px);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .works-steps-grid, .features-grid-6, .couples-double-cards, .blog-mockup-grid {
        grid-template-columns: 1fr !important;
    }
    .inner-content-card {
        padding: 30px 20px !important;
        margin-top: 100px !important;
        margin-bottom: 25px !important;
        border-radius: 20px !important;
    }
    .app-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    body.inner-page .app-container {
        padding: 100px 16px 20px 16px !important;
    }
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        text-align: center !important;
    }
    .footer-brand-info, .footer-dir-col, .footer-subscribe-col {
        grid-column: span 1 !important;
        text-align: center !important;
    }
    .footer-dir-col ul {
        align-items: center !important;
    }
    .subscribe-input-row {
        justify-content: center;
    }
    .footer-social-row {
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 15px !important;
    }
    .hero-buttons a.btn {
        width: 100% !important;
        max-width: 320px !important;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
    }
    .heartwarming-banner {
        padding: 15px 20px !important;
        border-radius: 30px !important;
    }
    .sweet-note-text {
        white-space: normal !important;
        font-size: 1.1rem !important;
        text-align: center !important;
        display: block !important;
    }
    .contact-dual-column {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

@media (max-width: 480px) {
    .features-row-card {
        grid-template-columns: 1fr;
        display: grid;
    }
    .footer-container {
        grid-template-columns: 1fr !important;
    }
    .footer-brand-info, .footer-subscribe-col {
        grid-column: span 1;
        text-align: center !important;
    }
    .brand-name {
        font-size: 1.2rem !important;
    }
    .site-logo {
        width: 40px !important;
        height: 40px !important;
    }
    .brand-wrapper {
        gap: 8px !important;
    }
    .perfect-badges-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

.follow-us-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.footer-social-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.2s ease;
}
.footer-social-img:hover {
    transform: scale(1.12);
}
@media (max-width: 768px) {
    .follow-us-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }
}

@keyframes shakeBox {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-6px) rotate(-4deg); }
    40% { transform: translateY(-2px) rotate(4deg); }
    60% { transform: translateY(-6px) rotate(-4deg); }
    80% { transform: translateY(-2px) rotate(4deg); }
}

.shake-box {
    animation: shakeBox 0.4s ease-in-out !important;
}

@keyframes popOut {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.gift-box-emoji.open-state {
    animation: popOut 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

/* ----------------------------------------------------
   PROFESSIONAL RESPONSIVE STABILITY LAYER
   Keeps every public, proposal, tracker, and admin page
   aligned across phones, tablets, laptops, and desktops.
   ---------------------------------------------------- */
html {
    width: 100%;
    min-width: 0;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    min-width: 320px;
    overflow-x: clip;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 0 !important;
    background-color: #fff3f5;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

button,
input,
select,
textarea {
    min-width: 0;
}

.app-container {
    width: min(100%, 1340px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    flex: 1 0 auto;
    align-items: flex-start;
}

body:not(.inner-page) .app-container {
    width: 100% !important;
    max-width: none !important;
}

.site-header,
.site-footer,
.app-container,
.hero-section,
.features-section,
.inner-content-card,
.glass-card {
    max-width: 100%;
}

.site-header {
    width: min(calc(100% - 32px), 1340px) !important;
    padding: 10px clamp(16px, 2.4vw, 36px) !important;
}

.header-container {
    gap: clamp(12px, 2vw, 28px);
    min-width: 0;
}

.brand-wrapper {
    min-width: 0;
    flex-shrink: 0;
}

.site-nav {
    gap: clamp(14px, 2.2vw, 35px) !important;
    min-width: 0;
}

.nav-link {
    white-space: nowrap;
}

.hero-section {
    min-height: auto !important;
    padding: clamp(130px, 14vw, 170px) 0 clamp(36px, 7vw, 70px) 0 !important;
}

.hero-container {
    width: min(100%, 1340px);
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: clamp(24px, 5vw, 56px);
    padding-left: clamp(20px, 4vw, 48px) !important;
    padding-right: clamp(20px, 4vw, 48px) !important;
}

.hero-title,
.page-main-title,
.section-title,
.romantic-title {
    overflow-wrap: anywhere;
}

.hero-title {
    font-size: clamp(2.35rem, 5.2vw, 4rem) !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.22rem) !important;
}

.hero-graphics {
    height: clamp(280px, 40vw, 480px) !important;
    min-width: 0;
}

.hero-badge-img {
    width: clamp(250px, 34vw, 420px) !important;
    height: auto !important;
}

.hero-graphics::before,
.hero-graphics::after {
    width: clamp(220px, 30vw, 320px) !important;
    height: clamp(220px, 30vw, 320px) !important;
}

.features-section {
    padding-left: clamp(16px, 3vw, 28px) !important;
    padding-right: clamp(16px, 3vw, 28px) !important;
    margin-top: clamp(-22px, -3vw, -8px) !important;
}

.features-row-card {
    border-radius: clamp(20px, 3vw, 40px) !important;
}

.feature-item,
.option-card,
.chaperone-check-card,
.contact-row-item,
.response-header,
.link-input-wrapper,
.search-input-row,
.subscribe-input-row,
.follow-us-row {
    min-width: 0;
}

.feature-info,
.option-details,
.contact-row-content,
.response-body,
.links-container,
.link-card {
    min-width: 0;
}

.inner-content-card {
    width: min(calc(100% - 32px), 1200px) !important;
    margin: clamp(118px, 12vw, 140px) auto clamp(28px, 5vw, 48px) auto !important;
    padding: clamp(26px, 4vw, 60px) clamp(18px, 4vw, 45px) !important;
}

.glass-card {
    overflow-wrap: anywhere;
}

body.inner-page .app-container {
    min-height: auto !important;
    padding: clamp(108px, 12vw, 140px) clamp(12px, 3vw, 20px) clamp(28px, 5vw, 48px) clamp(12px, 3vw, 20px) !important;
}

body.inner-page .glass-card:not(.modal-content) {
    width: min(100%, 620px);
}

.responses-dashboard.glass-card {
    width: min(calc(100% - 32px), 900px) !important;
    margin: clamp(112px, 12vw, 140px) auto clamp(28px, 5vw, 48px) auto !important;
    padding: clamp(24px, 4vw, 40px) clamp(18px, 4vw, 30px) !important;
}

.dual-column,
.contact-dual-column {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.works-steps-grid,
.features-grid-6,
.couples-double-cards,
.blog-mockup-grid,
.responses-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
}

.food-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}

.time-slots-grid {
    grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
}

.blog-filters-row {
    flex-wrap: wrap;
}

.blog-search-container,
.search-input-row,
.link-input-wrapper,
.step-navigation,
.hero-buttons,
.chaperone-toggle-buttons,
.social-buttons-row {
    min-width: 0;
}

.cute-input,
.contact-input-field,
.blog-search-input,
.link-display-input {
    width: 100%;
    max-width: 100%;
}

.link-input-wrapper {
    align-items: stretch;
}

.link-display-input {
    flex: 1 1 180px;
}

.link-input-wrapper .btn,
.link-input-wrapper a.btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.summary-item,
.resp-detail {
    min-width: 0;
}

.summary-item strong,
.resp-detail strong,
.response-time,
.contact-row-content p,
.blog-card-content h3,
.blog-card-content p {
    overflow-wrap: anywhere;
}

.site-footer {
    flex-shrink: 0;
}

.footer-container {
    width: min(100%, 1340px) !important;
    grid-template-columns: minmax(240px, 1.25fr) minmax(150px, 0.75fr) minmax(260px, 1.1fr) !important;
    gap: clamp(24px, 4vw, 40px) !important;
    padding: 12px clamp(20px, 4vw, 40px) 18px clamp(20px, 4vw, 40px) !important;
}

.footer-brand-info > div[style*="padding-left"] {
    padding-left: 0 !important;
}

.admin-table {
    min-width: 760px;
}

.admin-modal-card {
    width: min(calc(100% - 32px), 500px) !important;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
}

.modal-overlay,
.admin-modal-overlay {
    padding: 16px;
    min-width: 0;
}

.modal-content {
    width: min(100%, 600px) !important;
    max-height: calc(100dvh - 32px) !important;
    padding: clamp(24px, 4vw, 40px) !important;
}

.decorations-container {
    overflow: hidden;
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 18px !important;
    }

    .nav-link {
        font-size: 0.96rem !important;
    }

    .header-actions .btn-primary {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-graphics {
        height: auto !important;
        min-height: 260px;
    }

    .features-row-card {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .feature-item {
        border-right: 0 !important;
    }

    .feature-item:nth-child(odd) {
        border-right: 1.5px solid rgba(255, 123, 144, 0.12) !important;
    }

    .feature-item:nth-child(-n+2) {
        border-bottom: 1.5px solid rgba(255, 123, 144, 0.12) !important;
    }
}

@media (max-width: 900px) {
    .site-nav {
        display: none;
    }

    .site-nav.active {
        display: flex !important;
        width: 100%;
        max-height: min(70dvh, 480px);
        overflow-y: auto;
    }

    .header-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-shrink: 0;
    }

    .site-header {
        top: 12px !important;
        width: min(calc(100% - 24px), 1340px) !important;
        border-radius: 28px !important;
    }

    .hero-section {
        padding-top: 112px !important;
    }

    .hero-title {
        line-height: 1.08 !important;
    }

    .new-way-badge {
        max-width: 100%;
        justify-content: center;
        white-space: normal;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .dual-column,
    .contact-dual-column {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .create-graphic-column {
        order: -1;
    }

    .live-love-widget {
        position: static;
        width: min(100%, 360px);
        margin: -16px auto 30px auto;
    }

    .emoji-clouds-box {
        width: min(220px, 70vw);
        height: min(220px, 70vw);
    }

    .gift-box-emoji {
        font-size: clamp(4.5rem, 18vw, 7rem) !important;
    }

    .site-footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}

@media (max-width: 640px) {
    body {
        min-width: 0;
    }

    body,
    body:not(.inner-page) .app-container,
    .hero-section,
    .features-section {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    body:not(.inner-page) .app-container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .site-header {
        left: 8px !important;
        right: 8px !important;
        width: auto !important;
        transform: none !important;
    }

    .header-container {
        width: 100% !important;
    }

    .site-logo {
        width: 42px !important;
        height: 42px !important;
    }

    .brand-name {
        font-size: clamp(1rem, 5vw, 1.25rem) !important;
    }

    .brand-subline {
        transform: scale(0.92);
        transform-origin: center left;
    }

    .hero-container {
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-content,
    .section-header {
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        padding-bottom: 28px !important;
    }

    .hero-title {
        font-size: clamp(1.9rem, 10vw, 2.25rem) !important;
        max-width: 100%;
    }

    .hero-title br {
        display: block;
    }

    .highlight-text {
        display: block !important;
    }

    .hero-subtitle br {
        display: block;
    }

    .highlight-text::after {
        bottom: -14px !important;
        height: 22px !important;
    }

    .hero-buttons,
    .step-navigation,
    .proposal-buttons,
    .chaperone-toggle-buttons,
    .blog-search-container,
    .search-input-row,
    .link-input-wrapper,
    .subscribe-input-row {
        flex-direction: column !important;
        align-items: stretch !important;
        height: auto !important;
    }

    .hero-buttons .btn,
    .step-navigation .btn,
    .proposal-buttons .btn,
    .chaperone-toggle-buttons .btn-toggle,
    .blog-search-btn,
    .search-input-row .btn,
    .link-input-wrapper .btn,
    .link-input-wrapper a.btn,
    .subscribe-input-row button {
        width: 100% !important;
        max-width: none !important;
    }

    .features-row-card {
        grid-template-columns: 1fr !important;
        padding: 10px 16px !important;
    }

    .feature-item {
        border-right: 0 !important;
        border-bottom: 1.5px solid rgba(255, 123, 144, 0.12) !important;
        padding: 18px 0 !important;
    }

    .feature-item:last-child {
        border-bottom: 0 !important;
    }

    .feature-icon {
        width: 58px !important;
        height: 58px !important;
    }

    .page-main-title {
        font-size: clamp(1.55rem, 7.2vw, 1.9rem) !important;
        line-height: 1.15 !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .page-main-subtitle,
    .section-subtitle,
    .romantic-subtitle {
        font-size: 1rem !important;
    }

    .section-header {
        margin-bottom: 28px !important;
    }

    .live-love-widget {
        width: 100%;
        margin-top: -10px;
        margin-bottom: 24px;
        border-radius: 18px;
        padding: 13px 14px 15px 14px;
    }

    .live-love-number {
        font-size: 1.4rem;
    }

    .works-step-card,
    .feature-detail-card,
    .couple-type-card,
    .features-about-banner,
    .couples-perfect-for-section,
    .contact-left-card,
    .contact-right-card,
    .standalone-results-panel,
    .summary-card,
    .response-item {
        border-radius: 18px !important;
        padding: 22px 18px !important;
    }

    .couple-type-card {
        padding-bottom: 0 !important;
    }

    .blog-filters-row {
        justify-content: flex-start !important;
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: thin;
    }

    .filter-pill {
        flex: 0 0 auto;
    }

    .perfect-badges-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .food-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .food-card {
        padding: 16px 10px !important;
    }

    .time-slots-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .option-card,
    .chaperone-check-card {
        align-items: flex-start !important;
        padding: 14px !important;
    }

    .summary-item,
    .resp-detail {
        display: grid !important;
        grid-template-columns: 28px minmax(0, 1fr) !important;
        row-gap: 4px;
    }

    .summary-item strong,
    .resp-detail strong {
        grid-column: 2;
    }

    .summary-label,
    .detail-label {
        min-width: 0 !important;
    }

    .response-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }

    .contact-row-item {
        align-items: flex-start;
        gap: 14px;
    }

    .footer-copyright-row {
        padding-left: 18px !important;
        padding-right: 18px !important;
        text-align: center !important;
    }

    .modal-overlay,
    .admin-modal-overlay {
        align-items: flex-start !important;
        overflow-y: auto;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
    }
}

@media (max-width: 420px) {
    .site-header {
        left: 8px !important;
        right: 8px !important;
        width: auto !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .brand-wrapper {
        gap: 7px !important;
    }

    .subline-dash {
        width: 12px !important;
    }

    .hero-container,
    .features-section {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .inner-content-card,
    .responses-dashboard.glass-card {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .glass-card:not(.inner-content-card):not(.responses-dashboard):not(.modal-content) {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .btn,
    .btn-lg {
        padding-left: 18px !important;
        padding-right: 18px !important;
        font-size: 0.98rem !important;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .calendar-wrapper {
        padding: 12px !important;
    }

    .calendar-day {
        font-size: 0.82rem !important;
    }

    .footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
