/*
Theme Name: PismoOdReki
Theme URI: https://pismoodreki.pl
Description: Nowoczesny motyw legal-tech / fintech dla PismoOdRęki.pl. Kompatybilny z SiteOrigin Page Builder i WooCommerce.
Version: 1.0.0
Author: PismoOdRęki
Author URI: https://pismoodreki.pl
Text Domain: pismoodreki
Requires at least: 6.4
Requires PHP: 8.0
License: GPL-2.0-or-later
WC requires at least: 8.0
*/

/* ── LOCAL FONTS ── */
@font-face {
    font-family: 'EB Garamond';
    src: url('assets/fonts/EB_Garamond/EBGaramond-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'EB Garamond';
    src: url('assets/fonts/EB_Garamond/EBGaramond-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 800;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assets/fonts/Plus_Jakarta_Sans/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: italic;
    font-display: swap;
}

:root {
    --color-navy: #0A2540;
    --color-teal: #2FB5A8;
    --color-grey: #7B8AA0;
    --color-bg: #F5F8FB;
    --color-white: #FFFFFF;
    --color-red-cta: #C0392B;
    --color-red-cta-hover: #A93226;
    --color-navy-light: #0E3052;
    --color-border: #E2E8F0;
    --color-text-body: #3D4F5F;
    --font-heading: 'EB Garamond', 'Georgia', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;
    --shadow-sm: 0 1px 3px rgba(10,37,64,0.06);
    --shadow-md: 0 4px 12px rgba(10,37,64,0.08);
    --shadow-lg: 0 8px 30px rgba(10,37,64,0.10);
    --container-max: 1140px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;
    --admin-bar-height: 0px;
}

/* WP admin bar offset */
.admin-bar { --admin-bar-height: 32px; }
@media (max-width: 782px) {
    .admin-bar { --admin-bar-height: 46px; }
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-body);
    background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; max-width: 65ch; }

a { color: var(--color-teal); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-navy); }

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

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

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: var(--admin-bar-height);
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.site-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.35rem;
    text-decoration: none;
}
.site-logo .logo-pismo { color: var(--color-navy); }
.site-logo .logo-odreki { color: var(--color-teal); }
.site-logo .logo-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-grey);
    letter-spacing: 0.02em;
}

.nav-main { display: flex; align-items: center; gap: 32px; }
.nav-main a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-navy);
    position: relative;
    padding: 4px 0;
}
.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal);
    transition: width 0.25s ease;
}
.nav-main a:hover::after { width: 100%; }
.nav-main a:hover { color: var(--color-navy); }

.nav-main .menu { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-main .menu li { margin: 0; }
.nav-main .menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-navy);
    position: relative;
    padding: 4px 0;
}
.nav-main .menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal);
    transition: width 0.25s ease;
}
.nav-main .menu a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1.2;
}
.btn-primary {
    background: var(--color-red-cta);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(192,57,43,0.25);
}
.btn-primary:hover {
    background: var(--color-red-cta-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-border);
}
.btn-outline:hover {
    border-color: var(--color-teal);
    color: var(--color-teal);
}
.btn-white {
    background: var(--color-white);
    color: var(--color-navy);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--color-bg);
    color: var(--color-navy);
    transform: translateY(-1px);
}

/* ── SITEORIGIN PAGE BUILDER OVERRIDES ── */
.panel-grid { margin-bottom: 0 !important; }
.panel-grid-cell { padding: 0 !important; }

.so-panel {
    margin-bottom: 0 !important;
}

.panel-row-style {
    padding: var(--section-padding) 0;
}

.panel-layout .panel-grid-cell .so-panel {
    margin-bottom: 0;
}

/* Stretched rows: full-width bg, contained content */
.siteorigin-panels-stretch.panel-row-style {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.siteorigin-panels-stretch .panel-grid-cell-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── SECTION STYLES (for SiteOrigin rows) ── */
.section-white { background: var(--color-white); }
.section-offwhite { background: var(--color-bg); }
.section-navy {
    background: var(--color-navy);
    color: rgba(255,255,255,0.9);
}
.section-navy h1, .section-navy h2, .section-navy h3,
.section-navy h4, .section-navy h5, .section-navy h6 {
    color: var(--color-white);
}
.section-navy p { color: rgba(255,255,255,0.8); }
.section-navy .check-item { color: rgba(255,255,255,0.85); }

.section-light-teal { background: #F0FAF9; }

.section-narrow .panel-grid-cell-container {
    max-width: 800px;
}

/* ── PILL BADGE ── */
.pill-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

/* ── HERO SECTION ── */
.hero-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-red-cta);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}
.hero-text {
    font-size: 1.05rem;
    color: var(--color-grey);
    margin-bottom: 28px;
    line-height: 1.8;
}
.hero-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}
.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ── CHECKLIST STYLES ── */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.08rem;
    line-height: 1.6;
}
.check-item::before {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    background: var(--color-teal);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}
.check-item.negative::before {
    background-color: var(--color-red-cta);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.check-item strong { color: var(--color-navy); font-weight: 700; }

/* ── STEPS ── */
.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    counter-reset: step;
}
.step-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--color-border);
    position: relative;
    transition: box-shadow 0.3s ease;
    flex: 1;
}
.step-card:hover { box-shadow: var(--shadow-md); }

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-teal);
    color: var(--color-white);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-body);
    margin-bottom: 16px;
}
.step-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--color-grey);
    margin: 0 auto;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    color: var(--color-grey);
    font-size: 1.5rem;
    opacity: 0.5;
}
.step-arrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B8AA0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
}
.step-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-teal);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--color-navy);
    padding: 48px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--color-white);
}
.cta-banner h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-banner p { margin: 0 auto 24px; color: rgba(255,255,255,0.8); }

.cta-banner-full {
    background: var(--color-navy);
    padding: 56px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner-full h2 { color: var(--color-white); margin-bottom: 12px; }
.cta-banner-full p { color: rgba(255,255,255,0.8); margin: 0 auto 28px; }

/* ── TRUST SECTION ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.trust-item {
    padding: 24px;
}
.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(47,181,168,0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-teal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.section-navy .trust-icon { background: rgba(47,181,168,0.2); }
.trust-item h4 { font-size: 1rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.88rem; color: var(--color-grey); margin: 0 auto; }
.section-navy .trust-item p { color: rgba(255,255,255,0.7); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--color-border);
    transition: box-shadow 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-bg), #e3e9f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1.1rem;
    font-family: var(--font-body);
    flex-shrink: 0;
    border: 2px solid var(--color-border);
}
.testimonial-name { font-weight: 700; color: var(--color-navy); font-size: 0.95rem; font-family: var(--font-body); }
.testimonial-age { font-size: 0.8rem; color: var(--color-grey); }
.testimonial-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-body);
    font-style: italic;
}

/* ── FAQ / ACCORDION ── */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.sow-accordion-panel {
    margin-bottom: 10px !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: var(--color-white) !important;
    transition: box-shadow 0.2s ease;
}
.sow-accordion-panel:hover { box-shadow: var(--shadow-sm); }

.sow-accordion-panel-header {
    padding: 22px 28px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: var(--color-navy) !important;
    font-family: var(--font-heading) !important;
    cursor: pointer;
    background: var(--color-white) !important;
    border: none !important;
    line-height: 1.4 !important;
}
.sow-accordion-panel-header:hover { background: var(--color-bg) !important; }

.sow-accordion-panel-content {
    padding: 0 28px 24px !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    color: var(--color-text-body) !important;
}

.sow-accordion-panel .sow-accordion-open-button {
    color: var(--color-grey) !important;
    font-size: 1.25rem !important;
}

/* ── TWO COLUMN LAYOUT HELPER ── */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.two-col-grid.reverse { direction: rtl; }
.two-col-grid.reverse > * { direction: ltr; }

.section-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand .site-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--color-grey); max-width: 280px; }
.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-grey);
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-body);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    font-size: 0.9rem;
    color: var(--color-text-body);
    transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--color-teal); }
.footer-col .menu { list-style: none; margin: 0; padding: 0; }

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--color-grey); margin: 0; }
.footer-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--color-grey);
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-teal);
    fill: none;
}

/* ── WOOCOMMERCE ── */
.woocommerce .products ul,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.woocommerce ul.products li.product {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}
.woocommerce ul.products li.product:hover { box-shadow: var(--shadow-md); }

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    padding: 12px 0 4px;
}
.woocommerce ul.products li.product .price {
    color: var(--color-teal);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-body);
}
.woocommerce ul.products li.product .button,
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--color-teal) !important;
    color: var(--color-white) !important;
    border-radius: var(--radius-pill) !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border: none !important;
    transition: all 0.25s ease !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--color-navy) !important;
    color: var(--color-white) !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--color-red-cta) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: var(--color-red-cta-hover) !important;
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--color-teal) !important;
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--color-teal) !important;
}

.woocommerce .woocommerce-breadcrumb {
    font-size: 0.85rem;
    color: var(--color-grey);
    margin-bottom: 24px;
}

.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    color: var(--color-navy);
}

.woocommerce .quantity .qty {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    padding: 8px 12px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--color-border);
}

/* ── ENTRY CONTENT ── */
.entry-content h2 { margin-top: 1.5em; }
.entry-content h3 { margin-top: 1.2em; }
.entry-content ul, .entry-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5em;
}
.entry-content li { margin-bottom: 0.4em; }
.entry-content blockquote {
    border-left: 3px solid var(--color-teal);
    padding: 12px 20px;
    margin: 1.5em 0;
    color: var(--color-grey);
    font-style: italic;
    background: var(--color-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid,
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .two-col-grid.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-wrap: wrap; }
    .step-arrow { display: none; }
    .step-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
    }
    .panel-row-style { padding: var(--section-padding-mobile) 0; }

    .nav-main,
    .nav-main .menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }
    .nav-main.active,
    .nav-main.active .menu { display: flex; }
    .nav-toggle { display: block; }

    .steps-grid { flex-direction: column; }
    .step-card { min-width: 100%; }
    .trust-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .btn { width: 100%; padding: 16px 24px; }
    .hero-section { padding: 40px 0 48px; }
    .cta-banner { padding: 32px 20px; }
    h1 { font-size: 1.85rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .siteorigin-panels-stretch .panel-grid-cell-container { padding: 0 16px; }
    .header-inner { height: 60px; }
    .site-logo { font-size: 1.15rem; }
}
