:root {

    --primary-color: #FF7B5F;
    --primary-dark: #E86850;
    --primary-light: #FF9B85;
    --secondary-color: #FF6B4A;
    --accent-color: #FFA58F;


    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #FFF5F2;
    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --text-tertiary: #8A9AA8;
    --border-color: #E5E8EB;
    --shadow-color: rgba(0, 0, 0, 0.1);


    --gradient-primary: linear-gradient(135deg, #FF7B5F 0%, #FF6B4A 100%);
    --gradient-light: linear-gradient(135deg, #FFA58F 0%, #FF9B85 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(255, 123, 95, 0.1) 0%, rgba(255, 107, 74, 0.05) 100%);


    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;


    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;


    --shadow-sm: 0 2px 8px var(--shadow-color);
    --shadow-md: 0 4px 16px var(--shadow-color);
    --shadow-lg: 0 8px 32px var(--shadow-color);
    --shadow-xl: 0 16px 48px var(--shadow-color);


    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;


    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}


[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #242424;
    --bg-tertiary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #888888;
    --border-color: #3d3d3d;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-overlay: linear-gradient(180deg, rgba(255, 123, 95, 0.05) 0%, rgba(255, 107, 74, 0.02) 100%);
}

[data-theme="dark"] .email-box {
    background: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .email-box h3 {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .email-box p,
[data-theme="dark"] .email-box .note {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .contact-email-btn {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .contact-email-btn:hover {
    background: var(--primary-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-primary);
    transition: background-color var(--transition-base), color var(--transition-base);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInScale 0.6s ease;
}

.loading-logo {
    width: 180px;
    height: auto;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--primary-light);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: var(--secondary-color);
}

.loading-text {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--font-size-lg);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}

.logo img {
    height: 50px;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 2px 4px rgba(255, 123, 95, 0.2));
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
   
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    
   
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}


.nav-link:hover {
    color: var(--primary-color);
}


.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}


.nav-link:hover::after {
    width: 100%;
}


.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
}

.btn-download {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-download::after {
    display: none;
}


.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .theme-toggle {
        left: 20%;
    }

}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 123, 95, 0.3);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: all var(--transition-base);
}

.sun-icon {
    color: var(--primary-color);
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.moon-icon {
    color: var(--primary-color);
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-base);
}


.hero {
    position: relative;
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

[data-theme="dark"] .hero {
    background: var(--bg-secondary);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    animation: fadeInUp 1s ease;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 123, 95, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 123, 95, 0.45);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 123, 95, 0.3);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-image {
    animation: fadeInRight 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #2C3E50;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
    position: relative;
    border: 2px solid #34495e;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

[data-theme="dark"] .hero-shapes {
    opacity: 0.3;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: -100px;
    right: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-light);
    bottom: 100px;
    left: -50px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    top: 50%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
}


.intro-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.intro-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}


.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 123, 95, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    max-width: 700px;
    margin: var(--spacing-sm) auto 0;
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.features-wrapper {
    max-width: 1100px;
    margin: var(--spacing-lg) auto 0;
}

.feature-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-md);
    margin-bottom: calc(var(--spacing-lg) * 1.5);
    opacity: 0;
    transform: translateY(30px);
}

.feature-box.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.feature-number {
    font-size: calc(var(--font-size-4xl) * 1.2);
    font-weight: 900;
    color: var(--primary-color);
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.feature-main {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: calc(var(--spacing-md) * 1.8);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: calc(var(--spacing-md) * 1.5);
    align-items: start;
}

.feature-box:hover .feature-main {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 123, 95, 0.35);
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-box svg {
    width: 42px;
    height: 42px;
    color: #ffffff;
}

.feature-info h3 {
    font-size: calc(var(--font-size-xl) * 1.15);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: calc(var(--spacing-sm) * 1.2);
    line-height: 1.3;
}

.feature-info p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.feature-info p:last-child {
    margin-bottom: 0;
}


.post-types-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.post-types-showcase {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
}

.post-types-showcase::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-full);
}

[data-theme="dark"] .post-types-showcase::before {
    opacity: 0.5;
}

.post-type-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: calc(var(--spacing-md) * 1.5);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.post-type-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.post-type-number {
    font-size: calc(var(--font-size-3xl) * 1.2);
    font-weight: 800;
    color: var(--primary-color);
    min-width: 60px;
    text-align: center;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.post-type-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--bg-primary);
    padding: calc(var(--spacing-md) * 1.2);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.post-type-item:hover .post-type-content {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    background: var(--bg-secondary);
}

.post-type-icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 123, 95, 0.3);
}

.post-type-item:hover .post-type-icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(255, 123, 95, 0.5);
}

.post-type-icon-circle svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.post-type-text h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.post-type-text p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.post-types-footer {
    text-align: center;
    margin-top: calc(var(--spacing-lg) * 1.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-types-footer p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    padding: calc(var(--spacing-md) * 1.2);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}


.result-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-overlay);
    text-align: center;
}

.result-content {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.result-content.animate-in {
    animation: fadeInUp 1s ease forwards;
}

.result-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: var(--spacing-md);
}



.screenshots-section {
    padding: 2.5rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.screenshots-section .section-header {
    margin-bottom: 3rem;
}

.screenshots-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 560px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.screenshots-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.screenshot-item {
    position: absolute;

    width: 250px;
    aspect-ratio: 9 / 19.5;
    height: auto;

    border-radius: 26px;
    background: transparent;

    transition: none;

    opacity: 0;
    transform: translateX(0) scale(0.8);
    z-index: 1;

    pointer-events: none;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}


.screenshot-phone-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.screenshot-content {
    width: 100%;
    height: 100%;
}

.screenshot-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.screenshot-phone-frame-overlay {
    display: none;
}




.screenshot-item.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;

    pointer-events: auto;
    cursor: zoom-in;
    box-shadow: 0 25px 50px rgba(255, 123, 95, 0.25);
}


.screenshot-item.left {
    opacity: 0.4;
    transform: translateX(-105%) scale(0.85) rotateY(15deg);
    z-index: 5;
    pointer-events: none;
}


.screenshot-item.right {
    opacity: 0.4;
    transform: translateX(105%) scale(0.85) rotateY(-15deg);
    z-index: 5;
    pointer-events: none;
}


.screenshot-item.hidden-left {
    transform: translateX(-200%) scale(0.5);
    opacity: 0;
    z-index: 0;
}

.screenshot-item.hidden-right {
    transform: translateX(200%) scale(0.5);
    opacity: 0;
    z-index: 0;
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}


@media (max-width: 768px) {
    .screenshots-wrapper {
        height: 500px;
    }

    .screenshot-item {
        width: 240px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }
}


.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    backdrop-filter: blur(8px);
    padding: var(--spacing-md);
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalZoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10000;
}

.modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1024px) {
    .screenshots-slider {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--spacing-sm);
    }

    .screenshot-item {
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 768px) {
    .screenshots-section {
        padding: var(--spacing-lg) 0;
    }

    .screenshots-slider {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: var(--spacing-sm);
    }

    .screenshot-item {
        border-radius: var(--radius-md);
        border-width: 1px;
    }

    .slider-arrow {
        display: flex;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .modal-content {
        max-width: 90vw;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .screenshots-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshot-item {
        border-radius: var(--radius-md);
    }
}


.download-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: #ffffff;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.download-text h2 {
    color: #ffffff;
}

.download-description {
    font-size: var(--font-size-lg);
    margin: var(--spacing-md) 0;
    line-height: 1.8;
    opacity: 0.95;
}

.download-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    color: #ffffff;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.store-icon {
    width: 32px;
    height: 32px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.store-large {
    font-size: 1.125rem;
    font-weight: 700;
}

.download-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-phone {
    animation: float 6s ease-in-out infinite;
}

.floating-phone img {
    max-width: 300px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}


.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 123, 95, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    height: 70px;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 2px 8px rgba(255, 123, 95, 0.3)) brightness(1.2) contrast(1.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-base);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(255, 123, 95, 0.4);
    border-color: transparent;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.footer-column ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    :root {
        --font-size-4xl: 2.5rem;
        --font-size-3xl: 2rem;
        --font-size-2xl: 1.75rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md) 0;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
        min-height: auto;
    }

    :root {
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
        --spacing-xl: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .post-types-grid-featured {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4 {
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        text-align: center;
    }

    .phone-frame {
        width: 280px;
        height: 550px;
    }


    .hero-image {
        margin-top: var(--spacing-md);
        padding-top: var(--spacing-md);
    }


    .post-types-showcase::before {
        left: 30px;
    }

    .post-type-number {
        min-width: 40px;
        font-size: var(--font-size-2xl);
    }

    .post-type-content {
        flex-direction: column;
        text-align: center;
    }


    .feature-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-number {
        margin-bottom: var(--spacing-sm);
    }

    .feature-main {
        grid-template-columns: 1fr;
        text-align: center;
        padding: calc(var(--spacing-md) * 1.2);
    }

    .feature-icon-box {
        margin: 0 auto var(--spacing-md);
    }


    .slider-arrow {
        display: none;
    }

    .screenshots-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .screenshot-item {
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --spacing-md: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .store-button {
        flex: 1;
        min-width: 100%;
        justify-content: center;
    }

    .post-types-grid-featured {
        grid-template-columns: 1fr;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    .logo img {
        height: 40px;
    }
}


@media (max-width: 768px) {


    .container {
        padding: 0 20px;
    }


    .nav-wrapper {
        justify-content: space-between;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: var(--transition-base);
        padding: var(--spacing-md) 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        margin-left: 15px;
    }


    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }


    .post-types-showcase::before {
        left: 20px;
    }

    .post-type-number {
        min-width: 40px;
        height: 40px;
        background: var(--bg-primary);
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid var(--bg-secondary);
        margin-right: 15px;
    }

    .post-type-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }


    .screenshots-section {
        padding: 2rem 0;
    }

    .screenshots-wrapper {
        height: auto;
        perspective: none;
        display: block;
        overflow: visible;
    }

    .slider-arrow {
        display: none !important;
    }

    .screenshots-slider {
        display: flex;
        width: 100%;
        height: auto;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px 20px 40px 20px;
        gap: 20px;
        transform-style: flat;
    }


    .screenshots-slider::-webkit-scrollbar {
        display: none;
    }


    .screenshot-item,
    .screenshot-item.active,
    .screenshot-item.left,
    .screenshot-item.right,
    .screenshot-item.hidden-left,
    .screenshot-item.hidden-right {
        position: relative !important;
        width: 260px !important;
        height: auto !important;
        aspect-ratio: 9 / 19.5;
        flex-shrink: 0;
        transform: none !important;
        opacity: 1 !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        z-index: 1 !important;
        pointer-events: auto !important;
        scroll-snap-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
        background: var(--bg-primary);
    }

    .screenshot-item.active {
        box-shadow: 0 15px 30px rgba(255, 123, 95, 0.3);
    }

    .screenshot-phone-wrapper {
        border-radius: 24px;
        background: transparent;
    }
}


.download-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}


.download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-text h2 {
    font-size: var(--font-size-3xl);
    color: white;
}

.download-description {
    opacity: 0.95;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.download-visual {
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.paw-track-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    animation: spin-slow 40s linear infinite;
}


.hub-phone {
    width: 200px;
    height: 400px;
    background: #fff;
    border-radius: 35px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
    transform: rotate(-5deg);
    animation: float-phone 6s ease-in-out infinite;
}

.hub-screen {
    background: #F5F7FA;
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 15px;
}


.app-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.app-dot {
    width: 30px;
    height: 30px;
    background: #FFD4C9;
    border-radius: 50%;
}

.app-line {
    flex: 1;
    height: 10px;
    background: #E0E0E0;
    border-radius: 5px;
    margin-top: 10px;
}

.feed-item {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    animation: slideUp 2s infinite alternate;
}

.feed-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-color);
}

.feed-content {
    flex: 1;
}

.feed-line {
    height: 6px;
    background: #F0F0F0;
    border-radius: 3px;
    margin-bottom: 5px;
}

.feed-line.lg {
    width: 80%;
}

.feed-line.sm {
    width: 50%;
}

.like-btn-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 123, 95, 0.4);
    animation: pulse 2s infinite;
}

.like-btn-float svg {
    width: 24px;
    height: 24px;
}


.pet-floater {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 12;
}

.pet-avatar {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pet-avatar svg {
    width: 40px;
    height: 40px;
}

.pet-bubble {
    background: #fff;
    color: var(--text-primary);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -25px;
    white-space: nowrap;
    animation: popIn 0.5s ease backwards 1s;
}

.pet-badge {
    position: absolute;
    bottom: -5px;
    background: #4CD964;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
    border: 2px solid white;
}


.dog-floater {
    top: 15%;
    left: 5%;
    animation: float-pet 6s ease-in-out infinite;
}

.cat-floater {
    bottom: 15%;
    right: 5%;
    animation: float-pet 7s ease-in-out infinite 1s;
}

.rabbit-floater {
    top: 40%;
    right: -5%;
    animation: float-pet 5s ease-in-out infinite 0.5s;
}


.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 0.875rem;
    color: var(--text-tertiary);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all var(--transition-base);
    background: transparent;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    background: var(--bg-primary);
    padding: 0 0.4rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 1rem;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    max-width: 700px;
    max-height: 90vh;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.legal-modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.legal-modal-close svg {
    width: 18px;
    height: 18px;
    color: var(--text-primary);
}

.legal-modal-close:hover svg {
    color: #ffffff;
}

.legal-modal-body {
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.legal-modal-body h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    padding-right: 50px;
}



.legal-modal-body section {
    margin-bottom: 1.5rem;
}

.legal-modal-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legal-modal-body p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .legal-modal-body {
        padding: 2rem 1.5rem;
    }

    .legal-modal-body h2 {
        font-size: 1.5rem;
    }
}


@media (max-width: 768px) {


    .download-section {
        overflow: hidden;
        padding: 3rem 0;
    }


    .download-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .download-text {
        order: 1;
    }


    .download-visual {
        height: 350px;
        width: 100%;
        margin-top: 1rem;
        transform: scale(0.9);
    }


    .paw-track-circle {
        width: 300px;
        height: 300px;
    }


    .hub-phone {
        width: 160px;
        height: 320px;
    }



    .dog-floater {
        left: 0;
        top: 10%;
    }


    .cat-floater {
        right: 0;
        bottom: 10%;
    }


    .rabbit-floater {
        right: 10px;
        top: 35%;
    }


    .pet-avatar {
        width: 50px;
        height: 50px;
        border-width: 3px;
    }

    .pet-avatar svg {
        width: 25px;
        height: 25px;
    }

    .pet-bubble {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}


.custom-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 11000;
    min-width: 300px;
    max-width: 90%;


    transform: translateX(150%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 5px solid transparent;
}

.custom-toast.active {
    transform: translateX(0);
}

.toast-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon-box svg {
    width: 20px;
    height: 20px;
    color: white;
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2C3E50;
}

.toast-content p {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #5A6C7D;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #A0A0A0;
    padding: 5px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #2C3E50;
}

.toast-close svg {
    width: 18px;
    height: 18px;
}


.custom-toast.success {
    border-left-color: #4CD964;
}

.custom-toast.success .toast-icon-box {
    background: #4CD964;
    box-shadow: 0 4px 10px rgba(76, 217, 100, 0.3);
}

.custom-toast.error {
    border-left-color: #FF3B30;
}

.custom-toast.error .toast-icon-box {
    background: #FF3B30;
    box-shadow: 0 4px 10px rgba(255, 59, 48, 0.3);
}


@media (max-width: 768px) {
    .custom-toast {
        top: 20px;
        right: 5%;
        left: 5%;
        width: 90%;
        min-width: auto;
        transform: translateY(-150%);
    }

    .custom-toast.active {
        transform: translateY(0);
    }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    border: 1px solid var(--border-color);
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

#scrollTopBtn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;

    border: none;
    outline: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    cursor: pointer;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(255, 123, 95, 0.4);

    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(30px) scale(0.8);

    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

#scrollTopBtn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}


#scrollTopBtn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 123, 95, 0.6);
}


#scrollTopBtn:active {
    transform: translateY(-3px) scale(1.05);
}

#scrollTopBtn:active svg {
    transform: translateY(-3px);
    animation: arrowPulse 0.6s ease infinite;
}


@keyframes arrowPulse {

    0%,
    100% {
        transform: translateY(-3px);
    }

    50% {
        transform: translateY(-6px);
    }
}


#scrollTopBtn.scrolling svg {
    animation: arrowBounce 0.8s ease infinite;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    #scrollTopBtn svg {
        width: 24px;
        height: 24px;
    }
}

.delete-account-section {
    padding: 140px 0 80px;
   
    background: var(--bg-secondary);
    min-height: 100vh;
}

.delete-card {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.delete-header {
    text-align: center;
    margin-bottom: 3rem;
}

.warning-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 123, 95, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.warning-icon svg {
    width: 35px;
    height: 35px;
}

.delete-header h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


.policy-group {
    margin-bottom: 3rem;
}

.policy-group h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.step-box {
    background: var(--bg-secondary);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.step-box h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-box ol {
    padding-left: 1.2rem;
}

.step-box li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}


.email-box {
    background: #F8FAFC;
    border-color: #E2E8F0;
}

.note {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    font-style: italic;
}

.contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-primary);
    color: white;
    padding: 12px 25px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-email-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 123, 95, 0.4);
}

.divider {
    border: 0;
    border-top: 1px dashed var(--border-color);
    margin: 3rem 0;
}


.data-list {
    list-style: none;
    padding: 0;
}

.data-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.data-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.delete-list li::before {
    background: #FF4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.2);
}

.keep-list li::before {
    background: #FFA502;
    box-shadow: 0 0 0 3px rgba(255, 165, 2, 0.2);
}


.retention-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.retention-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.retention-item.highlight {
    background: linear-gradient(135deg, rgba(255, 123, 95, 0.05) 0%, rgba(255, 123, 95, 0.01) 100%);
    border: 1px solid rgba(255, 123, 95, 0.15);
}

.retention-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.timeline-list {
    list-style: none;
    padding: 0;
}

.timeline-list li {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--border-color);
}

.timeline-list .days {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-list .desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}


@media (max-width: 768px) {
    .delete-card {
        padding: 1.5rem;
    }

    .retention-grid {
        grid-template-columns: 1fr;
    }

    .contact-email-btn {
        width: 100%;
        justify-content: center;
    }
}

@keyframes spin-slow {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float-phone {

    0%,
    100% {
        transform: rotate(-5deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-15px);
    }
}

@keyframes float-pet {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



.privacy-section {
    padding: 140px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.privacy-card {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.privacy-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 123, 95, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.privacy-icon svg {
    width: 35px;
    height: 35px;
}

.privacy-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-of-type {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-section li {
    position: relative;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy-section li strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-box {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}

.contact-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.contact-box .contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box .contact-email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


[data-theme="dark"] .contact-box .contact-email-btn {
    background: white;
    color: var(--primary-color);
}

[data-theme="dark"] .contact-box .contact-email-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}


@media (max-width: 768px) {
    .privacy-card {
        padding: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .policy-section li {
        padding: 0.875rem 1.25rem;
    }
}



.terms-section {
    padding: 140px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.terms-card {
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.terms-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 123, 95, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.terms-icon svg {
    width: 35px;
    height: 35px;
}

.terms-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-of-type {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-section li {
    position: relative;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-box {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}

.contact-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-box p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.contact-box .contact-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box .contact-email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


[data-theme="dark"] .contact-box .contact-email-btn {
    background: white;
    color: var(--primary-color);
}

[data-theme="dark"] .contact-box .contact-email-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}


@media (max-width: 768px) {
    .terms-card {
        padding: 1.5rem;
    }

    .terms-header h1 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.25rem;
    }

    .section-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .policy-section li {
        padding: 0.875rem 1.25rem;
    }
}