/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:       #7B8EC8;
    --primary-dark:  #5A6BAB;
    --primary-light: #EAEEF8;
    --secondary:     #B0A0D8;
    --accent:        #D4926B;
    --bg:            #F8F7FF;
    --bg-alt:        #F2F0FB;
    --white:         #FFFFFF;
    --text:          #22233A;
    --text-muted:    #7879A0;
    --border:        #E4E0F2;
    --shadow-sm:     rgba(90, 107, 171, 0.07);
    --shadow:        rgba(90, 107, 171, 0.12);
    --shadow-md:     rgba(90, 107, 171, 0.20);
    --radius:        18px;
    --radius-sm:     10px;
    --transition:    0.25s ease;

    --font-body:    'Sunflower', 'Apple SD Gothic Neo', sans-serif;
    --font-display: 'Jua', 'Apple SD Gothic Neo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(248, 247, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 var(--border), 0 4px 24px var(--shadow-sm);
    padding: 14px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    transition: opacity var(--transition);
}

.logo:hover { opacity: 0.75; }

.logo-img {
    height: 24px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    transition: color var(--transition);
}

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

.nav-link.nav-cta {
    background: var(--text);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition);
    border: 1.5px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--text);
    color: white;
    border-color: var(--text);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--text-muted);
    border-color: var(--border);
}

.btn--outline:hover {
    color: var(--text);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

/* === SECTION COMMON === */
.section-head {
    text-align: center;
    margin-bottom: 72px;
}

.section-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.85;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #ECEEFA 0%, #E8E2F8 50%, #FAF0EA 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.hero-blob--1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, #C4D0F4 0%, transparent 70%);
    top: -140px; left: -140px;
    animation: blobDrift 10s ease-in-out infinite;
}

.hero-blob--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #D0C4F4 0%, transparent 70%);
    top: 0; right: -80px;
    animation: blobDrift 13s ease-in-out infinite reverse;
}

.hero-blob--3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #F4D8C0 0%, transparent 70%);
    bottom: 8%; left: 26%;
    animation: blobDrift 15s ease-in-out infinite;
}

@keyframes blobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(22px, -16px) scale(1.03); }
    66%  { transform: translate(-14px, 12px) scale(0.98); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding-top: 64px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.22;
    color: var(--text);
    margin-bottom: 26px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero Card */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    width: 360px;
    height: 360px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 32px 80px var(--shadow-md), 0 4px 16px var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dog-circle {
    width: 148px;
    height: 148px;
    background: linear-gradient(135deg, var(--primary-light), #EDE8FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dogPulse 3.5s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.dog-emoji { font-size: 4.8rem; }

@keyframes dogPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(123, 142, 200, 0.25); }
    50%       { transform: scale(1.04); box-shadow: 0 0 0 18px rgba(123, 142, 200, 0); }
}

.note-float {
    position: absolute;
    font-size: 1.5rem;
    color: var(--secondary);
    animation: noteFloat 4s ease-in-out infinite;
    user-select: none;
    z-index: 2;
}

.note-1 { top: 14%; left: 13%; animation-delay: 0s; font-size: 1.7rem; }
.note-2 { top: 18%; right: 14%; animation-delay: 1.1s; font-size: 1.1rem; color: var(--primary); }
.note-3 { bottom: 22%; left: 15%; animation-delay: 2.2s; font-size: 0.95rem; }
.note-4 { bottom: 20%; right: 13%; animation-delay: 0.6s; font-size: 1.4rem; }

@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.55; }
    50%       { transform: translateY(-14px) rotate(12deg); opacity: 0.9; }
}

.wave-bars {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    align-items: flex-end;
    z-index: 1;
}

.wave-bar {
    width: 6px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    animation: waveEq 1.4s ease-in-out infinite;
}

.wave-bar--1 { height: 16px; animation-delay: 0s; }
.wave-bar--2 { height: 32px; animation-delay: 0.15s; }
.wave-bar--3 { height: 24px; animation-delay: 0.3s; }
.wave-bar--4 { height: 40px; animation-delay: 0.08s; }
.wave-bar--5 { height: 18px; animation-delay: 0.22s; }

@keyframes waveEq {
    0%, 100% { transform: scaleY(1); opacity: 0.75; }
    50%       { transform: scaleY(0.3); opacity: 0.35; }
}

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* === ABOUT === */
.about {
    padding: 120px 0;
    background: var(--bg);
}

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

.about-card {
    background: white;
    border-radius: var(--radius);
    padding: 44px 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px var(--shadow-md);
    border-color: transparent;
}

.about-card--featured {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}

.about-card.about-card--featured h3,
.about-card.about-card--featured p { color: #fff; }

.about-card--featured .about-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
}

.about-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin: 0 auto 24px;
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.about-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* === HOW IT WORKS === */
.how {
    padding: 120px 0;
    background: var(--bg-alt);
}

.steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 48px 32px 44px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px var(--shadow-md);
    border-color: transparent;
}

.step-num {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-light);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.step-icon {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.step-connector {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -4px;
    align-self: center;
    opacity: 0.6;
}
.step-connector svg { width: 60px; }

/* === REQUEST FORM === */
.request {
    padding: 120px 0;
    background: var(--bg);
}

.form-wrap {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px 64px;
    box-shadow: 0 4px 40px var(--shadow-sm), 0 1px 0 var(--border);
    border: 1px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}

.form-group { margin-bottom: 28px; }
.form-group:last-child { margin-bottom: 0; }

.label {
    display: block;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.req { color: #E05C5C; margin-left: 2px; }

.input, .textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: white;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.input:focus, .textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(123, 142, 200, 0.12);
}

.input::placeholder, .textarea::placeholder { color: #C8C6DC; }

.textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.7;
}

.form-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 7px;
    line-height: 1.55;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 7px;
}

/* Upload Zone */
.upload-zone {
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    min-height: 192px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}

.upload-zone:hover, .upload-zone.drag-over {
    border-color: var(--primary);
    background: var(--primary-light);
}

.upload-empty {
    text-align: center;
    padding: 28px 20px;
    pointer-events: none;
}

.upload-icon-big {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.upload-main {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.upload-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.upload-filled {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 192px;
}

.upload-filled img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    display: block;
}

.remove-photo {
    position: absolute;
    top: 10px; right: 10px;
    width: 30px; height: 30px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    border-radius: 50%;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    border: none;
    z-index: 2;
}
.remove-photo:hover { background: rgba(0, 0, 0, 0.82); }

/* Mood Grid */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mood-item { position: relative; }

.mood-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
    pointer-events: none;
}

.mood-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    background: white;
    user-select: none;
    text-align: center;
}

.mood-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: var(--primary-light);
}

.mood-item input:checked + .mood-btn {
    background: var(--text);
    border-color: var(--text);
    color: white;
    box-shadow: 0 2px 10px var(--shadow);
}

/* Submit */
.form-submit-area {
    margin-top: 48px;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 48px;
}

.submit-btn {
    background: var(--text);
    color: white;
    padding: 18px 64px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 24px var(--shadow-md);
    letter-spacing: 0.02em;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px var(--shadow-md);
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.spinner {
    width: 20px; height: 20px;
    animation: spinAnim 0.9s linear infinite;
    flex-shrink: 0;
}

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

/* Success */
.success-card {
    text-align: center;
    padding: 72px 20px;
    animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: none; }
}

.success-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 24px;
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounceIn {
    0%   { transform: scale(0) rotate(-10deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.success-card h3 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.success-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 32px;
}

/* === YOUTUBE CTA === */
.yt-cta {
    padding: 80px 0;
    background: var(--bg-alt);
}

.yt-card {
    background: linear-gradient(140deg, #22233A 0%, var(--primary-dark) 55%, #4A5899 100%);
    border-radius: 24px;
    padding: 68px 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    color: white;
    overflow: hidden;
    position: relative;
}

.yt-card::before {
    content: '';
    position: absolute;
    top: -55%; right: -4%;
    width: 480px; height: 480px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.yt-text { position: relative; z-index: 1; }

.yt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.yt-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.yt-text p {
    font-size: 0.97rem;
    opacity: 0.8;
    line-height: 1.85;
    margin-bottom: 32px;
}

.yt-btn {
    display: inline-block;
    background: white;
    color: var(--text);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all var(--transition);
}

.yt-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.yt-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.yt-rings {
    position: relative;
    width: 180px; height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    animation: ringPulse 2.8s ease-in-out infinite;
}

.yt-ring--1 { width: 80px; height: 80px; animation-delay: 0s; }
.yt-ring--2 { width: 128px; height: 128px; animation-delay: 0.45s; }
.yt-ring--3 { width: 178px; height: 178px; animation-delay: 0.9s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.35; }
    50%       { transform: scale(1.04); opacity: 0.85; }
}

.yt-dog {
    font-size: 3rem;
    position: relative;
    z-index: 1;
    animation: dogPulse 3.5s ease-in-out infinite;
}

/* === FOOTER === */
.footer {
    background: #1A1B2E;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.45);
}

.footer-inner { text-align: center; }

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo-wrap {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: -0.01em;
    line-height: 1;
}

.footer-inner p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 22px !important;
}

/* === MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(22, 22, 40, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

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

.modal {
    background: white;
    border-radius: 24px;
    padding: 48px 44px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(22, 22, 40, 0.28);
    transform: scale(0.92) translateY(16px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.show .modal { transform: scale(1) translateY(0); }

.modal-icon { font-size: 2.8rem; margin-bottom: 14px; }

.modal-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}

.modal-summary {
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 16px;
    text-align: left;
}

.modal-summary-row {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

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

.modal-summary-label {
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    width: 76px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 2px;
}

.modal-summary-value {
    flex: 1;
    word-break: break-word;
}

.modal-notice {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.modal-cancel {
    flex: 1;
    padding: 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    background: var(--bg-alt);
    color: var(--text-muted);
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}

.modal-cancel:hover {
    background: var(--border);
    color: var(--text);
}

.modal-confirm {
    flex: 1.4;
    padding: 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    background: var(--text);
    color: white;
    border: none;
    transition: all var(--transition);
    box-shadow: 0 4px 16px var(--shadow-md);
}

.modal-confirm:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--shadow-md);
}

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: white;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 52px;
    }

    .hero-visual { order: -1; }
    .hero-card { width: 280px; height: 280px; }
    .dog-circle { width: 108px; height: 108px; }
    .dog-emoji { font-size: 3.4rem; }
    .hero-actions { justify-content: center; }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .step { max-width: 420px; width: 100%; }
    .step-connector { transform: rotate(90deg); }

    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .form-wrap { padding: 44px 32px; }
    .mood-grid { grid-template-columns: repeat(2, 1fr); }

    .yt-card { flex-direction: column; text-align: center; padding: 52px 40px; }
    .yt-visual { display: none; }
}

@media (max-width: 620px) {
    .container { padding: 0 20px; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 62px; left: 0; right: 0;
        background: rgba(248, 247, 255, 0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 16px 24px 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
        gap: 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.open { display: flex; }
    .hamburger { display: flex; }

    .nav-link {
        padding: 14px 0;
        font-size: 0.97rem;
        border-bottom: 1px solid var(--border);
        width: 100%;
        display: block;
        color: var(--text);
    }

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

    .nav-link.nav-cta {
        background: none;
        color: var(--primary-dark);
        padding: 14px 0;
        border-radius: 0;
        box-shadow: none;
        font-size: 0.97rem;
    }

    .hero-card { width: 240px; height: 240px; border-radius: 30px; }

    .form-wrap { padding: 32px 20px; border-radius: 20px; }
    .submit-btn { width: 100%; justify-content: center; padding: 18px 24px; }
    .mood-grid { grid-template-columns: repeat(2, 1fr); }

    .yt-card { padding: 44px 28px; border-radius: 20px; }

    .modal { padding: 40px 28px; }
    .modal-actions { flex-direction: column; }
}
