@font-face {
    font-family: 'Open Sans';
    src: url('../font/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Flicker prevention */
    opacity: 1;
    transition: opacity 0.2s ease-in;
    overflow-x: hidden; /* Fix horizontal scroll bug */
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body.i18n-loading {
    opacity: 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

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

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.section-title,
.included-title,
.faq-title,
.lifestyle-section h2,
.features h2,
.pricing h1,
.faq h2,
.contact-section h1 {
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: -0.01em;
}

ul {
    list-style: none;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
}

.fade-up {
    transform: translateY(30px);
}

.reveal.fade-up.is-visible {
    transform: translateY(0);
}

.fade-in {
    transform: scale(0.95);
}

.reveal.fade-in.is-visible {
    transform: scale(1);
}

/* Staggered Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Shared Layout Utilities */
.page-hero-standard {
    text-align: center;
    padding-top: var(--hero-padding-top);
    padding-bottom: var(--hero-padding-bottom);
    background: var(--hero-bg);
}

.page-hero-standard .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--hero-gap-subtitle);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    font-family: 'Open Sans', sans-serif !important;
}

.page-hero-standard .section-title span {
    color: var(--primary);
}

.page-hero-standard .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif !important;
}

.page-content-standard {
    margin-top: var(--content-gap-top);
    position: relative;
    z-index: 10;
}