/* ===== COMMUNITY DEALS POST - STYLES ===== */
/* Colors: Blue #1a4d8c, Green #2d8a3e, Yellow #f5b800, Dark #1a2b4c, Cream #f9f7f0 */

:root {
    --blue: #1a4d8c;
    --blue-dark: #123669;
    --blue-light: #2a6bb5;
    --green: #2d8a3e;
    --green-dark: #1f6b2d;
    --green-light: #3ea850;
    --yellow: #f5b800;
    --yellow-dark: #d9a000;
    --dark: #1a2b4c;
    --dark-light: #2d3f5e;
    --cream: #f9f7f0;
    --cream-dark: #efede6;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --black: #000000;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.75rem 1.5rem;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text-only {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--dark);
}

.logo-img-big {
    width: 200px;
    height: auto;
    object-fit: contain;
}

.logo .logo-img-big {
    background: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    max-height: 90px;
    width: auto;
}

.logo .logo-img-big:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.logo-img-round {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.logo-img-round:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.logo-community { color: var(--blue); }
.logo-deals { color: var(--green); }
.logo-post { color: var(--blue); }

.main-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.main-nav a:hover {
    background: var(--cream);
    color: var(--blue);
}

.nav-cta {
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    letter-spacing: 0.5px;
}

.starter-cta {
    background: var(--dark) !important;
    color: var(--white) !important;
}

.starter-cta:hover {
    background: var(--blue) !important;
}

.premier-cta {
    background: var(--green) !important;
    color: var(--white) !important;
}

.premier-cta:hover {
    background: var(--green-dark) !important;
}

.nav-cta.active {
    box-shadow: 0 0 0 2px var(--yellow);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ===== HERO BANNER ===== */
.hero-banner {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: cover;
    object-position: center;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 3rem 0 4rem;
    text-align: center;
}

.hero-title {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 1.75rem;
    color: var(--white);
    opacity: 0.95;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto 1.25rem;
}

.hero-stat-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    flex: 1;
    min-width: 220px;
    max-width: 380px;
    box-shadow: var(--shadow);
}

.hero-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.9;
}

.hero-free-line {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}

.exclusivity-note {
    font-size: 0.85rem;
    color: var(--white);
    opacity: 0.85;
    font-style: italic;
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

.hero-save-banner {
    background: var(--yellow);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    max-width: 700px;
    margin: 0 auto 1.75rem;
    box-shadow: var(--shadow);
}

.hero-save-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.hero-save-subtitle {
    font-size: 0.95rem;
    color: var(--dark);
    opacity: 0.9;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.cta-subtext {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-starter {
    background: var(--white);
    color: var(--black);
    box-shadow: var(--shadow);
}

.btn-starter:hover {
    background: var(--yellow);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-premier {
    background: var(--green);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-premier:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Video CTA */
.hero-video-cta {
    margin-top: 1.5rem;
}

.btn-video {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-video:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.play-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* Video Modal */
.video-modal-content {
    max-width: 800px;
    padding: 1.5rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--dark);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Order button in mailer hero */
.btn-order-starter {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1.5rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-order-starter:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer round logo */
.footer-logo-round {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.cta-subtext {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== VIDEO COMPARISON SECTION ===== */
.video-comparison {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
}

.video-comparison .section-title {
    margin-bottom: 2rem;
}

.video-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-text p {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.video-text p:last-child {
    margin-bottom: 0;
}

.video-player {
    position: relative;
}

.video-thumb {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.video-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0,0,0,0.15);
}

.video-thumb-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 220px;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: all 0.3s;
}

.video-thumb:hover .play-overlay {
    background: rgba(0,0,0,0.45);
}

.play-circle {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: var(--white);
    color: var(--blue);
    border-radius: 50%;
    font-size: 1.8rem;
    padding-left: 6px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.video-thumb:hover .play-circle {
    background: var(--yellow);
    transform: scale(1.1);
}

.play-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ===== PRE-FORM INFO ===== */
.pre-form-info {
    padding: 4rem 0 0;
    background: var(--cream);
}

.pre-form-info .section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.pre-form-note {
    background: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    color: var(--dark);
}

.pre-form-note strong {
    color: var(--blue);
}

/* ===== SECTIONS COMMON ===== */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ===== EDITIONS ===== */
.editions {
    padding: 5rem 0;
    background: var(--cream);
}

.editions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.edition-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.edition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.edition-card.featured {
    border-color: var(--yellow);
    position: relative;
}

.edition-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.edition-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.edition-card h3 {
    color: var(--blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.edition-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.edition-card ul {
    list-style: none;
    text-align: left;
    color: var(--gray);
    font-size: 0.9rem;
}

.edition-card ul li {
    padding: 0.35rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.edition-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* ===== WHY US ===== */
.why-us {
    padding: 5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--cream);
    border-radius: 50%;
}

.feature h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.feature p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== SAVINGS ===== */
.savings {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.savings .section-title {
    color: var(--white);
}

.savings .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.savings-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.savings-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.savings-card.featured-savings {
    background: rgba(255,255,255,0.15);
    border-color: var(--yellow);
    position: relative;
}

.savings-card.featured-savings::before {
    content: "BEST VALUE";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    letter-spacing: 1px;
}

.savings-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.savings-percent {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--green-light);
    line-height: 1;
}

.savings-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.75rem;
}

.savings-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.savings-bonus {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 6px;
    display: inline-block;
}

.savings-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: rgba(255,255,255,0.7);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 5rem 0;
    background: var(--cream);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 180px;
    flex: 1;
    min-width: 150px;
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--gray);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--blue);
    margin-top: 1.5rem;
    opacity: 0.5;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 1rem 0 3rem;
    text-align: center;
    background: none;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== MAILER PAGES ===== */
.mailer-hero {
    padding: 4rem 0;
    text-align: center;
}

.starter-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue-dark) 100%);
    color: var(--white);
}

.premier-hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.mailer-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.starter-badge {
    background: var(--yellow);
    color: var(--dark);
}

.premier-badge {
    background: var(--yellow);
    color: var(--dark);
}

.mailer-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mailer-desc {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.sample-placeholder {
    max-width: 500px;
    margin: 0 auto;
    padding: 4rem 2rem;
    border-radius: 16px;
    border: 3px dashed rgba(255,255,255,0.3);
    text-align: center;
}

.sample-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.placeholder-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.starter-placeholder {
    background: rgba(255,255,255,0.05);
}

.premier-placeholder {
    background: rgba(255,255,255,0.05);
}

.sample-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sample-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SAMPLES SECTION ===== */
.samples-section {
    padding: 4rem 0;
    background: var(--white);
}

.samples-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.sample-side {
    text-align: center;
}

.side-label {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.sample-side .sample-img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--cream-dark);
}

.sample-placeholder {
    background: var(--cream);
    border: 2px dashed var(--gray-light);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sample-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.placeholder-note {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-style: italic;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 4rem 0;
    background: var(--white);
}

.size-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--cream-dark);
}

.size-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--dark);
}

.size-header h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.size-specs {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

.pricing-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.price-table {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.price-table h4 {
    color: var(--blue);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--cream);
}

.price-row:last-child {
    border-bottom: none;
}

.price-qty {
    font-weight: 600;
    color: var(--dark);
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--green);
}

.pricing-note {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.pricing-note p {
    margin-bottom: 0.75rem;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

/* ===== VIEW BUTTONS ===== */
.view-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.btn-view {
    background: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
}

.btn-view:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-content h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    color: var(--dark);
}

/* ===== FORM MODAL ===== */
.form-modal-content {
    max-width: 700px;
    padding: 2rem;
}

.form-modal-content .progress-bar {
    margin-bottom: 1.5rem;
}

.form-modal-content .survey-form {
    max-width: 100%;
}

/* ===== VIEW BUTTONS CENTERED IN SIZE-CARD ===== */
.size-card .view-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0 0 12px 12px;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.progress-step {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: var(--cream);
    transition: all 0.3s;
}

.progress-step.active {
    background: var(--blue);
    color: var(--white);
}

.progress-line {
    width: 40px;
    height: 2px;
    background: var(--cream-dark);
}

/* ===== FORM NAVIGATION ===== */
.form-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--cream);
}

.btn-next {
    background: var(--blue);
    color: var(--white);
}

.btn-next:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-back {
    background: var(--cream);
    color: var(--dark);
}

.btn-back:hover {
    background: var(--cream-dark);
}

.hidden {
    display: none !important;
}

/* ===== SURVEY FORM ===== */
.survey-section {
    padding: 5rem 0;
    background: var(--cream);
}

.survey-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.form-section h3 {
    color: var(--blue);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--cream);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400 !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 0.9rem !important;
}

.radio-label input {
    width: auto;
    accent-color: var(--blue);
}

.form-submit {
    text-align: center;
    padding: 2rem 0;
}

.btn-submit {
    background: var(--green);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1.25rem 3.5rem;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    background: var(--yellow);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
}

.footer-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: var(--yellow);
    margin-bottom: 0.25rem;
}

.footer-url {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-copy {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .editions-grid,
    .features-grid,
    .savings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .step {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .samples-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 0.5rem 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.25rem;
        padding: 1rem 0;
        background: var(--white);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 0.75rem;
        text-align: center;
    }

    .editions-grid,
    .features-grid,
    .savings-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .banner-img {
        max-height: 200px;
    }

    .mailer-hero h1 {
        font-size: 1.8rem;
    }

    .video-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .video-thumb-img {
        max-height: 180px;
    }

    .pre-form-info {
        padding: 3rem 1rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2.5rem 0;
    }

    .hero-highlight-box {
        padding: 1rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .sample-placeholder {
        padding: 2.5rem 1rem;
    }
}
