/* ========================================
   Notes4Pets Landing Page — Styles
   Design: Modern, Glassmorphism, Gradients
   Colors: Orange → Pink primary gradient
   ======================================== */

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

:root {
    --orange: #FF9500;
    --orange-light: #FFB347;
    --pink: #FF2D55;
    --pink-light: #FF6B8A;
    --purple: #AF52DE;
    --blue: #007AFF;
    --yellow: #FFCC00;
    --green: #34C759;
    --red: #FF3B30;

    --gradient-primary: linear-gradient(135deg, #FF9500 0%, #FF2D55 100%);
    --gradient-primary-soft: linear-gradient(135deg, rgba(255,149,0,0.1) 0%, rgba(255,45,85,0.1) 100%);
    --gradient-pink-purple: linear-gradient(135deg, #FF2D55 0%, #AF52DE 100%);
    --gradient-orange-yellow: linear-gradient(135deg, #FF9500 0%, #FFCC00 100%);
    --gradient-blue-purple: linear-gradient(135deg, #007AFF 0%, #AF52DE 100%);
    --gradient-green: linear-gradient(135deg, #34C759 0%, #30D158 100%);

    --bg: #FFFFFF;
    --bg-alt: #F9FAFB;
    --bg-dark: #0A0A0B;
    --text: #1A1A2E;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(255,149,0,0.15);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Animations === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes scrollDot {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"].visible,
[data-animate="fade-left"].visible {
    transform: translateX(0);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    z-index: 1001;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.nav-logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

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

.nav-link.nav-cta {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.nav-link.nav-cta:hover {
    opacity: 0.9;
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Language Switcher */
.nav-lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid var(--border);
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.lang-btn:hover {
    background: var(--bg-alt);
    transform: scale(1.1);
}

.lang-btn.active {
    border-color: var(--orange);
    background: rgba(255, 149, 0, 0.08);
    box-shadow: 0 0 8px rgba(255, 149, 0, 0.2);
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,149,0,0.03) 0%, rgba(255,45,85,0.03) 50%, transparent 100%);
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 149, 0, 0.12);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 45, 85, 0.1);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(175, 82, 222, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 149, 0, 0.08);
    border: 1px solid rgba(255, 149, 0, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--text);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(255, 149, 0, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    padding: 12px 28px;
}

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

.btn-download {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 36px;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(255, 149, 0, 0.35);
}

.btn-download:hover {
    box-shadow: 0 8px 30px rgba(255, 149, 0, 0.45);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero Visual / Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    width: 280px;
    background: #FFFFFF;
    border-radius: 36px;
    border: 6px solid #1A1A2E;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1A1A2E;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.phone-screen {
    padding: 16px;
    min-height: 480px;
    background: #FAFAFA;
}

.screen-header {
    margin-bottom: 20px;
    padding-top: 4px;
}

.screen-greeting {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
}

.screen-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.screen-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.screen-card-pet {
    display: flex;
    align-items: center;
    gap: 10px;
}

.screen-pet-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.screen-pet-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.screen-pet-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.screen-pet-breed {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.screen-pet-age {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--orange);
    background: rgba(255,149,0,0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.screen-reminder {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 12px;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 149, 0, 0.2);
    border-left: 3px solid var(--orange);
}

.reminder-icon {
    font-size: 1.3rem;
}

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

.reminder-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

.reminder-date {
    font-size: 0.68rem;
    color: var(--orange);
    font-weight: 500;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-lg);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    z-index: 3;
}

.floating-icon {
    font-size: 1.2rem;
}

.card-1 {
    top: 60px;
    left: -30px;
    animation: float 4s ease-in-out infinite;
}

.card-2 {
    bottom: 120px;
    right: -20px;
    animation: float 4s ease-in-out infinite 1s;
}

.card-3 {
    top: 50%;
    right: -40px;
    animation: float 4s ease-in-out infinite 2s;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scrollDot 1.5s infinite;
}

/* === Sections Common === */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 149, 0, 0.08);
    border: 1px solid rgba(255, 149, 0, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.tag-premium {
    background: linear-gradient(135deg, rgba(255,149,0,0.1), rgba(255,45,85,0.1));
    border-color: rgba(255, 149, 0, 0.25);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

/* === Features Grid === */
.features {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 149, 0, 0.2);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gradient-orange-pink { background: var(--gradient-primary); }
.gradient-pink-purple { background: var(--gradient-pink-purple); }
.gradient-orange-yellow { background: var(--gradient-orange-yellow); }
.gradient-blue-purple { background: var(--gradient-blue-purple); }
.gradient-green { background: var(--gradient-green); }

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Split Content (Health, Journal, Reminders) === */
.health-section,
.journal-section,
.reminders-section {
    padding: 100px 0;
}

.health-section {
    background: var(--bg);
}

.journal-section {
    background: var(--bg-alt);
}

.reminders-section {
    background: var(--bg);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

/* Phone screen variants */
.screen-health,
.screen-journal,
.screen-reminders {
    padding: 0;
    min-height: 480px;
    background: #FAFAFA;
}

.screen-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 8px;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.screen-back {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--orange);
}

.screen-title-bar {
    font-size: 0.9rem;
    font-weight: 700;
}

.screen-add {
    font-size: 1.3rem;
    color: var(--orange);
    font-weight: 500;
}

/* Health tabs */
.health-tabs {
    display: flex;
    gap: 4px;
    padding: 10px 12px;
    overflow-x: auto;
}

.health-tab {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: white;
    white-space: nowrap;
}

.health-tab.active {
    background: var(--gradient-primary);
    color: white;
}

.health-card-mock {
    background: white;
    margin: 8px 12px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.health-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.health-status.valid {
    background: rgba(52, 199, 89, 0.1);
    color: var(--green);
}

.health-status.warning {
    background: rgba(255, 149, 0, 0.1);
    color: var(--orange);
}

.health-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.health-date {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.health-next {
    font-size: 0.65rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Feature list */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-list-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.feature-list-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-list-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Journal screen */
.journal-entry-mock {
    background: white;
    margin: 8px 12px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.journal-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.journal-entry-type {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 600;
    color: white;
}

.journal-entry-date {
    font-size: 0.65rem;
    color: var(--text-light);
}

.journal-entry-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}

.journal-entry-text {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-entry-mood {
    margin-top: 6px;
    font-size: 0.65rem;
    color: var(--text-light);
}

/* Journal types */
.journal-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.journal-type {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
}

.journal-type-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

/* Mood pills */
.mood-section {
    margin-top: 24px;
}

.mood-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 10px;
}

.mood-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mood-pill {
    padding: 6px 14px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Reminder screen */
.reminder-mock {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    margin: 8px 12px;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.reminder-mock.urgent {
    border-left: 3px solid var(--orange);
}

.reminder-mock.completed {
    opacity: 0.5;
}

.reminder-mock-icon {
    font-size: 1.2rem;
}

.reminder-mock-content {
    flex: 1;
}

.reminder-mock-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
}

.reminder-mock-time {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 1px;
}

.reminder-mock-badge {
    padding: 2px 10px;
    background: rgba(255, 149, 0, 0.1);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 700;
}

/* Reminder types grid */
.reminder-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.reminder-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.reminder-type-card:hover {
    border-color: var(--orange);
    background: rgba(255, 149, 0, 0.04);
}

.reminder-type-card span:first-child {
    font-size: 1.4rem;
}

/* === Pets Species Section === */
.pets-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.pets-showcase {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.pet-species-card {
    text-align: center;
    padding: 28px 16px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.pet-species-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 149, 0, 0.2);
}

.pet-species-img-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
}

.pet-species-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pet-species-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pet-species-card p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* === Milestones === */
.milestones-section {
    padding: 100px 0;
    background: var(--bg);
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.milestone-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 149, 0, 0.2);
}

.milestone-emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.milestone-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.milestone-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === Premium / Pricing === */
.premium-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 36px 28px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border: 2px solid var(--orange);
    box-shadow: var(--shadow-glow);
    transform: scale(1.04);
}

.pricing-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.pricing-period {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text);
}

.pricing-check {
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-x {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-disabled {
    color: var(--text-light) !important;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* === Languages === */
.languages-section {
    padding: 60px 0;
    background: var(--bg);
}

.languages-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 48px;
    background: var(--gradient-primary-soft);
    border: 1px solid rgba(255, 149, 0, 0.15);
    border-radius: var(--radius-2xl);
}

.languages-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.languages-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.languages-flags {
    display: flex;
    gap: 24px;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.flag-emoji {
    font-size: 1.8rem;
}

/* === Download CTA === */
.download-section {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.download-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dl-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.dl-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 149, 0, 0.15);
    top: -200px;
    right: -100px;
}

.dl-shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 45, 85, 0.1);
    bottom: -200px;
    left: -100px;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.download-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    margin: 0 auto 24px;
    box-shadow: 0 0 40px rgba(255, 149, 0, 0.3);
}

.download-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.download-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.download-note {
    margin-top: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* === Footer === */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
}

.footer-brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

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

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

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split-content.reverse {
        direction: ltr;
    }

    .split-visual {
        display: flex;
        justify-content: center;
    }

    .section-title.text-left,
    .section-subtitle.text-left {
        text-align: center;
    }

    .feature-list-item {
        text-align: left;
    }

    .journal-types,
    .mood-pills {
        justify-content: center;
    }

    .mood-label {
        text-align: center;
    }

    .reminder-types-grid {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .pets-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .languages-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

    .nav-lang-switcher {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        margin-top: 12px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
        gap: 8px;
    }

    .lang-btn {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .floating-card {
        display: none;
    }

    .phone-frame {
        width: 240px;
    }

    .phone-screen {
        min-height: 400px;
    }

    .screen-health,
    .screen-journal,
    .screen-reminders {
        min-height: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 24px;
    }

    .pets-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pet-species-card {
        padding: 20px 12px;
    }

    .pet-species-img-wrap {
        width: 70px;
        height: 70px;
    }

    .milestones-grid {
        grid-template-columns: 1fr;
    }

    .languages-flags {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }
}

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

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .pets-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .reminder-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .download-section {
        padding: 80px 0;
    }
}
