:root {
    --ink: #3a2f2f;
    --muted: #8a7575;
    --paper: #fff5f6;
    --panel: rgba(255, 245, 246, 0.82);
    --line: rgba(180, 140, 150, 0.18);
    --accent: #e8728a;
    --accent-hover: #d1566e;
    --font-outfit: 'Outfit', ui-rounded, 'SF Pro Rounded', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    font-family: var(--font-outfit);
    background: linear-gradient(135deg, #fef0f2 0%, #fce4ec 30%, #fdf2f4 60%, #fff0f3 100%);
    line-height: 1.75;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
pawmood-header {
    display: block;
    width: 100%;
}

header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    width: 100%;
}

.logo {
    font-size: 1.35rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(232, 114, 138, 0.15);
}

.logo:hover .logo-icon {
    transform: scale(1.15) rotate(4deg);
}

header nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

header nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

header nav a:hover {
    color: var(--accent);
}

/* Typography & Links */
h1 {
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 24px;
}

h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 36px 0 12px;
    color: var(--ink);
}

p {
    color: #4a3e3e;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
    color: var(--accent-hover);
}

/* Lists */
ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
    color: #4a3e3e;
    font-size: 1rem;
}

/* Forms & Cards (from feedback.html) */
.feedback-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(232, 114, 138, 0.08);
    transition: all 0.3s ease;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.feedback-card h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    text-align: center;
}

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

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    transition: all 0.2s ease;
    outline: none;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input[type="text"]:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232, 114, 138, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: var(--accent);
    color: #ffffff;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(232, 114, 138, 0.25);
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    text-align: center;
}

.submit-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(232, 114, 138, 0.35);
    text-decoration: none;
}

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

.submit-btn:disabled {
    background-color: var(--muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.5s ease forwards;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #4ade80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 12px;
    text-align: center;
    font-weight: 600;
}

/* Document specific styling */
.last-updated {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* Hero Section (from index.html) */
.hero {
    padding: 96px 0 80px;
    text-align: center;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent);
}

.lead {
    font-size: clamp(1.1rem, 2.8vw, 1.35rem);
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(232, 114, 138, 0.25);
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(232, 114, 138, 0.35);
    text-decoration: none;
}

/* Features Section */
.features-section {
    padding: 40px 0 80px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    color: var(--ink);
}

.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
    margin: 12px auto 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(180, 140, 150, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(180, 140, 150, 0.1);
}

.feature-num {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--ink);
}

.feature-sublist {
    margin-top: 18px;
    padding-left: 20px;
    list-style-type: none;
}

.feature-sublist li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #5a4c4c;
    position: relative;
    padding-left: 18px;
}

.feature-sublist li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Footer */
pawmood-footer {
    display: block;
    width: 100%;
    margin-top: auto;
}

footer {
    border-top: 1px solid var(--line);
    padding: 40px 0 60px;
    text-align: center;
    width: 100%;
}

footer p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
    font-weight: 400;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    header {
        height: 80px;
    }

    header nav {
        gap: 12px;
    }

    .hero {
        padding: 64px 0 48px;
    }

    .feature-card {
        padding: 24px;
    }
    
    .feedback-card {
        padding: 24px;
        border-radius: 20px;
    }
}
