/*
Theme Name: Seaghe B2B Wholesale
Theme URI: https://www.seaghe.com/
Author: 光爷
Author URI: https://www.seaghe.com/
Description: A professional WordPress theme for Seaghe's international B2B wholesale clothing and bags business.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8.1
Requires PHP: 7.4
Text Domain: seaghe-b2b
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --accent: #c8a96e;
    --accent-dark: #a88a52;
    --bg-light: #f7f5f2;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #555555;
    --text-light: #888888;
    --border: #e0dbd4;
    --nav-height: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
}

.admin-bar nav {
    top: 32px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: #ccc;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
    padding: 8px 0;
}
.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.top-bar a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s;
}
.top-bar a:hover { color: var(--accent); }

/* ===== NAVBAR ===== */
nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    font-family: 'Arial', sans-serif;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-decoration: none;
    flex-shrink: 0;
}
.logo span {
    color: var(--accent);
}
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-page-ancestor > a,
.nav-links .current_page_parent > a {
    color: var(--primary);
    border-color: var(--accent);
}
.nav-links .nav-cta,
.nav-links > li:last-child > a {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 10px 24px !important;
    border: none !important;
    border-radius: 2px !important;
    font-weight: 700 !important;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}
.nav-links .nav-cta:hover,
.nav-links > li:last-child > a:hover {
    background: var(--accent-dark) !important;
    color: var(--bg-white) !important;
}



/* ===== HERO ===== */
.hero {
    background: var(--primary);
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(200,169,110,0.08) 25%, transparent 25%),
        linear-gradient(225deg, rgba(200,169,110,0.08) 25%, transparent 25%),
        linear-gradient(45deg, rgba(200,169,110,0.08) 25%, transparent 25%),
        linear-gradient(315deg, rgba(200,169,110,0.08) 25%, transparent 25%);
    background-size: 60px 60px;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-label {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff;
}
.hero h1 strong {
    color: var(--accent);
    font-weight: 700;
}
.hero-desc {
    font-size: 17px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 14px 32px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); color: white; }
.btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 13px 32px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(200,169,110,0.1); }
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 28px;
    text-align: center;
}
.stat-card .num {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Arial', sans-serif;
    line-height: 1;
}
.stat-card .unit {
    font-size: 16px;
    color: var(--accent);
}
.stat-card .label {
    font-size: 12px;
    color: #888;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
    margin-top: 8px;
    text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
section {
    padding: 90px 40px;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-label {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-title strong { font-weight: 700; }
.section-desc {
    font-size: 16px;
    color: var(--text-mid);
    font-family: 'Arial', sans-serif;
    max-width: 560px;
    line-height: 1.8;
}
.section-header {
    margin-bottom: 56px;
}

/* ===== CATEGORIES ===== */
.categories {
    background: var(--bg-light);
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.cat-card {
    background: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: inherit;
}
.cat-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    transition: transform 0.4s ease;
}
.cat-card:hover .cat-img { transform: scale(1.05); }
.cat-card:nth-child(6n + 1) .cat-img { background: linear-gradient(135deg, #2d3561, #1a2040); }
.cat-card:nth-child(6n + 2) .cat-img { background: linear-gradient(135deg, #3d2b1f, #5c3d2e); }
.cat-card:nth-child(6n + 3) .cat-img { background: linear-gradient(135deg, #1a3a2a, #2d5a3d); }
.cat-card:nth-child(6n + 4) .cat-img { background: linear-gradient(135deg, #3a2d1a, #6b4f2a); }
.cat-card:nth-child(6n + 5) .cat-img { background: linear-gradient(135deg, #2a1a3a, #4a2d6b); }
.cat-card:nth-child(6n) .cat-img { background: linear-gradient(135deg, #1a2d3a, #2d4f6b); }
.cat-overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 60%);
}
.cat-content {
    position: relative;
    z-index: 1;
    padding: 28px;
    color: white;
}
.cat-content h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.cat-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-family: 'Arial', sans-serif;
}
.cat-arrow {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 2;
    transition: background 0.2s, transform 0.2s;
}
.cat-card:hover .cat-arrow {
    background: white;
    transform: translateX(4px);
}

/* ===== ABOUT ===== */
.about {
    background: white;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    background: var(--bg-light);
    border-radius: 4px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-visual-inner {
    text-align: center;
}
.about-visual-emoji {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
}
.about-visual-text {
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}
.about-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: var(--accent);
    color: var(--primary);
    padding: 16px 20px;
    border-radius: 4px;
    text-align: center;
}
.about-badge .num {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    line-height: 1;
}
.about-badge .label {
    font-size: 11px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.about-content .section-desc {
    max-width: 100%;
    margin-bottom: 32px;
}
.about-features {
    list-style: none;
    margin-bottom: 40px;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-mid);
}
.about-features li:last-child { border-bottom: none; }
.about-features .icon {
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== PROCESS ===== */
.process {
    background: var(--primary);
    color: white;
}
.process .section-title { color: white; }
.process .section-desc { color: #888; }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: linear-gradient(to right, var(--accent), var(--accent));
    opacity: 0.3;
}
.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200,169,110,0.15);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.process-step h3 {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 12px;
}
.process-step p {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}

/* ===== WHY US ===== */
.why {
    background: var(--bg-light);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.why-card {
    background: white;
    padding: 40px 36px;
    position: relative;
    transition: box-shadow 0.3s;
}
.why-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    z-index: 1;
}
.why-icon {
    font-size: 32px;
    margin-bottom: 20px;
}
.why-card h3 {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.why-card p {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
}
.why-accent-line {
    width: 32px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 20px;
}

/* ===== CERTIFICATES ===== */
.certs {
    background: white;
}
.certs-flex {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    background: white;
}
.cert-badge .cert-icon {
    font-size: 24px;
}
.cert-badge .cert-info strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 700;
}
.cert-badge .cert-info span {
    font-size: 11px;
    color: var(--text-light);
}

/* ===== CTA ===== */
.cta-section {
    background: var(--accent);
    padding: 80px 40px;
}
.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.cta-text .label {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(26,26,26,0.6);
    margin-bottom: 12px;
}
.cta-text h2 {
    font-size: 36px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.3;
}
.cta-text h2 strong { font-weight: 700; }
.cta-text p {
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: rgba(26,26,26,0.7);
    margin-top: 12px;
}
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.btn-dark {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 36px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-dark:hover { background: #333; }
.cta-note {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: rgba(26,26,26,0.6);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info h3 {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}
.contact-info .val {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 28px;
}
.contact-info .val a {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field label {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}
.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    background: white;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    border-radius: 2px;
    transition: border-color 0.2s;
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: var(--text-light);
}
.contact-alert {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}
.contact-alert.success {
    background: #eef7ef;
    color: #25643b;
    border: 1px solid #cfe6d2;
}
.contact-alert.error {
    background: #fbefef;
    color: #8b2d2d;
    border: 1px solid #efc7c7;
}

/* ===== GENERIC PAGE CONTENT ===== */
.page-content {
    font-family: 'Arial', sans-serif;
    color: var(--text-mid);
    font-size: 16px;
    line-height: 1.85;
}
.page-content > * + * {
    margin-top: 18px;
}
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: var(--text-dark);
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.35;
}
.page-content a {
    color: var(--primary);
    text-decoration-color: var(--accent);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary);
    color: white;
    padding: 60px 40px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text {
    font-family: 'Arial', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: white;
    margin-bottom: 16px;
}
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    color: #888;
    transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.footer-col h4 {
    font-family: 'Arial', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col ul li a:hover,
.footer-col ul li.current-menu-item > a,
.footer-col ul li.current_page_item > a,
.footer-col ul li.current-page-ancestor > a,
.footer-col ul li.current_page_parent > a {
    color: var(--accent);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: #555;
}
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
}
.footer-legal-links li {
    margin: 0;
}
.footer-bottom a {
    color: #555;
    text-decoration: none;
    margin-left: 0;
}
.footer-bottom a:hover,
.footer-legal-links li.current-menu-item > a,
.footer-legal-links li.current_page_item > a,
.footer-legal-links li.current-page-ancestor > a,
.footer-legal-links li.current_page_parent > a {
    color: var(--accent);
}


/* ===== PAGE HEADERS ===== */
.page-header {
    background: var(--primary);
    color: white;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(200,169,110,0.05) 25%, transparent 25%),
        linear-gradient(225deg, rgba(200,169,110,0.05) 25%, transparent 25%);
    background-size: 60px 60px;
}
.page-header-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.page-header h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
}
.page-header h1 strong {
    color: var(--accent);
    font-weight: 700;
}
.page-header p {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #bbb;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner,
    .about-grid,
    .contact-grid,
    .cta-inner,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .cat-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .process-steps::before {
        display: none;
    }

    .hero-inner {
        gap: 40px;
    }

    .cta-actions {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .top-bar-inner,
    .nav-inner,
    .hero-inner,
    .section-inner,
    .footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    section,
    .page-header,
    .cta-section,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-bar-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        position: static;
        height: auto;
    }

    .nav-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
        height: auto;
        min-height: var(--nav-height);
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-links .nav-cta,
    .nav-links > li:last-child > a {
        width: 100%;
        margin-top: 12px;
        padding: 14px 18px !important;
        text-align: center;
    }

    .hero {
        min-height: auto;
    }


    .hero h1,
    .page-header h1 {
        font-size: 34px;
    }

    .section-title,
    .cta-text h2 {
        font-size: 30px;
    }

    .hero-stats,
    .cat-grid,
    .why-grid,
    .form-row,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 320px;
    }

    .footer-legal-links {
        gap: 16px;
    }
}

