* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFB6D9;
    --secondary-color: #FFA8E0;
    --accent-color: #FF85C8;
    --dark-color: #2D2D2D;
    --light-bg: #FFF5F9;
    --white: #FFFFFF;
    --gray: #6B6B6B;
    --light-gray: #E5E5E5;
    --gradient-1: linear-gradient(135deg, #FFB6D9 0%, #FFA8E0 100%);
    --gradient-2: linear-gradient(135deg, #FFE5F0 0%, #FFF5F9 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--dark-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-download-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-store-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #ffffff;
}

.btn-store-nav:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.apple-logo,
.google-logo {
    width: 20px;
    height: 20px;
}

.btn-store-nav.google .google-logo {
    filter: brightness(0) invert(1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
}

.mobile-menu-stores {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 0;
    border-bottom: none !important;
}

.store-badge-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.store-badge-mobile:hover {
    background: #2a2a2a;
}

.badge-icon-mobile {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.badge-text-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.badge-subtitle-mobile {
    font-size: 0.6rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-title-mobile {
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F9 50%, #FFE5F0 100%);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(100px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #B8A8FF 0%, #9B7FFF 100%);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E8F8F0 0%, #D4F4E8 100%);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2D8659;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.1);
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-learn-more {
    margin-bottom: 50px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    min-width: 180px;
}

.store-badge:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.apple-icon {
    color: #ffffff;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    padding: 16px 32px;
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 0;
}

.stat-item {
    flex: 1;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--light-gray);
}

/* Phone Section with Tabs */
.hero-phone-section {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row-reverse;
}

.phone-feature-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 160px;
}

.feature-tab:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(255, 182, 217, 0.3);
}

.feature-tab.active {
    background: var(--gradient-1);
    border-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 182, 217, 0.4);
}

.tab-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tab-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
}

.feature-tab.active .tab-label {
    color: var(--white);
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.phone-frame {
    width: 300px;
    height: 610px;
    background: #1a1a1a;
    border-radius: 48px;
    padding: 14px;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 50px 20px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.status-bar {
    position: absolute;
    top: 8px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-color);
    z-index: 2;
}

.status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.status-icons svg {
    width: auto;
    height: 10px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.screen-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-color);
}

.add-btn {
    width: 36px;
    height: 36px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pet-card {
    background: var(--white);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.pet-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.pet-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.pet-info {
    flex: 1;
}

.pet-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.pet-info p {
    font-size: 0.75rem;
    color: var(--gray);
}

.health-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.health-badge.healthy {
    color: #2D8659;
    background: #E8F8F0;
}

.pet-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box {
    background: var(--light-bg);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-color);
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.quick-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.action-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.2s;
}

.action-icon.health {
    background: linear-gradient(135deg, #FFE5F0 0%, #FFD6E8 100%);
}

.action-icon.food {
    background: linear-gradient(135deg, #FFE5D6 0%, #FFD6C4 100%);
}

.action-icon.activity {
    background: linear-gradient(135deg, #E8F8F0 0%, #D4F4E8 100%);
}

.action-icon.calendar {
    background: linear-gradient(135deg, #E5E8FF 0%, #D6DCFF 100%);
}

.quick-action-item span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-color);
}

.reminders-section {
    background: var(--white);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.reminders-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.reminder-item:not(:last-child) {
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.reminder-icon {
    width: 38px;
    height: 38px;
    background: var(--light-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.reminder-text {
    display: flex;
    flex-direction: column;
}

.reminder-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.reminder-time {
    font-size: 0.7rem;
    color: var(--gray);
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: auto;
    padding: 15px 0 5px;
    border-top: 1px solid #E0E0E0;
    background: var(--white);
}

.nav-item {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s;
}

.nav-item.active {
    background: var(--light-bg);
}

.nav-item span {
    font-size: 1.3rem;
    opacity: 0.4;
}

.nav-item.active span {
    opacity: 1;
}

/* Hero Features */
.hero-features {
    grid-column: 1 / -1;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.pill-icon {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-img-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pets-gradient {
    background: linear-gradient(135deg, #FFB6D9 0%, #FFA8E0 100%);
}

.ai-gradient {
    background: linear-gradient(135deg, #B8A8FF 0%, #9B7FFF 100%);
}

.expense-gradient {
    background: linear-gradient(135deg, #A8E6CF 0%, #7FD4B8 100%);
}

.reminder-gradient {
    background: linear-gradient(135deg, #FFD6A5 0%, #FFAB73 100%);
}

.memory-gradient {
    background: linear-gradient(135deg, #FFA8C5 0%, #FF7FA8 100%);
}

.share-gradient {
    background: linear-gradient(135deg, #A8C5FF 0%, #7FA8FF 100%);
}

.feature-icon {
    font-size: 4rem;
}

.feature-content {
    padding: 25px;
}

.feature-badge {
    display: inline-block;
    background: #E8F8F0;
    color: #2D8659;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    min-height: 3.9rem; /* Always 2 lines: 1.5rem × 1.3 × 2 */
    display: flex;
    align-items: flex-start;
}

.feature-content > p {
    color: var(--gray);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    margin-bottom: 20px !important;
    color: var(--gray) !important;
}

.btn-explore {
    width: 100%;
    padding: 12px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: #1a1a1a;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gradient-2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
    margin: 20px 0 !important;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.about-text > p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-closing {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 30px !important;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-features h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-features p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card span {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.floating-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.floating-card strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 15%;
    left: 30%;
    animation-delay: 1s;
}

.card-4 {
    top: 40%;
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--white);
    color: var(--dark-color);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.store-icon {
    font-size: 2rem;
}

.store-btn div {
    text-align: left;
}

.store-btn small {
    display: block;
    font-size: 0.7rem;
}

.store-btn strong {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--light-bg);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-brand p {
    color: var(--gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--gray);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: var(--gray);
    font-size: 0.9rem;
}

/* Privacy Policy Page */
.privacy-page {
    padding: 100px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 40px;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    margin-top: 20px;
}

.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.privacy-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 12px;
}

.privacy-section a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.privacy-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-back-link {
    margin-top: 60px;
    text-align: center;
}

.privacy-back-link .btn-primary {
    display: inline-flex;
}

/* Delete Account Page */
.delete-account-page {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F9 50%, #FFE5F0 100%);
    min-height: 100vh;
}

.delete-account-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.delete-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.delete-account-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 40px;
}

.delete-intro {
    text-align: left;
    margin-bottom: 50px;
}

.delete-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.delete-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: left;
}

.delete-form-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.form-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.delete-form {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 182, 217, 0.1);
}

.btn-delete {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-delete:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-delete .btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.btn-delete:hover .btn-arrow {
    transform: translateX(5px);
}

.delete-info {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 16px;
}

.delete-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.delete-info ul {
    list-style: none;
    padding: 0;
}

.delete-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.info-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.alternative-options {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.alternative-options h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.alternative-options p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.option-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.option-buttons .btn-secondary {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-phone-section {
        flex-direction: column;
    }

    .phone-feature-tabs {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
    }

    .feature-tab {
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px;
        min-width: 100px;
    }

    .feature-tab:hover,
    .feature-tab.active {
        transform: translateY(-5px);
    }

    .tab-label {
        font-size: 0.75rem;
        text-align: center;
    }

    .phone-mockup {
        transform: scale(0.9);
    }

    .hero-features {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-download-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-learn-more {
        display: flex;
        justify-content: center;
    }

    .store-badge,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        min-width: auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .phone-mockup {
        transform: scale(0.85);
    }

    .feature-pill {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .phone-mockup {
        transform: scale(0.75);
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.4rem;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }

    .delete-account-content h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .delete-form-card,
    .alternative-options {
        padding: 25px;
    }

    .option-buttons {
        flex-direction: column;
    }

    .option-buttons .btn-secondary {
        width: 100%;
    }
}

