/*
Theme Name: WP SEO Agent
Theme URI: https://wpseoagent.com.au/
Author: WP SEO Agent
Author URI: https://wpseoagent.com.au/
Description: Custom theme for WP SEO Agent marketing site. AI-powered SEO plugin for WordPress.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpseoagent
*/

/* ============================================================
   WP SEO AGENT - Stylesheet
   Palette: Navy (#1a2744), Cyan (#0ea5e9), Orange (#f97316),
   Green (#22c55e), White-dominant, light & bright
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #1e293b;
}

a { color: #0ea5e9; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: #0284c7; }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 8px;
    white-space: nowrap;
}

.btn-cta {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.btn-cta:hover {
    background: #ea580c;
    color: #fff;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    color: #1e293b;
    border-color: #e2e8f0;
}
.btn-outline:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.btn-outline-dark {
    background: transparent;
    color: #f97316;
    border-color: #f97316;
}
.btn-outline-dark:hover {
    background: #f97316;
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---- SECTIONS ---- */
.section { padding: 90px 0; }
.bg-light { background: #f0f9ff; }
.bg-warm { background: #fff7ed; }
.bg-white { background: #fff; }

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0ea5e9;
    margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.4rem; margin-bottom: 14px; }
.section-subtitle { font-size: 1.15rem; color: #64748b; max-width: 640px; margin: 0 auto; }

/* ---- GRIDS ---- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---- CARDS ---- */
.card {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.08);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #2563eb;
    transition: box-shadow 0.3s ease;
}
/* Offset header below WP admin bar when logged in */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) {
    .admin-bar #site-header { top: 46px; }
}
#site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-img { height: 44px; width: auto; max-height: 44px; object-fit: contain; }
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
}
.logo-text span { font-weight: 400; }

#main-nav ul { display: flex; gap: 2px; align-items: center; }

#main-nav a {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
#main-nav a:hover,
#main-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.header-cta {
    background: #f97316;
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 22px !important;
    font-weight: 600 !important;
    border: 2px solid #f97316;
}
.header-cta:hover {
    background: #ea580c !important;
    border-color: #ea580c;
}

/* ---- Nav Auth Buttons ---- */
#main-nav {
    display: flex;
    align-items: center;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    flex-shrink: 0;
}

.btn-nav-auth {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-nav-auth:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
}

.btn-nav-cta {
    background: #f97316;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    border: 2px solid #f97316;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: #ea580c;
    border-color: #ea580c;
    color: #fff !important;
}

.btn-nav-logout {
    color: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    padding: 6px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-nav-logout:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero_bg.png') center center / cover no-repeat;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content { flex: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0ea5e9;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.12;
}

.highlight {
    color: #f97316;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
}
.btn-text-link:hover { color: #0ea5e9; }

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    width: 100%;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
}
.trust-item svg { flex-shrink: 0; }

.hero-image {
    flex: 0 0 600px;
    max-width: 600px;
}
.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(14, 165, 233, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 28px 0;
}
.stats-inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0ea5e9;
    display: block;
}
.stat-label { font-size: 0.85rem; color: #64748b; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-card { text-align: center; }
.problem-mascot { width: 180px; height: 180px; object-fit: contain; margin: 0 auto 20px; }
.problem-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: #1e293b; }
.problem-card p { color: #64748b; font-size: 0.95rem; }

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-blue { background: rgba(14, 165, 233, 0.08); color: #0ea5e9; }
.icon-orange { background: rgba(249, 115, 22, 0.08); color: #f97316; }
.icon-green { background: rgba(34, 197, 94, 0.08); color: #22c55e; }

/* ============================================================
   FEATURES
   ============================================================ */
.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.feature-mascot { width: 120px; height: 120px; object-fit: contain; flex-shrink: 0; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: #64748b; font-size: 0.95rem; }
.feature-highlight { border: 2px solid #0891b2; background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%); }
.feature-highlight h3 { color: #0891b2; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
/* ---- BUILT FOR EVERY STAGE ---- */
.stage-card { text-align: center; padding: 40px 32px; }
.stage-mascot { max-width: 400px; width: 100%; height: auto; object-fit: contain; margin: 0 auto 20px; display: block; }
.stage-card h3 { font-size: 1.5rem; font-weight: 800; color: #0891b2; margin-bottom: 8px; }
.stage-subtitle { color: #64748b; font-size: 0.95rem; margin-bottom: 24px; }
.stage-list { text-align: left; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.stage-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #475569;
}
.stage-list li::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #22c55e;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='7 12.5 10.5 16 17 9'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 2px;
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #0ea5e9, #22c55e);
    border-radius: 3px;
}

.step-item {
    display: flex;
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
}
.step-item:last-child { margin-bottom: 0; }

.step-number {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.step-content h3 { font-size: 1.25rem; margin-bottom: 8px; padding-top: 4px; }
.step-content p { color: #64748b; font-size: 0.95rem; }

/* ============================================================
   AI BRAIN
   ============================================================ */
/* ---- CONTENT WRITER SHOWCASE ---- */
.cw-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.cw-type-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.cw-type-card:hover {
    border-color: #0891b2;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.cw-type-mascot {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.cw-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: #ecfeff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cw-type-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #1e293b;
}

.cw-type-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

.cw-workflow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 40px;
}

.cw-workflow::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, #0891b2, #22c55e);
    z-index: 0;
}

.cw-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cw-step-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0891b2;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(8,145,178,0.3);
}

.cw-step h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #1e293b;
}

.cw-step p {
    font-size: 0.82rem;
    color: #64748b;
    max-width: 180px;
    margin: 0 auto;
    line-height: 1.45;
}

.cw-result {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfeff 100%);
    border: 2px solid #e0f2fe;
    border-radius: 16px;
    padding: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cw-version {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.cw-version-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.cw-version:nth-child(1) .cw-version-label { color: #0891b2; }
.cw-version:nth-child(2) .cw-version-label { color: #f97316; }
.cw-version:nth-child(3) .cw-version-label { color: #22c55e; }

.cw-version h4 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.35;
}

.cw-version-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 10px;
}

.cw-version-stats span {
    font-weight: 600;
}

.cw-score-bar {
    height: 4px;
    border-radius: 2px;
    background: #e2e8f0;
    margin-top: 8px;
}

.cw-score-fill {
    height: 100%;
    border-radius: 2px;
}

.cw-version:nth-child(1) .cw-score-fill { width: 70%; background: #f59e0b; }
.cw-version:nth-child(2) .cw-score-fill { width: 80%; background: #22c55e; }
.cw-version:nth-child(3) .cw-score-fill { width: 90%; background: #22c55e; }

@media (max-width: 1024px) {
    .cw-types { grid-template-columns: repeat(2, 1fr); }
    .cw-workflow { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .cw-workflow::before { display: none; }
    .cw-result { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .cw-types { grid-template-columns: 1fr; }
    .cw-workflow { grid-template-columns: 1fr; }
}

.brain-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}
.brain-layer {
    padding: 28px 32px;
    border-radius: 14px;
    position: relative;
}
.brain-layer h3 { font-size: 1.1rem; margin-bottom: 6px; }
.brain-layer p { font-size: 0.9rem; }
.brain-layer-1 { background: #eff6ff; border: 2px solid #bfdbfe; color: #1e40af; }
.brain-layer-1 h3 { color: #1e40af; }
.brain-layer-2 { background: #ecfdf5; border: 2px solid #a7f3d0; color: #065f46; margin-top: -8px; margin-left: 20px; margin-right: 20px; z-index: 1; }
.brain-layer-2 h3 { color: #065f46; }
.brain-layer-3 { background: #fff7ed; border: 2px solid #fed7aa; color: #9a3412; margin-top: -8px; margin-left: 40px; margin-right: 40px; z-index: 2; }
.brain-layer-3 h3 { color: #9a3412; }

.brain-arrow {
    text-align: center;
    font-size: 1.2rem;
    color: #94a3b8;
    padding: 4px 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
}
.billing-toggle span { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600; color: #64748b; }
.billing-toggle .active-billing { color: #1e293b; }
.toggle-switch {
    width: 52px;
    height: 28px;
    background: #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}
.toggle-switch.active { background: #0ea5e9; }
.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.toggle-switch.active::after { transform: translateX(24px); }
.save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-card {
    text-align: center;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}
.pricing-card.popular {
    border: 2px solid #f97316;
    transform: scale(1.04);
    box-shadow: 0 8px 40px rgba(249, 115, 22, 0.1);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}
.pricing-header h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.5px; color: #0891b2; }
.pricing-desc { font-size: 0.9rem; color: #64748b; margin-bottom: 16px; }

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 4px;
}
.price span { font-size: 1.1rem; font-weight: 500; color: #94a3b8; }
.price.price-annual { display: none; }
.annual-active .price.price-monthly { display: none; }
.annual-active .price.price-annual { display: block; }

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
    flex-grow: 1;
}
.pricing-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 16px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pricing-note { text-align: center; margin-top: 20px; color: #64748b; font-size: 0.9rem; }

.payment-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
}
.payment-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 400;
}
.payment-label strong { color: #635bff; font-weight: 700; }
.payment-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-logo {
    height: 45px;
    width: auto;
    border-radius: 6px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.section-cta {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    padding: 60px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #fff;
}

.cta-mascot {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 16px rgba(14, 165, 233, 0.3));
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    padding: 8px;
}

.cta-content h2 { color: #fff; font-size: 1.6rem; margin-bottom: 6px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    gap: 16px;
}
.faq-question svg { flex-shrink: 0; transition: transform 0.3s ease; color: #0ea5e9; }
.faq-question:hover { color: #0ea5e9; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 28px 22px; color: #64748b; font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   GUARANTEE BADGE
   ============================================================ */
.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 500px;
    margin: 30px auto 0;
    padding: 20px 28px;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    text-align: left;
}
.guarantee-badge svg { flex-shrink: 0; color: #16a34a; }
.guarantee-badge p { font-size: 0.92rem; color: #166534; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ---- ENQUIRY FORM ---- */
.enquiry-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group:last-child:not(.form-row .form-group) { margin-bottom: 36px; }
.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
    background: #fff;
}
.form-group textarea { resize: vertical; }
.form-status {
    margin-top: 16px;
    font-size: 0.95rem;
    text-align: center;
}
.form-status.success { color: #22c55e; }
.form-status.error { color: #ef4444; }

/* ---- CONTACT FORM 7 OVERRIDES ---- */
.wpcf7 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.wpcf7 .form-group { display: flex; flex-direction: column; }
.wpcf7 .form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
    background: #fff;
}
.wpcf7 textarea { resize: vertical; }
.wpcf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #f97316;
    background: #f97316;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.wpcf7 input[type="submit"]:hover {
    background: #ea580c;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}
/* Remove CF7 default wrapper spacing */
.wpcf7 .wpcf7-form-control-wrap { display: block; }
.wpcf7 br { display: none; }
/* CF7 validation messages */
.wpcf7 .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 0.82rem;
    margin-top: 4px;
}
.wpcf7 .wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    border: none;
}
.wpcf7 .wpcf7-mail-sent-ok {
    background: #f0fdf4;
    color: #22c55e;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
    background: #fef2f2;
    color: #ef4444;
}
.wpcf7 .wpcf7-spinner { margin-left: 12px; }
@media (max-width: 768px) {
    .wpcf7 .form-row { grid-template-columns: 1fr; }
}

#site-footer {
    background: #1e293b;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.5); }
.footer-logo { height: 42px; width: auto; max-height: 42px; object-fit: contain; }
.footer-logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; margin-top: 10px; }

.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0ea5e9;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links li { padding: 5px 0; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: #0ea5e9; }

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-pay-logo {
    height: 33px;
    width: auto;
    opacity: 0.5;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}
.footer-pay-logo:hover { opacity: 0.8; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.85rem; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: #1d4ed8; box-shadow: 0 0 20px rgba(37, 99, 235, 0.5); }

/* ============================================================
   PAGE & POST TEMPLATES
   ============================================================ */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-main {
    margin-top: 75px;
    padding: 60px 0;
}

.page-title {
    font-size: 2.4rem;
    margin-bottom: 28px;
    color: #1e293b;
}

.post-meta {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
}

.post-thumbnail {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.entry-content p {
    margin-bottom: 1.2em;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.2em;
    padding-left: 2em;
    list-style: disc;
}

.entry-content ol {
    list-style: decimal;
}

.entry-content img {
    border-radius: 8px;
    margin: 1.5em 0;
}

.entry-content a {
    color: #0ea5e9;
    text-decoration: underline;
}

.entry-content blockquote {
    border-left: 4px solid #0ea5e9;
    padding: 16px 24px;
    margin: 1.5em 0;
    background: #f0f9ff;
    border-radius: 0 8px 8px 0;
}

/* ============================================================
   WOOCOMMERCE — GENERAL
   ============================================================ */
.woocommerce-page .page-main {
    margin-top: 75px;
    padding: 40px 0 80px;
    background: #f8fafc;
    min-height: 60vh;
}

.woocommerce .container {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

/* Page title for WooCommerce pages */
.woocommerce-page .page-main .container > h1,
.woocommerce-page .page-main .container > .woocommerce > h1,
.woocommerce-page .woocommerce-MyAccount-content > h2,
.woocommerce-page .woocommerce-MyAccount-content > h3 {
    color: #1e293b;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ============================================================
   WOOCOMMERCE — MY ACCOUNT NAVIGATION
   ============================================================ */
.woocommerce-MyAccount-navigation {
    float: none !important;
    width: 100% !important;
    margin-bottom: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #e2e8f0;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-MyAccount-navigation ul li::before {
    display: none !important;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 14px 24px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: #0ea5e9;
    background: #f0f9ff;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
    background: #f0f9ff;
}

/* ============================================================
   WOOCOMMERCE — MY ACCOUNT CONTENT
   ============================================================ */
.woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 32px 40px;
    color: #334155;
    line-height: 1.7;
}

.woocommerce-MyAccount-content p {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 1em;
}

.woocommerce-MyAccount-content a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.woocommerce-MyAccount-content a:hover {
    color: #0284c7;
    text-decoration: underline;
}

.woocommerce-MyAccount-content mark,
.woocommerce-MyAccount-content .woocommerce-message {
    background: #f0f9ff;
    color: #0c4a6e;
}

/* ============================================================
   WOOCOMMERCE — FORMS (Edit Account, Address, etc.)
   ============================================================ */
.woocommerce form .form-row {
    margin-bottom: 16px;
}

.woocommerce form .form-row label {
    display: block;
    margin-bottom: 6px;
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

/* ============================================================
   WOOCOMMERCE — BUTTONS
   ============================================================ */
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce .button,
.woocommerce #respond input#submit {
    background: #f97316 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    font-family: 'Montserrat', sans-serif !important;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease !important;
    text-decoration: none !important;
    display: inline-block;
    line-height: 1.4 !important;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce .button:hover,
.woocommerce #respond input#submit:hover {
    background: #ea580c !important;
    transform: translateY(-1px);
}

.woocommerce button.button.alt,
.woocommerce a.button.alt {
    background: #0ea5e9 !important;
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
    background: #0284c7 !important;
}

/* ============================================================
   WOOCOMMERCE — TABLES (Orders, Downloads)
   ============================================================ */
.woocommerce table.shop_table,
.woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.woocommerce table.shop_table thead th,
.woocommerce-MyAccount-content table thead th {
    background: #f1f5f9;
    color: #334155;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    text-align: left;
}

.woocommerce table.shop_table td,
.woocommerce-MyAccount-content table td {
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 0.92rem;
    vertical-align: middle;
}

.woocommerce table.shop_table tbody tr:hover,
.woocommerce-MyAccount-content table tbody tr:hover {
    background: #f8fafc;
}

/* ============================================================
   WOOCOMMERCE — NOTICES & MESSAGES
   ============================================================ */
.woocommerce-message,
.woocommerce-info {
    background: #f0f9ff !important;
    border-top: 3px solid #0ea5e9 !important;
    color: #0c4a6e !important;
    padding: 14px 20px !important;
    border-radius: 0 0 8px 8px;
    margin-bottom: 24px;
    font-size: 0.92rem;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: #0ea5e9 !important;
}

.woocommerce-error {
    background: #fef2f2 !important;
    border-top: 3px solid #ef4444 !important;
    color: #991b1b !important;
    padding: 14px 20px !important;
    border-radius: 0 0 8px 8px;
    margin-bottom: 24px;
}

.woocommerce-error::before {
    color: #ef4444 !important;
}

/* ============================================================
   WOOCOMMERCE — MY ACCOUNT PAGE TITLE
   ============================================================ */
.woocommerce-account .page-main .container > h1,
.woocommerce-account .woocommerce > h2:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 36px;
}

/* ============================================================
   WOOCOMMERCE — LOGIN / REGISTER FORMS
   ============================================================ */
.woocommerce form.login,
.woocommerce form.register {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1e293b;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

/* Form rows inside login/register */
.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
    margin-bottom: 20px;
}

.woocommerce form.login label,
.woocommerce form.register label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
}

.woocommerce form.login input.input-text,
.woocommerce form.login input[type="text"],
.woocommerce form.login input[type="email"],
.woocommerce form.login input[type="password"],
.woocommerce form.register input.input-text,
.woocommerce form.register input[type="text"],
.woocommerce form.register input[type="email"],
.woocommerce form.register input[type="password"] {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    color: #1e293b;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    box-sizing: border-box !important;
}

.woocommerce form.login input.input-text:focus,
.woocommerce form.login input[type="password"]:focus,
.woocommerce form.register input.input-text:focus,
.woocommerce form.register input[type="email"]:focus {
    outline: none;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

/* Password field wrapper (show/hide toggle) */
.woocommerce form.login .password-input,
.woocommerce form.register .password-input {
    width: 100%;
    position: relative;
}

.woocommerce .show-password-input {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
}

/* Remember me checkbox */
.woocommerce form.login .form-row label.woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
}

.woocommerce form.login .form-row input[type="checkbox"] {
    width: 16px !important;
    height: 16px;
    accent-color: #0ea5e9;
}

/* Lost password link */
.woocommerce form.login .lost_password a {
    color: #0ea5e9;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce form.login .lost_password a:hover {
    text-decoration: underline;
    color: #0284c7;
}

/* Register form privacy text */
.woocommerce form.register .woocommerce-privacy-policy-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 12px;
}

.woocommerce form.register .woocommerce-privacy-policy-text a {
    color: #0ea5e9;
    font-weight: 500;
}

/* Two-column login/register */
.u-columns {
    display: flex;
    gap: 32px;
}

.u-columns .u-column-1,
.u-columns .u-column-2 {
    flex: 1;
    min-width: 0;
}

/* ============================================================
   WOOCOMMERCE — CHECKOUT PAGE
   ============================================================ */
.woocommerce-checkout .woocommerce {
    background: #fff;
    border-radius: 12px;
    padding: 32px 40px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.woocommerce-checkout h3 {
    color: #1e293b;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

/* ============================================================
   WOOCOMMERCE — DOWNLOAD PLUGIN PAGE
   ============================================================ */
.wpseoagent-download-page h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 8px;
}

.wpseoagent-download-page > p {
    color: #64748b;
    margin-bottom: 28px;
}

.wpseoagent-download-page h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1e293b;
    margin: 32px 0 20px;
}

/* Download card */
.download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 24px 28px;
}

.download-card-icon {
    flex-shrink: 0;
}

.download-card-info {
    flex: 1;
    min-width: 0;
}

.download-card-info h3 {
    font-size: 1.1rem;
    margin: 0 0 4px;
    color: #0c4a6e;
}

.download-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0ea5e9;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.download-btn:hover {
    background: #0284c7;
    color: #fff !important;
}

/* Installation steps */
.install-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.install-step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.install-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
    margin: 0 0 6px;
}

.step-content p {
    color: #475569;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

.step-content code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #0f172a;
}

/* Help box */
.download-help {
    margin-top: 28px;
    padding: 16px 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
}

.download-help p {
    margin: 0;
    color: #92400e;
    font-size: 0.9rem;
}

.download-help a {
    color: #0ea5e9;
    font-weight: 600;
}

@media (max-width: 768px) {
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   WOOCOMMERCE — RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
        border-bottom: none;
    }

    .woocommerce-MyAccount-navigation ul li a {
        border-bottom: 1px solid #f1f5f9;
        border-left: 3px solid transparent;
        margin-bottom: 0;
    }

    .woocommerce-MyAccount-navigation ul li.is-active a {
        border-bottom-color: #f1f5f9;
        border-left-color: #0ea5e9;
    }

    .woocommerce-MyAccount-content {
        padding: 24px 20px;
    }

    .u-columns {
        flex-direction: column;
        gap: 24px;
    }

    .woocommerce table.shop_table {
        display: block;
        overflow-x: auto;
    }

    .woocommerce-checkout .woocommerce {
        padding: 24px 20px;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-image { flex: 0 0 340px; max-width: 340px; }
    .hero-content h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.9rem; }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #2563eb;
        padding: 90px 24px 24px;
        transition: right 0.35s ease;
        box-shadow: -4px 0 30px rgba(0,0,0,0.3);
        z-index: 999;
        flex-direction: column;
    }
    .admin-bar #main-nav { top: 46px; height: calc(100vh - 46px); }
    #main-nav.open { right: 0; }
    #main-nav ul { flex-direction: column; gap: 4px; }
    #main-nav a { font-size: 1rem; padding: 14px 16px; display: block; }

    .nav-auth {
        flex-direction: column;
        gap: 8px;
        margin-left: 0;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.15);
        width: 100%;
    }
    .nav-auth a { display: block; padding: 14px 16px; font-size: 1rem; text-align: left; }
    .btn-nav-cta { text-align: center; }
    #main-nav ul { width: 100%; }

    .hamburger { display: block; }

    .form-row { grid-template-columns: 1fr; }
    .enquiry-form-wrapper { padding: 24px; }

    .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-subtitle { margin: 0 auto 28px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image { flex: none; max-width: 300px; margin: 0 auto; }

    .grid-2, .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-content { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .stats-inner { gap: 30px; }

    .brain-layer-2 { margin-left: 10px; margin-right: 10px; }
    .brain-layer-3 { margin-left: 20px; margin-right: 20px; }

    .billing-toggle { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.85rem; }
    .section-header h2 { font-size: 1.6rem; }
    .price { font-size: 2.6rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-lg { width: 100%; }
}
