.accent-btn, .bar-link, .store-btn, .store-img, .phones-mockup, .app-logo, footer a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}
/* --- Mobile Responsive Additions --- */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    background: #FFF7ED;
}
.main-header, footer {
    width: 100%;
    box-sizing: border-box;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 24px 8px 0 8px;
}
.hero-content {
    flex: 1 1 320px;
    min-width: 240px;
    max-width: 420px;
    padding: 0 8px;
}
.hero-image {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 340px;
    padding: 0 8px;
    display: flex;
    justify-content: center;
}
.phones-mockup {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}
.app-logo {
    width: 48px;
    height: 48px;
}
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: center;
        padding: 16px 0 0 0;
    }
    .hero-content, .hero-image {
        max-width: 100%;
        padding: 0 4vw;
    }
}
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    .main-header {
        padding: 8px 0;
    }
    .hero {
        padding: 8px 0 0 0;
    }
    .hero-content {
        padding: 0 2vw;
        text-align: center;
    }
    .hero-image {
        padding: 0 2vw 16px 2vw;
    }
    .phones-mockup {
        max-width: 90vw;
    }
    .app-logo {
        width: 36px;
        height: 36px;
    }
    h1 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
}
.policy-container {
    max-width: 700px;
    margin: 48px auto 48px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(169,82,45,0.10);
    padding: 40px 32px;
}
.policy-container h1 {
    font-family: var(--font-bold);
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 24px;
    text-align: center;
}
.policy-container h2 {
    font-family: var(--font-bold);
    color: var(--blacktheme);
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 8px;
}
.policy-container p {
    font-family: var(--font-main);
    color: var(--blacktheme);
    font-size: 1rem;
    margin-bottom: 16px;
}
.policy-container a {
    color: var(--primary);
    text-decoration: underline;
}
.topbar-title {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    color: var(--blacktheme);
    margin-left: 8px;
        letter-spacing: -0.5px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.18s cubic-bezier(.4,1.4,.6,1.0);
}
.topbar-title:hover {
    transform: scale(1.07);
    z-index: 2;
}
/* Scale-up effect for text elements */
h1, h2, h3, p, li, span {
    transition: transform 0.18s cubic-bezier(.4,1.4,.6,1.0);
    display: inline-block;
}
h1:hover, h2:hover, h3:hover, p:hover, li:hover, span:hover {
    transform: scale(1.07);
    z-index: 2;
}
/* Scale-up effect for interactive items */
.accent-btn,
.bar-link,
.store-btn,
.store-img,
.phones-mockup,
.app-logo,
footer a {
    transition: transform 0.18s cubic-bezier(.4,1.4,.6,1.0);
}
.accent-btn:hover,
.accent-btn:active,
.bar-link:hover,
.bar-link:active,
.store-btn:hover,
.store-btn:active,
.store-img:hover,
.store-img:active,
.phones-mockup:hover,
.phones-mockup:active,
.app-logo:hover,
.app-logo:active,
footer a:hover,
footer a:active {
    transform: scale(1.07);
    z-index: 2;
}
.footer-links {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 8px;
}
.primary-bold {
    color: var(--primary);
    font-family: var(--font-bold);
    font-weight: 700;
}
.store-btn {
    display: inline-block;
    margin: 24px 0 12px 0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(169,82,45,0.10);
    transition: box-shadow 0.2s;
}
.store-btn:hover {
    box-shadow: 0 4px 16px rgba(169,82,45,0.18);
}
.store-img {
    height: 48px;
    width: auto;
    display: block;
}
.button-bar {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 10px;
}
.bar-link {
    color: var(--primary);
    background: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(169,82,45,0.07);
}
.bar-link:hover {
    background: var(--primary);
    color: #fff;
}
/* Theme Colors */
:root {
    --app-bg: #FFF7ED;
    --primary: #C97A53;
    --dark: #A0522D;
    --blacktheme: #31221F;
    --font-main: 'Poppins-Regular', Arial, sans-serif;
    --font-light: 'Poppins-Light', Arial, sans-serif;
    --font-bold: 'Poppins-Bold', Arial, sans-serif;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Poppins-Light';
    src: url('Poppins-Light.ttf') format('truetype');
    font-weight: 300;
}
@font-face {
    font-family: 'Poppins-Bold';
    src: url('Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

body {
    background: var(--app-bg);
    font-family: var(--font-main);
    color: var(--blacktheme);
    margin: 0;
    padding: 0;
}

.main-header {
    width: 100%;
    background: var(--app-bg);
    box-shadow: 0 2px 8px rgba(169,82,45,0.07);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 18px 32px;
}
.app-logo {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(169,82,45,0.10);
}
.header-nav {
    display: flex;
    gap: 18px;
}
.header-nav a {
    color: var(--blacktheme);
    background: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}
.header-nav a:hover {
    background: var(--primary);
    color: #fff;
}
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 48px 32px;
    margin: 32px auto 0 auto;
    max-width: 1200px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}
.hero-content {
    max-width: 600px;
}
.hero-content h1 {
    font-family: var(--font-bold);
    font-size: 2.6rem;
    color: var(--blacktheme);
    margin-bottom: 18px;
}
.hero-content p {
    font-family: var(--font-light);
    font-size: 1.2rem;
    color: var(--blacktheme);
    margin-bottom: 28px;
}
.accent-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-family: var(--font-bold);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(169,82,45,0.10);
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}
.accent-btn:hover {
    background: var(--blacktheme);
}
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phones-mockup {
    width: 600px;
    max-width: 100vw;
    border-radius: 0;
    box-shadow: none;
    margin: 0 24px;
}

.features {
    max-width: 600px;
    margin: 48px auto 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 18px rgba(169,82,45,0.10);
    padding: 32px 24px;
    text-align: center;
}
.features h2 {
    font-family: var(--font-bold);
    color: var(--blacktheme);
    font-size: 2rem;
    margin-bottom: 18px;
}
.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features li {
    font-family: var(--font-main);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
footer {
    background: var(--app-bg);
    color: var(--blacktheme);
    text-align: center;
    padding: 14px 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-top: 1px solid #f3e2d3;
    margin-top: 48px;
}
