/* ═══════════════════════════════════════════════════
   WebStacked — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Variables ─────────────────────────────────── */
:root {
    --bg: #ffffff;
    --bg-off: #f7f8fc;
    --bg-blue: #0b1437;
    --bg-blue2: #101c4e;
    --accent: #3b6bf5;
    --accent-hover: #2d5ae0;
    --accent2: #00c896;
    --accent-light: #eef3ff;
    --text: #1a1a2e;
    --text-sec: #5a5a7a;
    --text-muted: #9999b0;
    --border: rgba(0, 0, 0, 0.08);
    --font-head: 'Raleway', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fb;
    border-bottom: 1px solid var(--border);
    padding: 10px 40px;
    font-size: 12px;
}
.breadcrumbs-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.breadcrumbs a {
    color: var(--accent);
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.bc-sep {
    color: var(--text-muted);
    font-size: 14px;
}
.bc-current {
    color: var(--text-sec);
}

/* Links inside content sections */
.section p a, .section-desc a, .faq-a-inner a,
.text-image-content a, .location-detail-content a,
.tight-sections a:not(.blog-card):not(.nav-logo):not(.cta-band-btn):not(.pricing-btn) {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.section p a:hover, .section-desc a:hover, .faq-a-inner a:hover,
.text-image-content a:hover, .location-detail-content a:hover {
    color: var(--accent-hover, #2d5ae0);
}

/* Content formatting elements */
.section blockquote, .tight-sections blockquote {
    margin: 16px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--accent);
    background: rgba(59, 107, 245, 0.04);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-sec);
}
.section mark, .tight-sections mark {
    background: rgba(250, 204, 21, 0.3);
    padding: 1px 4px;
    border-radius: 2px;
}
.section abbr, .tight-sections abbr {
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    cursor: help;
}
.section ul, .section ol, .tight-sections ul, .tight-sections ol {
    margin: 12px 0;
    padding-left: 24px;
}
.section li, .tight-sections li {
    font-size: 15px;
    color: var(--sec-text-color, var(--text-sec));
    line-height: 1.7;
    margin-bottom: 4px;
}
.section hr, .tight-sections hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}
.section small, .tight-sections small {
    font-size: 12px;
    color: var(--text-muted);
}
.section s, .tight-sections s {
    color: var(--text-muted);
}
img { max-width: 100%; display: block; }


/* ─── Navigation ────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-sec);
}

.nav-links a { transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--accent-hover); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 110;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
    position: absolute;
    left: 0;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }


/* ─── Hero Wrapper & Particle Canvas ────────────── */
.hero-wrapper {
    position: relative;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* ─── Hero ──────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.hero .bracket { color: var(--accent); }
.hero .typing-text { color: var(--accent); }

.hero .cursor {
    display: inline-block;
    width: 3px;
    height: 40px;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-sub {
    font-size: 16px;
    color: var(--text-sec);
    max-width: 440px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-form {
    flex: 1;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.hero-form h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.hero-form input:focus,
.hero-form textarea:focus { border-color: var(--accent); }

.hero-form input::placeholder,
.hero-form textarea::placeholder { color: var(--text-muted); }

.hero-form textarea { min-height: 70px; resize: vertical; }

/* Dropdowns in the hero form, styled to match the inputs */
.hero-form select {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.hero-form select:focus { border-color: var(--accent); }

/* Checkbox rows sit full width under the grid */
.hero-form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-sec);
    cursor: pointer;
    line-height: 1.4;
}

.hero-form-check input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Confirmation shown after a successful submission */
.hero-form-success {
    padding: 12px 14px;
    margin-bottom: 12px;
    background: #e6fff6;
    border: 1px solid #b0e8d0;
    border-radius: 8px;
    color: #0a6b4a;
    font-size: 13px;
}

.hero-form-btn {
    width: 100%;
    margin-top: 6px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    padding: 13px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-form-btn:hover { background: var(--accent-hover); }


/* ─── Stats Bar ─────────────────────────────────── */
.stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 36px 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-num {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}


/* ─── Section Shared ────────────────────────────── */
.section {
    padding: 72px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tighter spacing for consecutive sections on detail pages */
.tight-sections .section {
    padding-top: 32px;
    padding-bottom: 32px;
}
.tight-sections .section:first-child {
    padding-top: 48px;
}

.section-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sec-label-color, var(--accent));
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--sec-title-color, var(--text));
}

.section-desc {
    font-size: 15px;
    color: var(--sec-text-color, var(--text-sec));
    max-width: 520px;
    line-height: 1.7;
}

/* Text colour overrides */
.sec-para { font-size: 15px; color: var(--sec-text-color, var(--text-sec)); line-height: 1.7; margin-bottom: 12px; }
.sec-para-lg { font-size: 16px; margin-bottom: 24px; }
.sec-colors p { color: var(--sec-text-color, inherit); }
.sec-colors h2, .sec-colors h3, .sec-colors h4 { color: var(--sec-title-color, inherit); }
.sec-colors .faq-q { color: var(--sec-title-color, inherit); }
.sec-colors .faq-a-inner { color: var(--sec-text-color, inherit); }
.sec-colors .faq-cat-title { color: var(--sec-title-color, inherit); }
.sec-colors .service-title { color: var(--sec-title-color, inherit); }
.sec-colors .service-desc { color: var(--sec-text-color, inherit); }
.sec-colors .testimonial-quote { color: var(--sec-text-color, inherit); }
.sec-colors .team-name { color: var(--sec-title-color, inherit); }
.sec-colors .team-role, .sec-colors .team-bio { color: var(--sec-text-color, inherit); }
.sec-colors .pricing-name { color: var(--sec-title-color, inherit); }


/* ─── How It Works ──────────────────────────────── */
.hiw {
    display: grid;
    grid-template-columns: 360px 1fr;
    margin-top: 36px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.hiw-left {
    background: linear-gradient(170deg, var(--bg-blue) 0%, var(--bg-blue2) 100%);
    padding: 40px 32px;
    color: #fff;
}

.hiw-left h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hiw-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.hiw-feats {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hiw-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.hiw-feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent2);
    flex-shrink: 0;
}

.hiw-right { background: #fff; display: flex; flex-direction: column; }

.hiw-step {
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.hiw-step:last-child { border-bottom: none; }
.hiw-step:hover { background: var(--bg-off); }
.hiw-step.active { background: var(--accent-light); }

.hiw-step.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 0 2px 2px 0;
}

.hiw-num {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.hiw-stitle {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hiw-sdesc {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, opacity 0.3s;
    opacity: 0;
}

.hiw-step.active .hiw-sdesc { max-height: 200px; opacity: 1; }


/* ─── Featured Work (Plugin Showcase) ───────────── */
.fw-section {
    padding: 72px 40px;
    background: var(--bg-off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.fw-section .section-label,
.fw-section .section-title,
.fw-section .section-desc {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.fw-section .section-desc { margin-bottom: 0; }

.fw-wrap {
    overflow: hidden;
    margin-top: 36px;
    padding: 8px 0 12px;
    position: relative;
}

.fw-wrap::before,
.fw-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.fw-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-off), transparent); }
.fw-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg-off), transparent); }

.fw-track {
    display: flex;
    gap: 18px;
    animation: scrollfw 40s linear infinite;
    width: max-content;
}

.fw-track:hover { animation-play-state: paused; }

@keyframes scrollfw {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Improved Section Type Picker */
#typeGrid {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 8px;
}

.type-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.type-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(59, 107, 245, 0.1);
    transform: translateY(-1px);
}

.type-card strong {
    font-size: 13px;
    line-height: 1.25;
    color: var(--text);
}

.type-card small {
    font-size: 10.5px;
    color: var(--text3);
    line-height: 1.35;
    margin-top: 4px;
}

/* Pretty Add Section & Clean Up Buttons */
.add-section {
    width: 100%;
    padding: 14px 20px;
    background: #f8f9fb;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-section:hover {
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(59, 107, 245, 0.15);
    transform: translateY(-1px);
}

.add-section:active {
    transform: translateY(0);
}

/* Existing Section Cards */
#existingSectionList > div > div {
    transition: all 0.15s ease;
}

#existingSectionList > div > div:hover {
    border-color: var(--accent) !important;
    box-shadow: 0 2px 8px rgba(59, 107, 245, 0.1);
}

.fw-card {
    width: 300px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fw-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 107, 245, 0.08);
}

/* Blog auto-scroll carousel */
.blog-scroll-wrap {
    overflow: hidden;
    margin-top: 32px;
    padding: 8px 0 12px;
    position: relative;
}
.blog-scroll-wrap::before,
.blog-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.blog-scroll-wrap::before { left: 0; background: linear-gradient(90deg, #fff, transparent); }
.blog-scroll-wrap::after { right: 0; background: linear-gradient(270deg, #fff, transparent); }

.blog-scroll-track {
    display: flex;
    gap: 18px;
    animation: scrollblog 50s linear infinite;
    width: max-content;
}
.blog-scroll-track:hover { animation-play-state: paused; }

@keyframes scrollblog {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.blog-scroll-card {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.blog-scroll-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59, 107, 245, 0.08);
}

.blog-scroll-img {
    height: 150px;
    position: relative;
    overflow: hidden;
}
.blog-scroll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-scroll-body {
    padding: 14px 16px;
}
.blog-scroll-body .blog-date { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.blog-scroll-body .blog-ctitle { font-family: var(--font-head); font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.blog-scroll-body .blog-excerpt { font-size: 12px; color: var(--text-sec); line-height: 1.5; }

/* Hero Banner section */
.hb-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}
.hb-overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    opacity: 0.15;
    z-index: 1;
}
.hb-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(59,107,245,0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(59,107,245,0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(59,107,245,0.06) 0%, transparent 50%);
}
.hb-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}
.hb-small {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.7;
    color: var(--accent);
}
.hb-large {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px;
}
.hb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: inherit;
}
.hb-list li {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
    position: relative;
    padding-left: 18px;
}
.hb-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}
.hb-block-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
}
.hb-block-text {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
    margin: 0 0 12px;
    max-width: 640px;
}
.hb-section[style*="text-align:center"] .hb-block-text {
    margin-left: auto;
    margin-right: auto;
}
.hb-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff !important;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}
.hb-btn:hover { opacity: 0.9; }

@media (max-width: 768px) {
    .hb-section { padding: 60px 24px; }
    .hb-large { font-size: 28px; }
    .hb-list { flex-direction: column; gap: 6px; }
}

.fw-card-img {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-off), #e8ecf8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-card-img-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-head);
}

.fw-card-body { padding: 20px; }

.fw-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 6px;
}

.fw-ctitle {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.fw-cdesc {
    font-size: 12px;
    color: var(--text-sec);
    line-height: 1.55;
}

.fw-tech {
    display: flex;
    gap: 6px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.fw-tech span {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 99px;
    background: var(--accent-light);
    color: var(--accent);
    letter-spacing: 0.3px;
}


/* ─── Plugin Journey (Horizontal Scroll) ────────── */
.pj-outer {
    position: relative;
    height: 300vh;
    background: var(--bg-off);
    border-top: 1px solid var(--border);
}

.pj-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.pj-header {
    max-width: 1200px;
    margin: 0 auto 32px;
    width: 100%;
}

.pj-track-wrap {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 4px 0 8px;
}

.pj-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.pj-card {
    flex-shrink: 0;
    width: 360px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    transition: border-color 0.3s;
}

.pj-card:hover {
    border-color: var(--accent);
}

.pj-card-num {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.pj-card-week {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    display: inline-block;
    background: var(--accent-light);
    padding: 4px 10px;
    border-radius: 99px;
}

.pj-card-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.pj-card-desc {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.65;
    margin-bottom: 16px;
}

.pj-card-work {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.pj-card-work-label {
    font-weight: 600;
    color: var(--text-sec);
    display: block;
    margin-bottom: 2px;
}

.pj-progress {
    max-width: 1200px;
    margin: 24px auto 0;
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.pj-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.05s linear;
}


/* ─── Portfolio (Dark tilted scroller) ───────────── */
.portfolio-section {
    position: relative;
    background: var(--pf-bg, #080808);
    overflow: hidden;
    padding: 0;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px;
}

.portfolio-header {
    position: relative;
    z-index: 20;
    padding: 60px 40px 20px;
    text-align: center;
}

.portfolio-header .section-label { color: #c8f060; }
.portfolio-header .section-title { color: #f0ede6; }

.portfolio-header .section-desc {
    color: rgba(240, 237, 230, 0.5);
    margin: 0 auto;
}

.portfolio-stage {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-stage::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    background: radial-gradient(
        ellipse 80% 60% at 50% 50%,
        transparent 30%,
        color-mix(in srgb, var(--pf-bg, #080808) 55%, transparent) 70%,
        color-mix(in srgb, var(--pf-bg, #080808) 92%, transparent) 100%
    );
}

.tracks-wrapper {
    position: relative;
    transform: rotate(var(--pf-angle, -35deg));
    width: 250vmax;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -8vmax;
}

.p-track {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.p-track-inner {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.p-track-top .p-track-inner { animation: p-ltr var(--pf-speed, 32s) linear infinite; }
.p-track-top:hover .p-track-inner { animation-play-state: paused; }
.p-track-bottom .p-track-inner { animation: p-rtl var(--pf-speed, 32s) linear infinite; }
.p-track-bottom:hover .p-track-inner { animation-play-state: paused; }

@keyframes p-ltr { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes p-rtl { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.p-card {
    flex-shrink: 0;
    width: 240px;
    height: 380px;
    display: block;
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-card:hover { transform: scale(1.04) translateY(-4px); z-index: 5; }

.p-card-inner {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
    background: #111;
}

.p-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s;
    filter: saturate(0.85) brightness(0.92);
    -webkit-user-drag: none;
}

.p-card:hover .p-card-inner img {
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1);
}

.p-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 14px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.3s;
}

.p-card:hover .p-card-overlay { opacity: 1; }

.p-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    color: #fff;
    line-height: 1.2;
}

.p-card-link {
    font-style: normal;
    font-size: 1.05rem;
    color: #c8f060;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.2s;
}

.p-card:hover .p-card-link { transform: translate(2px, -2px); }

a.p-card:hover .p-card-inner {
    border-color: rgba(200, 240, 96, 0.35);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(200, 240, 96, 0.2);
}

.portfolio-wordmark {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.35);
    pointer-events: none;
}


/* ─── SEO Journey ───────────────────────────────── */
.seo-section {
    background: linear-gradient(170deg, var(--bg-blue) 0%, var(--bg-blue2) 100%);
    padding: 72px 40px;
    color: #fff;
}

.seo-section .section-label { color: var(--accent2); }
.seo-section .section-title { color: #fff; }
.seo-section .section-desc { color: rgba(255, 255, 255, 0.65); }

.seo-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.journey {
    margin-top: 36px;
    padding-left: 36px;
    position: relative;
    max-width: 700px;
}

.journey::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent2));
    border-radius: 1px;
    opacity: 0.5;
}

.j-step { position: relative; padding: 0 0 40px 28px; }
.j-step:last-child { padding-bottom: 0; }

.j-dot {
    position: absolute;
    left: -28px;
    top: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-blue);
    box-shadow: 0 0 0 3px rgba(59, 107, 245, 0.3);
}

.j-dot.green {
    background: var(--accent2);
    box-shadow: 0 0 0 3px rgba(0, 200, 150, 0.3);
}

.j-week {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent2);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.j-step h4 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.j-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.j-work {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    font-style: italic;
}


/* ─── FAQ ───────────────────────────────────────── */
.faq-columns { margin-top: 36px; }
.faq-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.faq-cat-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    color: var(--text);
}
.faq-list { max-width: 100%; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    gap: 16px;
}

.faq-q:hover { color: var(--accent); }

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 500px; }

.faq-a-inner {
    padding: 0 0 16px;
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.7;
}


/* ─── Blog ──────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.blog-img { height: 150px; position: relative; overflow: hidden; }

.blog-cat {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 99px;
    background: var(--accent);
    color: #fff;
}

.blog-card-body { padding: 18px; }
.blog-date { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; }

.blog-ctitle {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
}

.blog-excerpt {
    font-size: 12px;
    color: var(--text-sec);
    line-height: 1.55;
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
}


/* ─── CTA Band ──────────────────────────────────── */
.cta-band {
    background: var(--accent);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
}

.cta-band h2 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-band p { font-size: 15px; opacity: 0.85; margin-bottom: 20px; }

.cta-band-btn {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    background: #fff;
    color: var(--accent);
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-band-btn:hover { transform: translateY(-2px); }


/* ─── Footer ────────────────────────────────────── */
.footer {
    padding: 52px 40px 28px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 40px;
}

.footer-brand { max-width: 280px; }

.footer-brand p {
    font-size: 13px;
    color: var(--text-sec);
    margin-top: 10px;
    line-height: 1.6;
}

.footer-col h5 {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-sec);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-text-block {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.8;
}
.footer-text-block a {
    display: inline;
    color: var(--text-sec);
}
.footer-text-block a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}


/* ─── Text + Image Section ──────────────────────── */
.text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.text-image-reverse { direction: rtl; }
.text-image-reverse > * { direction: ltr; }

.text-image-img img {
    width: 100%;
    border-radius: 12px;
    display: block;
}


/* ─── Gallery ───────────────────────────────────── */
.gallery-grid {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.gallery-caption {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: center;
}


/* ─── Testimonials ──────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.testimonial-card {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-initials {
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author strong {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
}

.testimonial-author small {
    font-size: 12px;
    color: var(--text-muted);
}


/* ─── Pricing ───────────────────────────────────── */
.pricing-grid {
    display: grid;
    gap: 20px;
    margin-top: 28px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s;
}

.pricing-card:hover { border-color: rgba(59, 107, 245, 0.3); }

.pricing-featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 32px rgba(59, 107, 245, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 99px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.pricing-price {
    font-family: var(--font-head);
    font-size: 40px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-period {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-sec);
    border-bottom: 1px solid var(--border);
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent2);
    font-weight: 700;
}

.pricing-btn {
    display: block;
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.pricing-btn:hover { border-color: var(--accent); color: var(--accent); }

.pricing-btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.pricing-btn-primary:hover { background: var(--accent-hover); color: #fff; }


/* ─── Team ──────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s;
}

.team-card:hover { border-color: rgba(59, 107, 245, 0.3); }

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    display: block;
}

.team-placeholder {
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 28px;
}

.team-name {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.team-role {
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 10px;
}

.team-bio {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.55;
    margin-bottom: 10px;
}

.team-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}


/* ─── Logo Strip ────────────────────────────────── */
.logo-strip-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.logo-strip-wrap {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.logo-strip-wrap::before,
.logo-strip-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.logo-strip-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.logo-strip-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.logo-strip-track {
    display: flex;
    gap: 48px;
    align-items: center;
    width: max-content;
    animation: logoScroll 30s linear infinite;
}

.logo-strip-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-strip-item {
    flex-shrink: 0;
    display: block;
    text-decoration: none;
}

.logo-strip-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s;
}

.logo-strip-item:hover img {
    filter: grayscale(0%) opacity(1);
}


/* ─── Services Grid ─────────────────────────────── */
.services-grid {
    display: grid;
    gap: 20px;
    margin-top: 28px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 28px;
    margin-bottom: 12px;
    line-height: 1;
}

.service-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.6;
}


/* ─── Video ─────────────────────────────────────── */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* ─── Contact Info ──────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.contact-card {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.contact-icon {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1;
}

.contact-card h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.5;
    margin-bottom: 6px;
}

.contact-card a {
    font-size: 13px;
    color: var(--accent);
    word-break: break-all;
}


/* ─── Banner ────────────────────────────────────── */
.banner-section {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    inset: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 40px;
    max-width: 700px;
}

.banner-title {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.banner-text {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 24px;
    line-height: 1.7;
}

.banner-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: var(--text);
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.banner-btn:hover { transform: translateY(-2px); }


/* ─── Divider ───────────────────────────────────── */
.divider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.divider-line {
    width: 100%;
    max-width: 1200px;
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

.divider-dots {
    display: flex;
    gap: 8px;
}

.divider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-muted);
}


/* ─── Form Section ──────────────────────────────── */
.ws-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.ws-form-full { grid-column: 1 / -1; }
.ws-form-half { grid-column: span 1; }

.ws-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-sec);
    margin-bottom: 4px;
}

.ws-form input,
.ws-form textarea,
.ws-form select {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.ws-form input:focus,
.ws-form textarea:focus,
.ws-form select:focus {
    border-color: var(--accent);
}

.ws-form input::placeholder,
.ws-form textarea::placeholder {
    color: var(--text-muted);
}

.ws-form textarea {
    resize: vertical;
    min-height: 80px;
}

.ws-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%239999b0' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.ws-form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-sec);
    cursor: pointer;
    padding: 8px 0;
}

.ws-form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.ws-form-btn {
    display: inline-block;
    padding: 13px 32px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.ws-form-btn:hover {
    background: var(--accent-hover);
}


/* ─── Locations ─────────────────────────────────── */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.location-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.2s;
}

.location-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.location-map {
    height: 160px;
    overflow: hidden;
    pointer-events: none;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    padding: 18px;
}

.location-info h3 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.location-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
}

/* Location detail page */
.location-detail-grid {
    display: flex;
    justify-content: flex-end;
}

.location-detail-sidebar {
    width: 360px;
    flex-shrink: 0;
}

.location-map-large {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.location-map-large iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-sidebar-card {
    background: var(--bg-off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.location-sidebar-card h4 {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-sidebar-card p {
    font-size: 13px;
    color: var(--text-sec);
    margin-bottom: 6px;
    line-height: 1.5;
}

.location-sidebar-card p a {
    color: var(--accent);
}


/* ─── Custom HTML ───────────────────────────────── */
.custom-html-full {
    width: 100%;
    overflow: hidden;
}


/* ─── Responsive ────────────────────────────────── */
@media (max-width: 968px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        min-height: auto;
        gap: 32px;
    }

    .hero h1 { font-size: 32px; }
    .hero .cursor { height: 30px; }
    .hero-form { max-width: 100%; }
    .hero-form-grid { grid-template-columns: 1fr; }

    .stats { flex-wrap: wrap; gap: 24px; padding: 28px 20px; }

    .section { padding: 48px 20px; }

    .hiw { grid-template-columns: 1fr; }

    .fw-section { padding: 48px 20px; }

    .pj-outer { height: auto; }
    .pj-sticky { position: relative; height: auto; padding: 48px 20px; }
    .pj-track { flex-direction: column; gap: 16px; }
    .pj-card { width: 100%; }
    .pj-progress { display: none; }

    .portfolio-header { padding: 40px 20px 16px; }
    .portfolio-stage { height: 480px; }

    .seo-section { padding: 48px 20px; }

    .blog-grid { grid-template-columns: 1fr; }
    .faq-two-col { grid-template-columns: 1fr; }

    .text-image { grid-template-columns: 1fr; gap: 24px; }
    .text-image-reverse { direction: ltr; }
    .gallery-grid { grid-template-columns: 1fr 1fr !important; }

    .pricing-grid { grid-template-columns: 1fr !important; }
    .services-grid { grid-template-columns: 1fr !important; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .banner-title { font-size: 24px; }
    .banner-content { padding: 40px 20px; }

    .location-detail-grid { flex-direction: column; }
    .location-detail-sidebar { width: 100%; }
    .locations-grid { grid-template-columns: 1fr; }

    .ws-form-grid { grid-template-columns: 1fr; }
    .ws-form-half { grid-column: span 1; }

    .cta-band { padding: 36px 20px; }
    .cta-band h2 { font-size: 22px; }

    .footer { padding: 36px 20px 20px; }
    .footer-top { flex-direction: column; gap: 24px; }
}

/* Location Page Hero - Responsive */
.location-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-top: 24px;
}

.location-hero-text {
    max-width: 620px;
}

@media (max-width: 768px) {
    .location-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .location-hero-image {
        order: 2; /* Image below text on mobile */
    }
    
    .location-hero-text {
        max-width: 100%;
    }
    
    .location-hero-image img {
        max-width: 100% !important;
    }
}