header {
    height: 65px;
}

header div,
footer div {
   /*height: 100%;*/
    min-height: max-content;
}

header img,
footer img {
    height: 50px;
}

.gradient-text {
    background: linear-gradient(to right, #fd6f3b, #ff936b, #ff9b6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #fd6f3b, #ffb866);
}

.gradient-bg-hero {
    background: linear-gradient(135deg, #fff0e6, #ffffff, #fff5ee);
}

.gradient-bg-cta {
    background: linear-gradient(to right, #fd6f3b, #ffb866, #ff9677);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.mobile-menu {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.backdrop-blur {
    backdrop-filter: blur(12px);
}

/* Placeholder image style */
.placeholder-img {
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    overflow: hidden;
}

.placeholder-img.phone {
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #fff0e6, #fff5ee);
}

.placeholder-img.feature {
    border-radius: 1rem;
    background: linear-gradient(135deg, #fff0e6, #fff5ee);
}

.placeholder-img.avatar {
    border-radius: 9999px;
    background: #e5e7eb;
}

/* Mobile menu styles - simplified */
.mobile-menu-hidden {
    display: none;
}

.mobile-menu-visible {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

.error-page {
    padding: 6rem;
    text-align: center;
}
.error-page a {
    font-weight: 600;
    text-decoration: underline;
}

/* Privacy */
.content-section {
    scroll-margin-top: 100px;
}

.content h2 {
    color: #fd6f3b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content strong {
    color: #fd6f3b;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #fff0e6, #fff5ee);
    border-left: 4px solid #fd6f3b;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
}