/*
Theme Name: Pro Collections
Theme URI: https://procollections.ca
Author: Clicktec
Author URI: https://clicktec.ca
Description: Custom theme for Pro Collections Ltd — 100% Canadian receivable management. Built by Clicktec.
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: procollections
*/

/* =========================================================
   Pro Collections Ltd — Stylesheet
   Brand palette: deep crimson (#a8221a), charcoal (#1a1a1a),
   off-white (#f7f5f1), accent gold (#c69d56)
   ========================================================= */

:root {
    --brand: #a8221a;
    --brand-dark: #7a1610;
    --brand-light: #d44a3f;
    --ink: #1a1a1a;
    --ink-soft: #3a3a3a;
    --muted: #6b6b6b;
    --line: #e5e1da;
    --bg: #ffffff;
    --bg-soft: #f7f5f1;
    --bg-dark: #14110f;
    --accent: #c69d56;
    --shadow-sm: 0 2px 6px rgba(20, 17, 15, 0.06);
    --shadow-md: 0 12px 32px rgba(20, 17, 15, 0.08);
    --shadow-lg: 0 24px 60px rgba(20, 17, 15, 0.12);
    --radius: 10px;
    --radius-lg: 18px;
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 4.8vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
}

.accent { color: var(--brand); }

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1;
}
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-primary {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}
.btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
}
.section-dark .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.section-dark .btn-outline:hover {
    background: #fff;
    color: var(--ink);
}

/* ============ Header ============ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 24px;
}
.brand img { height: 44px; width: auto; }

.primary-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 24px;
}
.primary-nav a {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}
.primary-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: width var(--transition);
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--brand); }
.primary-nav a:hover::after,
.primary-nav a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all var(--transition);
}

/* ============ Hero ============ */
.hero {
    position: relative;
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #fbfaf7 0%, #f4f0e9 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 25%, rgba(168, 34, 26, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 10% 85%, rgba(198, 157, 86, 0.10) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    list-style: none;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.hero-trust li {
    display: flex;
    flex-direction: column;
}
.hero-trust strong {
    font-family: 'Playfair Display', serif;
    color: var(--brand);
    font-size: 1.6rem;
    font-weight: 700;
}
.hero-trust span {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 2px;
}

/* Hero visual cards */
.hero-visual {
    position: relative;
    height: 460px;
}
.visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    border: 1px solid var(--line);
    animation: floatCard 6s ease-in-out infinite;
}
.visual-card strong {
    display: block;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 4px;
}
.visual-card span {
    font-size: 0.85rem;
    color: var(--muted);
}
.vc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    flex-shrink: 0;
    position: relative;
}
.vc-icon::before {
    content: '';
    position: absolute;
    inset: 14px;
    background: #fff;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M3 13h2v8H3zm4-4h2v12H7zm4-6h2v18h-2zm4 9h2v9h-2zm4-4h2v13h-2z'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M3 13h2v8H3zm4-4h2v12H7zm4-6h2v18h-2zm4 9h2v9h-2zm4-4h2v13h-2z'/></svg>") center/contain no-repeat;
    background: #fff;
}
.icon-shield::before {
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-4z'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-4z'/></svg>") center/contain no-repeat;
}
.icon-call::before {
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 15.5c-1.2 0-2.5-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.4-1.1-.6-2.4-.6-3.6 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z'/></svg>") center/contain no-repeat;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M20 15.5c-1.2 0-2.5-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.4-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.4-1.1-.6-2.4-.6-3.6 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z'/></svg>") center/contain no-repeat;
}
.card-1 { top: 30px; left: 0; animation-delay: 0s; }
.card-2 { top: 180px; right: 0; animation-delay: 1.5s; }
.card-3 { bottom: 30px; left: 40px; animation-delay: 3s; }

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

/* ============ Sections ============ */
.section { padding: 90px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head.light .eyebrow { color: var(--accent); }
.section-head p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin-top: 16px;
}
.section-dark .section-head p { color: rgba(255,255,255,0.75); }

/* ============ Feature Grid ============ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.feature {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: all var(--transition);
}
.feature:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.feature-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--brand);
    font-weight: 700;
    margin-bottom: 14px;
}
.feature h3 { margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============ Steps ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.step:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--brand);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 18px;
}
.step h3 { margin-bottom: 10px; color: #fff; }
.step p { color: rgba(255,255,255,0.7); font-size: 0.94rem; }

/* ============ CTA Band ============ */
.cta-band {
    padding: 70px 0;
    background: linear-gradient(120deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn-primary {
    background: #fff;
    color: var(--brand);
    border-color: #fff;
}
.cta-band .btn-primary:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

/* ============ Page Hero (subpages) ============ */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #fbfaf7 0%, #f4f0e9 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(168, 34, 26, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 15% 90%, rgba(198, 157, 86, 0.08) 0%, transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 720px;
    margin: 0 auto;
}
.crumbs {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 18px;
    letter-spacing: 0.05em;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }

/* ============ Content Blocks ============ */
.content-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}
.content-wrap.reverse > div:first-child { order: 2; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.prose ul { padding-left: 22px; margin-bottom: 18px; }
.prose ul li { margin-bottom: 8px; color: var(--ink-soft); }
.prose h3 { margin: 28px 0 12px; }

.stat-card {
    background: var(--bg-soft);
    padding: 36px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brand);
}
.stat-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 10px;
}
.stat-card blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--ink);
    font-style: italic;
}
.stat-card cite {
    display: block;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: normal;
}

/* ============ Service / Industry Cards ============ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.card-grid.cards-2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
    background: #fff;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: var(--brand);
    transition: height var(--transition);
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.svc-card:hover::before { height: 100%; }
.svc-icon {
    width: 56px;
    height: 56px;
    background: rgba(168, 34, 26, 0.08);
    color: var(--brand);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
}
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 12px; }
.svc-card ul {
    list-style: none;
    padding: 0;
}
.svc-card ul li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.svc-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(-45deg);
}

/* ============ Compliance ============ */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.cert-badge {
    background: #fff;
    padding: 28px 20px;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: all var(--transition);
}
.cert-badge:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.cert-badge strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--brand);
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.cert-badge span {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

.security-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 36px;
    margin-top: 30px;
}
.security-list li {
    list-style: none;
    padding: 14px 18px 14px 44px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    position: relative;
    color: var(--ink-soft);
    font-size: 0.95rem;
}
.security-list li::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
}

/* ============ Contact ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info-card {
    background: var(--bg-soft);
    padding: 40px;
    border-radius: var(--radius-lg);
}
.contact-info-card h3 { margin-bottom: 24px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    align-items: flex-start;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item-icon {
    width: 42px;
    height: 42px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    color: var(--ink);
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.contact-item span,
.contact-item a {
    display: block;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.5;
}

form.contact-form { display: grid; gap: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: #fff;
    color: var(--ink);
    transition: all var(--transition);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(168, 34, 26, 0.12);
}

.form-msg {
    padding: 14px 18px;
    border-radius: var(--radius);
    background: rgba(168, 34, 26, 0.08);
    color: var(--brand-dark);
    font-size: 0.9rem;
    display: none;
}
.form-msg.show { display: block; }

/* ============ Footer ============ */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    height: 50px;
    margin-bottom: 18px;
    filter: brightness(1.1);
}
.footer-col h4 {
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.95rem; }
.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.badge-list li {
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    font-size: 0.78rem;
    margin-bottom: 0;
}

.footer-bottom {
    margin-top: 50px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.credit-link {
    color: var(--accent);
    font-weight: 600;
    transition: color var(--transition);
}
.credit-link:hover { color: #fff; }

/* ============ Responsive ============ */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { height: 360px; max-width: 480px; margin: 0 auto; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .card-grid, .card-grid.cards-2 { grid-template-columns: 1fr 1fr; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-wrap { grid-template-columns: 1fr; }
    .content-wrap.reverse > div:first-child { order: 0; }
}

@media (max-width: 700px) {
    .primary-nav,
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .primary-nav.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        padding: 12px 24px 20px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-sm);
        margin: 0;
    }
    .primary-nav.open a {
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }
    .primary-nav.open a:last-child { border-bottom: 0; }

    .hero { padding: 60px 0 80px; }
    .section { padding: 64px 0; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .card-grid, .card-grid.cards-2 { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 18px; }
    .hero-trust li { flex: 1 0 calc(50% - 9px); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .security-list { grid-template-columns: 1fr; }
    .cta-band-inner { text-align: center; flex-direction: column; }
    .visual-card { min-width: 240px; }
    .card-1, .card-2, .card-3 { position: relative; top: auto; left: auto; right: auto; bottom: auto; margin: 0 auto 18px; }
    .hero-visual { height: auto; display: flex; flex-direction: column; align-items: center; }
}
