/* =====================================================================
   FIELD READY CO — MAIN STYLESHEET
   ===================================================================== */

/* === LAYOUT UTILITIES === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}
.container.narrow { max-width: 800px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.mt-sm  { margin-top: 12px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 40px; }
.mt-xl  { margin-top: 64px; }
.mb-sm  { margin-bottom: 12px; }

/* Background utilities */
.bg-navy       { background-color: var(--navy); }
.bg-light-grey { background-color: var(--light-grey); }
.bg-orange     { background-color: var(--orange); }

/* Text utilities */
.text-white      { color: var(--white); }
.text-light-grey { color: #B8C5CF; }
.text-orange     { color: var(--orange); }
.text-navy       { color: var(--navy); }

/* === SKIP LINK === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    border-radius: 4px;
    font-weight: 600;
    transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
p  { margin-bottom: 1em; line-height: 1.7; }
p:last-child { margin-bottom: 0; }
.lead-text { font-size: 1.2rem; font-weight: 500; line-height: 1.7; }
.section-sub { font-size: 1.1rem; color: #666; margin-top: 12px; }
.section-header { margin-bottom: 0; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1;
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; display: block; }
.btn-orange {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-orange:hover {
    background: #c96a1a;
    border-color: #c96a1a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(224,123,42,0.35);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover {
    background: #0a1a2e;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* === SITE HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
}
.site-logo a { display: flex; align-items: center; }
.site-logo img { max-width: 180px; height: auto; }

/* Nav */
.primary-nav { flex: 1; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}
.nav-menu li a {
    display: block;
    padding: 8px 14px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all var(--transition);
    text-decoration: none;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
    color: var(--orange);
    background: rgba(255,255,255,0.08);
}
.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 10px 20px; font-size: 0.9rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    position: relative;
    background: var(--navy);
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,33,55,0.96) 0%, rgba(13,33,55,0.82) 100%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #B8C5CF;
    margin-bottom: 36px;
    max-width: 640px;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 28px;
    color: #8ea8bc;
    font-size: 0.9rem;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* === PAGE HERO (inner pages) === */
.page-hero { padding: 64px 0; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero-sub { font-size: 1.1rem; max-width: 640px; margin-top: 0; }

/* === TRUST BAR === */
.trust-bar { padding: 32px 0; border-bottom: 1px solid var(--border-grey); }
.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}
.trust-icon { font-size: 1.5rem; }

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* === PRODUCT CARD === */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-grey);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.product-card-header {
    background: var(--navy);
    padding: 20px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-icon { font-size: 2rem; }
.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(224,123,42,0.15);
    padding: 4px 10px;
    border-radius: 20px;
}
.product-card-body { padding: 20px; flex: 1; }
.product-name {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    font-family: var(--font-head);
    margin-bottom: 12px;
}
.product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}
.product-card-footer { padding: 16px 20px 20px; border-top: 1px solid var(--border-grey); }

/* Buy Buttons */
.buy-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.btn-buy {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-head);
    text-decoration: none;
    border: 2px solid;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-etsy {
    color: #F1641E;
    border-color: #F1641E;
    background: transparent;
}
.btn-etsy:hover { background: #F1641E; color: var(--white); }
.btn-payhip {
    color: #5a3dc8;
    border-color: #5a3dc8;
    background: transparent;
}
.btn-payhip:hover { background: #5a3dc8; color: var(--white); }
.btn-gumroad {
    color: #36a9ae;
    border-color: #36a9ae;
    background: transparent;
}
.btn-gumroad:hover { background: #36a9ae; color: var(--white); }

/* === WHITE GLOVE TEASER === */
.wg-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.wg-left h2 { color: var(--white); }
.feature-list { list-style: none; }
.feature-list li {
    color: #B8C5CF;
    padding: 8px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.feature-list li:last-child { border-bottom: none; }
.wg-cta-box {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}
.wg-cta-box h3 { color: var(--white); font-size: 1.4rem; }
.wg-cta-box p { color: #B8C5CF; margin-top: 12px; }

/* === WHY SECTION === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.why-item { text-align: center; }
.why-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.why-item h3 { color: var(--navy); margin-bottom: 12px; }
.why-item p { color: #555; font-size: 0.95rem; }

/* === LEAD MAGNET === */
.lead-magnet-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.inline-signup-form { width: 100%; }
.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.form-row .form-input {
    flex: 1;
    min-width: 200px;
}
.form-privacy { font-size: 0.8rem; color: #888; margin-top: 12px; }

/* === STATS BAR === */
.stats-inner {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-head);
    color: var(--orange);
    line-height: 1;
}
.stat-label {
    display: block;
    color: #B8C5CF;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* === BLOG GRID === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-grey);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}
.blog-card-img-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    margin-bottom: 10px;
}
.blog-title { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.blog-title a { color: var(--navy); text-decoration: none; }
.blog-title a:hover { color: var(--orange); }
.blog-meta { font-size: 0.82rem; color: #888; margin-bottom: 10px; }
.blog-excerpt { font-size: 0.9rem; color: #555; flex: 1; }
.blog-read-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.blog-read-more:hover { color: var(--navy); }

/* === CTA BANNER === */
.cta-banner { background: var(--orange); padding: 80px 0; }
.cta-banner-inner { text-align: center; }
.cta-headline { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-sub { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-top: 12px; }
.cta-banner .btn { margin-top: 28px; }

/* === FOOTER === */
.site-footer { background: var(--navy); padding: 80px 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
}
.footer-logo img { max-width: 160px; margin-bottom: 16px; }
.footer-tagline { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-canadian { color: var(--orange); font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; }
.footer-bio { color: #8ea8bc; font-size: 0.88rem; line-height: 1.6; }
.footer-heading {
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #8ea8bc; font-size: 0.9rem; transition: color var(--transition); text-decoration: none; }
.footer-links a:hover { color: var(--orange); }
.footer-view-all { color: var(--orange) !important; font-weight: 600; }
.footer-email { margin-bottom: 20px; }
.footer-email a { color: var(--orange); font-weight: 600; text-decoration: none; }
.footer-email a:hover { color: var(--white); }

/* Social Icons */
.social-icons { display: flex; flex-wrap: wrap; gap: 10px; }
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #8ea8bc;
    transition: all var(--transition);
    text-decoration: none;
}
.social-icon:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.social-icon-dark {
    background: var(--light-grey);
    color: var(--navy);
}
.social-icon-dark:hover { background: var(--orange); color: var(--white); }

/* Footer Bottom */
.footer-bottom {
    margin-top: 64px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copyright { color: #8ea8bc; font-size: 0.88rem; margin: 0; }
.footer-legal { display: flex; gap: 16px; align-items: center; }
.footer-legal a { color: #8ea8bc; font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--orange); }
.footer-legal span { color: rgba(255,255,255,0.2); }

/* === SHOP PAGE === */
.filter-bar {
    background: var(--white);
    border-bottom: 2px solid var(--border-grey);
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: sticky;
    top: 72px;
    z-index: 100;
}
.filter-bar { display: flex; }
.filter-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: var(--font-body);
}
.filter-btn:hover { color: var(--navy); }
.filter-btn.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}
.custom-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 48px;
    border-radius: var(--radius);
    flex-wrap: wrap;
}
.custom-cta-box h2 { margin-bottom: 8px; }

/* === SERVICES PAGE === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.step-item { position: relative; }
.step-number {
    width: 60px;
    height: 60px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-head);
    margin: 0 auto 20px;
}
.step-item h3 { color: var(--navy); margin-bottom: 12px; }
.step-item p { color: #555; font-size: 0.95rem; }

/* Pricing Table */
.pricing-table-wrap { max-width: 600px; margin: 0 auto; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.pricing-table thead { background: var(--navy); }
.pricing-table th {
    padding: 16px 24px;
    color: var(--white);
    text-align: left;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pricing-table tbody tr { border-bottom: 1px solid var(--border-grey); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--light-grey); }
.pricing-table td { padding: 16px 24px; color: var(--dark-grey); font-size: 0.95rem; }
.price-col { font-weight: 700; color: var(--orange); font-family: var(--font-head); }
.pricing-note { color: #666; font-size: 0.88rem; }

/* Forms */
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-grey);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--dark-grey);
    background: var(--white);
    transition: border-color var(--transition);
    appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(224,123,42,0.15);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-file {
    width: 100%;
    padding: 10px;
    font-size: 0.95rem;
    color: var(--dark-grey);
}
.form-hint { font-size: 0.82rem; color: #888; margin-top: 6px; display: block; }
.form-note { color: #666; font-size: 0.9rem; }
.required { color: var(--orange); }
.optional { color: #888; font-weight: 400; font-size: 0.85rem; }

.wg-form, .contact-form, .signup-form { max-width: 100%; }

/* Trust Signals */
.trust-signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.trust-signal-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trust-signal-icon { font-size: 2.5rem; }
.trust-signal-item p { color: #555; font-size: 0.95rem; font-weight: 600; margin: 0; }

/* === FREE RESOURCE PAGE === */
.free-resource-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.benefit-list { list-style: none; }
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-grey);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li span { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.free-resource-badge {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: inline-block;
}
.badge-text { color: var(--white); font-weight: 700; margin: 0; font-size: 1.05rem; }
.signup-box {
    background: var(--white);
    border: 2px solid var(--border-grey);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}
.signup-box h3 { color: var(--navy); margin-bottom: 20px; }

/* === ABOUT PAGE === */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}
.serve-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-grey);
}
.serve-icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.serve-item h3 { font-size: 1rem; color: var(--navy); }
.commitment-box {
    background: var(--light-grey);
    border-left: 4px solid var(--orange);
    padding: 28px 32px;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.commitment-box p { color: #555; margin: 0; }

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.contact-details { list-style: none; }
.contact-details li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-grey);
}
.contact-details li:last-child { border-bottom: none; }
.contact-label { font-weight: 700; color: var(--navy); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-upsell { padding: 20px 0; }
.contact-upsell p { margin: 0; font-size: 0.95rem; }

/* === SINGLE POST === */
.post-header { padding: 64px 0 48px; }
.post-title { margin-bottom: 16px; }
.post-meta { font-size: 0.9rem; }
.post-featured-image { margin: 40px 0; }
.post-featured-image img { border-radius: var(--radius); }
.entry-content h2 { margin: 36px 0 16px; }
.entry-content h3 { margin: 28px 0 12px; }
.entry-content ul, .entry-content ol { padding-left: 28px; margin-bottom: 20px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
    border-left: 4px solid var(--orange);
    margin: 28px 0;
    padding: 20px 28px;
    background: var(--light-grey);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.post-tags { margin-top: 32px; font-size: 0.9rem; color: #666; }
.social-share { border-top: 1px solid var(--border-grey); padding-top: 24px; }
.share-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-share {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-head);
    transition: all var(--transition);
}
.btn-share-x { background: #000; color: var(--white); }
.btn-share-x:hover { background: #333; color: var(--white); }
.btn-share-fb { background: #1877F2; color: var(--white); }
.btn-share-fb:hover { background: #0d6efd; color: var(--white); }
.btn-share-li { background: #0A66C2; color: var(--white); }
.btn-share-li:hover { background: #004182; color: var(--white); }
.author-bio {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--light-grey);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 32px;
}
.author-bio img { border-radius: 50%; flex-shrink: 0; }
.author-name { display: block; margin-bottom: 8px; font-size: 1rem; }

/* Pagination */
.pagination { text-align: center; }
.page-numbers {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.page-numbers a, .page-numbers span {
    display: inline-block;
    padding: 8px 14px;
    border: 2px solid var(--border-grey);
    border-radius: 6px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
}
.page-numbers a:hover, .page-numbers .current {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }

/* === HOW IT WORKS === */
.how-it-works h2 { text-align: center; }

/* === 404 PAGE === */
.error-404 {
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.error-404-inner { padding: 80px 24px; }
.error-number {
    display: block;
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
}
.error-sub { font-size: 1.1rem; margin-top: 12px; }
.error-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === COMMENTS === */
.comments-section .comment-form input[type="text"],
.comments-section .comment-form input[type="email"],
.comments-section .comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-grey);
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
}
.comments-section .comment-form input[type="submit"] {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1rem;
    transition: background var(--transition);
}
.comments-section .comment-form input[type="submit"]:hover { background: #c96a1a; }
.comment-list { margin-bottom: 40px; }
.comment-list .comment { padding: 20px 0; border-bottom: 1px solid var(--border-grey); }

/* === SCROLL ANIMATIONS === */
.frc-anim {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.frc-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .frc-anim { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   RESPONSIVE — TABLET (768px – 1199px)
   ===================================================================== */
@media (max-width: 1199px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid    { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .serve-grid   { grid-template-columns: repeat(2, 1fr); }
    .wg-inner     { gap: 40px; }
    .steps-grid   { gap: 24px; }
    .trust-signals-grid { gap: 20px; }
}

/* =====================================================================
   RESPONSIVE — MOBILE (< 768px)
   ===================================================================== */
@media (max-width: 767px) {
    .section-pad    { padding: 56px 0; }
    .section-pad-sm { padding: 36px 0; }

    /* Header */
    .header-inner { height: 64px; }
    .primary-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        z-index: 999;
    }
    .primary-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-menu { flex-direction: column; align-items: flex-start; gap: 0; }
    .nav-menu li { width: 100%; }
    .nav-menu li a {
        padding: 14px 8px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
        width: 100%;
    }
    .header-cta { display: none; }
    .hamburger  { display: flex; }

    /* Hero */
    .hero { padding: 64px 0 56px; }
    .hero-headline { font-size: 2rem; }
    .hero-sub      { font-size: 1rem; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns .btn { width: 100%; text-align: center; }
    .hero-trust { flex-direction: column; gap: 8px; font-size: 0.85rem; }

    /* Trust Bar */
    .trust-bar-inner { gap: 24px; }

    /* Grids */
    .product-grid { grid-template-columns: 1fr; }
    .blog-grid    { grid-template-columns: 1fr; }
    .blog-grid-2col { grid-template-columns: 1fr; }
    .why-grid     { grid-template-columns: 1fr; }
    .steps-grid   { grid-template-columns: 1fr; }
    .serve-grid   { grid-template-columns: repeat(2, 1fr); }
    .trust-signals-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

    /* White Glove */
    .wg-inner { grid-template-columns: 1fr; }

    /* Free Resource */
    .free-resource-grid { grid-template-columns: 1fr; gap: 36px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }

    /* Custom CTA */
    .custom-cta-box { flex-direction: column; padding: 32px 24px; text-align: center; }

    /* Buy Buttons */
    .buy-buttons { justify-content: flex-start; }

    /* Filter bar */
    .filter-btn { padding: 14px 16px; font-size: 0.82rem; }

    /* Stats */
    .stats-inner { gap: 32px; }

    /* Page Hero */
    .page-hero { padding: 48px 0; }

    /* Errors */
    .error-btns { flex-direction: column; align-items: center; }
    .error-btns .btn { width: 100%; max-width: 280px; }

    /* Form row */
    .form-row { flex-direction: column; }
    .form-row .form-input { min-width: 100%; }

    /* Author bio */
    .author-bio { flex-direction: column; }
}
