/*
Theme Name: QuickTechPro
Theme URI: https://quicktechpro.com
Author: QuickTechPro
Author URI: https://quicktechpro.com
Description: Custom WordPress theme for QuickTechPro
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: quicktechpro
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
    --orange:       #E8591A;
    --orange-hover: #cf4f15;
    --dark:         #1a1a1a;
    --hero-bg:      #0d1117;
    --text:         #333333;
    --light-gray:   #f9f9f9;
    --border:       #e5e5e5;
    --font:         'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }

html { overflow-x: hidden; }
body {
    font-family: var(--font);
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    padding-top: 72px; /* offset for fixed header */
    overflow-x: hidden;
}

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* =====================================================
   HEADER — FIXED STICKY
   ===================================================== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0,0,0,.06);
    transition: box-shadow .3s ease;
}

#site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.12);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.site-logo { display:flex; align-items:center; gap:12px; flex-shrink:0; }

.logo-icon {
    width: 44px; height: 44px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width:24px; height:24px;
    fill:none; stroke:#fff;
    stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}

.logo-icon img { width:44px; height:44px; border-radius:10px; object-fit:cover; }

.logo-text-wrap { display:flex; flex-direction:column; line-height:1.2; }

.logo-name { font-size:20px; font-weight:700; color:var(--dark); letter-spacing:-.3px; }
.logo-name span { color:var(--orange); }

.logo-tagline { font-size:10px; font-weight:400; color:#888; letter-spacing:1.2px; text-transform:uppercase; }

/* Nav */
.main-nav { flex:1; display:flex; justify-content:center; }
.main-nav ul { display:flex; align-items:center; gap:4px; }

.main-nav ul li a {
    display:inline-block; padding:6px 16px;
    font-size:15px; font-weight:500; color:var(--text);
    border-radius:4px; position:relative; transition:color .2s;
}

.main-nav ul li a::after {
    content:''; position:absolute;
    bottom:-2px; left:16px; right:16px;
    height:2px; background:var(--orange);
    border-radius:2px; transform:scaleX(0); transition:transform .2s;
}

.main-nav ul li a:hover                        { color:var(--orange); }
.main-nav ul li a:hover::after                 { transform:scaleX(1); }
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a          { color:var(--orange); font-weight:600; }
.main-nav ul li.current-menu-item > a::after,
.main-nav ul li.current_page_item > a::after   { transform:scaleX(1); }

/* CTA Button */
.header-cta { flex-shrink:0; }

.btn-support {
    display:inline-flex; align-items:center;
    background:var(--orange); color:#fff;
    font-family:var(--font); font-size:15px; font-weight:600;
    padding:12px 24px; border-radius:50px; border:none; cursor:pointer;
    transition:background .2s, transform .15s, box-shadow .2s;
    white-space:nowrap;
    box-shadow:0 2px 12px rgba(232,89,26,.3);
}

.btn-support:hover {
    background:var(--orange-hover); color:#fff;
    transform:translateY(-1px);
    box-shadow:0 4px 18px rgba(232,89,26,.4);
}

/* Hamburger */
.hamburger {
    display:none; flex-direction:column; justify-content:center; gap:5px;
    width:36px; height:36px; background:none; border:none; cursor:pointer;
    padding:4px; border-radius:6px; transition:background .2s;
}
.hamburger:hover { background:var(--light-gray); }
.hamburger span { display:block; width:22px; height:2px; background:var(--dark); border-radius:2px; transition:transform .3s, opacity .3s; }
.hamburger.active span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav { display:none; background:#fff; border-top:1px solid var(--border); padding:16px 32px 24px; }
.mobile-nav.open { display:block; }
.mobile-nav ul { display:flex; flex-direction:column; gap:4px; }
.mobile-nav ul li a { display:block; padding:10px 12px; font-size:15px; font-weight:500; color:var(--text); border-radius:8px; transition:background .2s, color .2s; }
.mobile-nav ul li a:hover,
.mobile-nav ul li.current-menu-item > a,
.mobile-nav ul li.current_page_item > a { background:#fff4ef; color:var(--orange); }
.mobile-nav .btn-support { display:inline-flex; margin-top:16px; width:100%; justify-content:center; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    background: var(--hero-bg);
    background-image:
        radial-gradient(circle at 18% 55%, rgba(232,89,26,.09) 0%, transparent 45%),
        radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

/* Left */
.hero-content { max-width: 580px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    color: #cdd6f4; font-size: 13px; font-weight: 500;
    padding: 7px 16px; border-radius: 50px; margin-bottom: 28px;
}

.hero-badge .dot {
    width:8px; height:8px; background:#4ade80; border-radius:50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.6; transform:scale(1.3); }
}

.hero-title {
    font-size: clamp(40px,5vw,62px);
    font-weight: 800; line-height: 1.1;
    color: #ffffff; margin-bottom: 16px; letter-spacing: -1px;
}

.hero-title .highlight { color:var(--orange); display:block; }

.hero-title .cursor {
    display:inline-block; width:4px; height:.85em;
    background:var(--orange); margin-left:4px;
    vertical-align:middle; border-radius:2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc {
    font-size:16px; color:#94a3b8; line-height:1.75;
    margin-bottom:40px; max-width:480px;
}

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

.btn-hero-primary {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--orange); color:#fff;
    font-family:var(--font); font-size:15px; font-weight:600;
    padding:14px 28px; border-radius:10px; border:none; cursor:pointer;
    transition:background .2s, transform .15s, box-shadow .2s;
    box-shadow:0 4px 20px rgba(232,89,26,.4);
}
.btn-hero-primary:hover { background:var(--orange-hover); transform:translateY(-2px); box-shadow:0 6px 28px rgba(232,89,26,.5); color:#fff; }
.btn-hero-primary .arrow { font-size:18px; transition:transform .2s; }
.btn-hero-primary:hover .arrow { transform:translateX(4px); }

.btn-hero-secondary {
    display:inline-flex; align-items:center; gap:8px;
    background:transparent; color:#fff;
    font-family:var(--font); font-size:15px; font-weight:600;
    padding:14px 28px; border-radius:10px;
    border:2px solid rgba(255,255,255,.2); cursor:pointer;
    transition:border-color .2s, background .2s, transform .15s;
}
.btn-hero-secondary:hover { border-color:rgba(255,255,255,.5); background:rgba(255,255,255,.05); transform:translateY(-2px); color:#fff; }

/* Right visual */
.hero-visual { flex-shrink:0; position:relative; width:440px; height:380px; }

.hero-device {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-52%);
    width:320px; height:220px;
    background:#1e2433; border-radius:14px;
    border:2px solid rgba(255,255,255,.08);
    box-shadow:0 24px 60px rgba(0,0,0,.5);
    display:flex; flex-direction:column; overflow:hidden;
}

.device-topbar {
    height:28px; background:#161b27;
    display:flex; align-items:center; padding:0 12px; gap:6px;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.device-topbar .dot-r { width:9px; height:9px; border-radius:50%; background:#ff5f57; }
.device-topbar .dot-y { width:9px; height:9px; border-radius:50%; background:#ffbd2e; }
.device-topbar .dot-g { width:9px; height:9px; border-radius:50%; background:#28c941; }

.device-screen { flex:1; padding:14px 16px; display:flex; flex-direction:column; gap:9px; }

.code-line { height:7px; border-radius:4px; }
.code-line:nth-child(1) { width:80%; background:#7c3aed; }
.code-line:nth-child(2) { width:55%; background:#0891b2; }
.code-line:nth-child(3) { width:70%; background:#059669; }
.code-line:nth-child(4) { width:45%; background:#d97706; }
.code-line:nth-child(5) { width:65%; background:#dc2626; }
.code-line:nth-child(6) { width:50%; background:#7c3aed; }

.device-stand {
    position:absolute; bottom:52px; left:50%; transform:translateX(-50%);
    width:50px; height:12px; background:#1e2433;
    border-radius:0 0 6px 6px; border:2px solid rgba(255,255,255,.07); border-top:none;
}

.device-base {
    position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
    width:110px; height:8px; background:#1e2433;
    border-radius:4px; border:2px solid rgba(255,255,255,.06);
}

.float-badge {
    position:absolute; width:50px; height:50px; border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    font-size:22px; color:#fff;
}

.float-badge-check {
    top:16px; right:12px;
    background:#4ade80;
    box-shadow:0 8px 24px rgba(74,222,128,.4);
    animation:float1 3s ease-in-out infinite;
}

.float-badge-bolt {
    bottom:56px; left:12px;
    background:var(--orange);
    box-shadow:0 8px 24px rgba(232,89,26,.45);
    animation:float2 3.5s ease-in-out infinite;
}

.float-check-inner {
    position:absolute; top:88px; right:84px;
    width:36px; height:36px; border-radius:50%;
    background:#4ade80;
    display:flex; align-items:center; justify-content:center;
    font-size:15px; color:#fff;
    box-shadow:0 4px 12px rgba(74,222,128,.5);
    animation:float1 2.8s ease-in-out infinite .4s;
}

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* Stats bar */
.hero-stats {
    max-width:1280px; margin:60px auto 0;
    padding: 52px 80px 0;
    display:grid; grid-template-columns:repeat(4,1fr);
    gap: 0 24px;
    border-top:1px solid rgba(255,255,255,.1);
}

.stat-item {
    text-align:center;
    padding: 0 40px;
    position:relative;
}
.stat-item + .stat-item::before {
    content:''; position:absolute; left:0; top:5%; height:90%;
    width:1px; background:rgba(255,255,255,.1);
}

.stat-number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: #64748b;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}


/* ── Free Diagnosis — New Styles ─────────────────────────────────────────── */

/* Hero guarantee badge */
.hero-guarantee {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3);
    border-radius: 20px; padding: 8px 16px; margin-top: 20px;
    font-size: 13px; font-weight: 600; color: #4ade80;
}
.hero-guarantee svg {
    width: 15px; height: 15px; stroke: #4ade80;
    fill: none; stroke-width: 2; flex-shrink: 0;
}

/* Pricing free tag */
.pricing-free-tag {
    display: inline-block; background: #f0fdf4; color: #16a34a;
    border: 1.5px solid #bbf7d0; border-radius: 20px;
    padding: 5px 16px; font-size: 13px; font-weight: 700;
    margin-bottom: 10px;
}

/* 4-step grid */
.steps-grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
@media (max-width: 1024px) { .steps-grid-4 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px)  { .steps-grid-4 { grid-template-columns: 1fr !important; } }

/* Steps CTA note */
.steps-cta-note {
    margin: 12px 0 0; font-size: 13px; color: #64748b;
    text-align: center;
}

/* CTA eyebrow */
.cta-eyebrow {
    display: inline-block; background: rgba(232,89,26,.12);
    border: 1px solid rgba(232,89,26,.3); border-radius: 20px;
    padding: 5px 16px; font-size: 12px; font-weight: 700;
    color: #e8591a; letter-spacing: .06em; margin-bottom: 18px;
}

/* CTA mini steps */
.cta-steps-mini {
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap; margin: 28px 0 32px;
}
.csm-step {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px; padding: 12px 16px;
}
.csm-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: #e8591a; color: #fff; font-weight: 800; font-size: 13px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.csm-text { font-size: 13px; color: #e2e8f0; font-weight: 600; line-height: 1.4; }
.csm-text small { color: #64748b; font-weight: 400; display: block; font-size: 11px; margin-top: 2px; }
.csm-arrow { color: #e8591a; font-size: 20px; font-weight: 700; }
@media (max-width: 768px) {
    .cta-steps-mini { flex-direction: column; }
    .csm-arrow { transform: rotate(90deg); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width:900px) {
    .hero-inner { flex-direction:column; text-align:center; padding:0 24px; gap:40px; }
    .hero-content { max-width:100%; }
    .hero-desc { max-width:100%; }
    .hero-badge { margin:0 auto 28px; }
    .hero-buttons { justify-content:center; }
    .hero-visual { width:300px; height:260px; }
    .hero-device { width:260px; height:180px; }
    .hero-stats { grid-template-columns:repeat(2,1fr); gap:32px 0; padding:40px 24px 0; margin-top:40px; }
    .stat-item:nth-child(3)::before { display:none; }
}

@media (max-width:768px) {
    .main-nav   { display:none; }
    .header-cta { display:none; }
    .hamburger  { display:flex; }
    .header-inner { padding:0 20px; }
    .hero-section { padding:48px 0 40px; min-height:auto; }
}

@media (max-width:480px) {
    .hero-title { font-size:34px; }
    .stat-item + .stat-item::before { display:none; }
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container { max-width:1280px; margin:0 auto; padding:0 48px; }
.section-pad { padding:100px 0; }

.section-label {
    font-size:12px; font-weight:700; letter-spacing:2px;
    text-transform:uppercase; color:var(--orange);
    margin-bottom:14px; display:block; text-align:center;
}

.section-title {
    font-size:clamp(28px,3.5vw,42px); font-weight:800;
    color:#111; text-align:center; line-height:1.2;
    letter-spacing:-.5px; margin-bottom:16px;
}

.section-subtitle {
    font-size:16px; color:#64748b; text-align:center;
    max-width:580px; margin:0 auto 60px; line-height:1.7;
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.animate-up {
    opacity:0; transform:translateY(36px);
    transition:opacity .6s ease, transform .6s ease;
}
.animate-up.visible { opacity:1; transform:translateY(0); }

.animate-left {
    opacity:0; transform:translateX(-40px);
    transition:opacity .7s ease, transform .7s ease;
}
.animate-left.visible { opacity:1; transform:translateX(0); }

.animate-right {
    opacity:0; transform:translateX(40px);
    transition:opacity .7s ease, transform .7s ease;
}
.animate-right.visible { opacity:1; transform:translateX(0); }

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-section { background:#fff; }

.services-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}

.service-card {
    background:#fff; border:1px solid #f0f0f0; border-radius:16px;
    padding:32px 28px; text-align:center;
    transition:transform .3s ease, box-shadow .3s ease;
    box-shadow:0 2px 12px rgba(0,0,0,.04);
}

.service-card:hover {
    transform:translateY(-6px);
    box-shadow:0 16px 40px rgba(0,0,0,.1);
}

.service-icon {
    width:56px; height:56px; border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 20px;
}

.service-icon svg { width:26px; height:26px; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.icon-orange { background:#fff4ef; }
.icon-orange svg { stroke:var(--orange); }
.icon-blue   { background:#eff6ff; }
.icon-blue   svg { stroke:#3b82f6; }
.icon-green  { background:#f0fdf4; }
.icon-green  svg { stroke:#22c55e; }
.icon-purple { background:#faf5ff; }
.icon-purple svg { stroke:#a855f7; }

.service-card h3 { font-size:17px; font-weight:700; color:#111; margin-bottom:10px; }
.service-card p  { font-size:14px; color:#64748b; line-height:1.65; margin-bottom:14px; }

.service-highlight {
    font-size:13px; font-weight:700; color:var(--orange);
    margin-bottom:16px; display:block;
}

.service-link {
    font-size:13px; font-weight:600; color:var(--orange);
    transition:gap .2s;
}
.service-link:hover { text-decoration:underline; }

/* =====================================================
   STEPS SECTION
   ===================================================== */
.steps-section { background:#f8fafc; }

.steps-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:40px;
    margin-bottom:48px; position:relative;
}

.steps-grid::before {
    content:''; position:absolute;
    top:28px; left:calc(16.67% + 20px); right:calc(16.67% + 20px);
    height:2px; background:linear-gradient(90deg,var(--orange),#f97316);
    z-index:0;
}

.step-card { text-align:center; padding:0 20px; position:relative; z-index:1; }

.step-number {
    width:56px; height:56px; border-radius:50%;
    background:#e2e8f0; color:#64748b;
    font-size:20px; font-weight:800;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 20px; position:relative; z-index:2;
    border:3px solid #fff; box-shadow:0 0 0 3px #e2e8f0;
    transition:background .3s, color .3s, box-shadow .3s;
}

.step-number.active,
.step-card:hover .step-number {
    background:var(--orange); color:#fff;
    box-shadow:0 0 0 3px rgba(232,89,26,.2);
}

.step-card h3 { font-size:18px; font-weight:700; color:#111; margin-bottom:12px; }
.step-card p  { font-size:14px; color:#64748b; line-height:1.7; }

.steps-cta { text-align:center; }

.btn-cta-orange {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--orange); color:#fff;
    font-family:var(--font); font-size:15px; font-weight:600;
    padding:15px 36px; border-radius:10px; border:none; cursor:pointer;
    text-decoration:none;
    transition:background .2s, transform .15s, box-shadow .2s;
    box-shadow:0 4px 20px rgba(232,89,26,.35);
}
.btn-cta-orange:hover { background:var(--orange-hover); transform:translateY(-2px); box-shadow:0 6px 28px rgba(232,89,26,.45); color:#fff; }

/* =====================================================
   TRUST SECTION
   ===================================================== */
.trust-section { background:#fff; }

.trust-inner {
    display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}

.trust-title {
    font-size:clamp(28px,3.5vw,40px); font-weight:800;
    color:#111; line-height:1.2; letter-spacing:-.5px;
    margin-bottom:16px;
}

.trust-desc { font-size:15px; color:#64748b; line-height:1.75; margin-bottom:36px; }

.trust-features { display:grid; grid-template-columns:1fr 1fr; gap:20px; }

.trust-feat { display:flex; align-items:flex-start; gap:12px; }

.feat-icon {
    width:36px; height:36px; border-radius:10px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
}
.feat-icon svg { width:18px; height:18px; fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.feat-orange { background:#fff4ef; }
.feat-orange svg { stroke:var(--orange); }
.feat-green  { background:#f0fdf4; }
.feat-green  svg { stroke:#22c55e; }

.trust-feat strong { display:block; font-size:14px; font-weight:700; color:#111; margin-bottom:2px; }
.trust-feat p { font-size:13px; color:#64748b; line-height:1.5; margin:0; }

/* Chat window */
.trust-chat { display:flex; justify-content:center; }

.chat-window {
    background:#1e2433; border-radius:16px; width:100%; max-width:400px;
    overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,.2);
    border:1px solid rgba(255,255,255,.07);
}

.chat-topbar {
    background:#161b27; padding:12px 16px;
    display:flex; align-items:center; gap:6px;
    border-bottom:1px solid rgba(255,255,255,.05);
}
.chat-dot { width:10px; height:10px; border-radius:50%; }
.chat-dot.red    { background:#ff5f57; }
.chat-dot.yellow { background:#ffbd2e; }
.chat-dot.green  { background:#28c941; }
.chat-title { font-size:12px; color:#64748b; margin-left:8px; }

.chat-body { padding:20px 16px; display:flex; flex-direction:column; gap:16px; }

.chat-msg { display:flex; gap:10px; align-items:flex-start; }
.chat-msg.sent { flex-direction:row-reverse; }

.chat-avatar {
    width:32px; height:32px; border-radius:50%;
    background:var(--orange); color:#fff;
    font-size:11px; font-weight:700;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}

.chat-bubble {
    background:#2a3347; color:#cbd5e1;
    font-size:13px; line-height:1.6; padding:10px 14px;
    border-radius:12px 12px 12px 4px; max-width:85%;
    position:relative;
}
.chat-msg.sent .chat-bubble { background:var(--orange); color:#fff; border-radius:12px 12px 4px 12px; }

.chat-time { display:block; font-size:10px; color:#64748b; margin-top:4px; text-align:right; }
.chat-msg.sent .chat-time { color:rgba(255,255,255,.7); }

.chat-rating { padding:12px 0 4px; border-top:1px solid rgba(255,255,255,.06); display:flex; align-items:center; gap:10px; }
.chat-rating span:first-child { color:#fbbf24; font-size:14px; }
.rating-label { font-size:12px; color:#64748b; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background:#f8fafc; overflow:hidden; }

.reviews-carousel { position:relative; overflow:hidden; padding:0 0 16px; }
.reviews-track { display:flex; transition:none; justify-content:center; }

.review-card {
    background:#fff; border-radius:16px; padding:36px;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    min-width:700px; max-width:700px;
    border:1px solid #f0f0f0;
    display:none; animation:fadeSlide .5s ease;
}
.review-card.active-card { display:block; }

@keyframes fadeSlide {
    from { opacity:0; transform:translateY(16px); }
    to   { opacity:1; transform:translateY(0); }
}

.review-stars { color:#fbbf24; font-size:22px; letter-spacing:2px; margin-bottom:16px; }

.review-text {
    font-size:16px; color:#334155; line-height:1.75;
    font-style:italic; margin-bottom:24px;
}

.review-author { display:flex; align-items:center; gap:14px; }

.review-avatar {
    width:44px; height:44px; border-radius:50%;
    background:var(--orange); color:#fff;
    font-size:14px; font-weight:700;
    display:flex; align-items:center; justify-content:center;
    flex-shrink:0; background-size:cover; background-position:center;
}

.review-author strong { display:block; font-size:15px; color:#111; }
.review-author span   { font-size:13px; color:#64748b; }

.google-logo { width:18px; height:18px; margin-left:auto; flex-shrink:0; }

.review-loading { text-align:center; padding:60px 0; color:#64748b; }

.spinner {
    width:36px; height:36px; border-radius:50%;
    border:3px solid #e2e8f0; border-top-color:var(--orange);
    animation:spin 0.8s linear infinite; margin:0 auto 16px;
}
@keyframes spin { to { transform:rotate(360deg); } }

.carousel-controls { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:32px; }

.carousel-btn {
    width:40px; height:40px; border-radius:50%; border:2px solid #e2e8f0;
    background:#fff; cursor:pointer; font-size:16px; color:#64748b;
    display:flex; align-items:center; justify-content:center;
    transition:border-color .2s, color .2s, background .2s;
}
.carousel-btn:hover { border-color:var(--orange); color:var(--orange); background:#fff4ef; }

.carousel-dots { display:flex; gap:8px; align-items:center; }
.carousel-dot {
    width:8px; height:8px; border-radius:50%; background:#e2e8f0;
    border:none; cursor:pointer; transition:background .2s, transform .2s;
}
.carousel-dot.active { background:var(--orange); transform:scale(1.3); }

/* Fallback static track */
.static-track { display:flex; justify-content:center; }

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section { background:#fff; }

.blog-header {
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:40px;
}

.section-title-left {
    font-size:clamp(24px,3vw,34px); font-weight:800; color:#111;
    letter-spacing:-.5px;
}

.view-all-link {
    font-size:14px; font-weight:600; color:var(--orange);
    transition:opacity .2s;
}
.view-all-link:hover { opacity:.75; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }

.blog-card {
    border-radius:14px; overflow:hidden; border:1px solid #f0f0f0;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
    transition:transform .3s, box-shadow .3s;
    background:#fff;
}
.blog-card:hover { transform:translateY(-5px); box-shadow:0 16px 36px rgba(0,0,0,.09); }

.blog-thumb { position:relative; aspect-ratio:16/9; overflow:hidden; background:#1e2433; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.blog-card:hover .blog-thumb img { transform:scale(1.04); }

.blog-thumb-placeholder {
    width:100%; height:100%; background:#1e2433;
    display:flex; align-items:center; justify-content:center;
}
.blog-thumb-placeholder svg { width:40px; height:40px; stroke:#374151; fill:none; stroke-width:1.5; }

.blog-cat {
    position:absolute; top:14px; left:14px;
    background:var(--orange); color:#fff;
    font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
    padding:4px 10px; border-radius:50px;
}

.blog-body { padding:20px 22px; }
.blog-date { font-size:12px; color:#94a3b8; display:block; margin-bottom:8px; }
.blog-body h3 { font-size:16px; font-weight:700; color:#111; line-height:1.4; margin-bottom:10px; }
.blog-body h3 a { color:inherit; }
.blog-body h3 a:hover { color:var(--orange); }
.blog-body p { font-size:13px; color:#64748b; line-height:1.65; }

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
    background: #0f172a;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(232,89,26,.12) 0%, transparent 60%),
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.055) 1px, transparent 0);
    background-size: 100% 100%, 28px 28px;
    padding:100px 0;
}

.cta-inner { text-align:center; }
.cta-inner h2 { font-size:clamp(28px,4vw,46px); font-weight:800; color:#fff; letter-spacing:-.5px; margin-bottom:16px; }
.cta-inner p  { font-size:16px; color:#94a3b8; max-width:520px; margin:0 auto 40px; line-height:1.7; }

.cta-buttons { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; margin-bottom:28px; }

.btn-cta-outline {
    display:inline-flex; align-items:center; gap:8px;
    background:transparent; color:#fff;
    font-family:var(--font); font-size:15px; font-weight:600;
    padding:15px 32px; border-radius:10px;
    border:2px solid rgba(255,255,255,.2); cursor:pointer; text-decoration:none;
    transition:border-color .2s, background .2s, transform .15s;
}
.btn-cta-outline svg { width:16px; height:16px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; flex-shrink:0; }
.btn-cta-outline:hover { border-color:rgba(255,255,255,.5); background:rgba(255,255,255,.06); transform:translateY(-2px); color:#fff; }

.cta-trust-badges { display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; }
.cta-trust-badges span { font-size:13px; color:#64748b; }

/* =====================================================
   FOOTER
   ===================================================== */
#site-footer { background:#0d1117; }

.footer-main { padding:72px 0 56px; }

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

.footer-logo {
    display:flex; align-items:center; gap:12px; margin-bottom:16px;
}
.footer-logo .logo-icon {
    width:40px; height:40px; background:#1e2433;
    border-radius:10px; display:flex; align-items:center; justify-content:center;
    border:1px solid rgba(255,255,255,.08);
}
.footer-logo .logo-icon svg { width:22px; height:22px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.footer-logo .logo-name { font-size:18px; font-weight:700; color:#fff; }
.footer-logo .logo-name span { color:var(--orange); }

.footer-tagline { font-size:14px; color:#64748b; line-height:1.7; margin-bottom:24px; max-width:280px; }

.footer-socials { display:flex; gap:10px; }
.social-btn {
    width:38px; height:38px; border-radius:10px; background:#1e2433;
    border:1px solid rgba(255,255,255,.07);
    display:flex; align-items:center; justify-content:center;
    transition:background .2s, border-color .2s;
}
.social-btn:hover { background:#2a3347; border-color:rgba(255,255,255,.15); }
.social-btn svg { width:16px; height:16px; fill:none; stroke:#94a3b8; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.footer-col h4 { font-size:15px; font-weight:700; color:#fff; margin-bottom:20px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a { font-size:14px; color:#64748b; transition:color .2s; }
.footer-col ul li a:hover { color:#fff; }

.footer-contact-list { gap:14px !important; }
.footer-contact-list li {
    display:flex; align-items:flex-start; gap:10px;
    font-size:14px; color:#64748b;
}
.footer-contact-list li a { color:#64748b; transition:color .2s; }
.footer-contact-list li a:hover { color:#fff; }
.footer-contact-list li svg {
    width:15px; height:15px; flex-shrink:0; margin-top:2px;
    fill:none; stroke:#475569; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}

.footer-bottom {
    border-top:1px solid rgba(255,255,255,.06); padding:20px 0;
}
.footer-bottom-inner { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; }
.footer-bottom p { font-size:13px; color:#475569; }
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a { font-size:13px; color:#475569; transition:color .2s; }
.footer-bottom-links a:hover { color:#fff; }

/* Scroll-to-top */
.scroll-top {
    position:fixed; bottom:32px; right:32px; z-index:999;
    width:44px; height:44px; border-radius:50%;
    background:#1e2433; border:1px solid rgba(255,255,255,.1);
    color:#fff; cursor:pointer; display:none;
    align-items:center; justify-content:center;
    transition:background .2s, transform .2s;
    box-shadow:0 4px 16px rgba(0,0,0,.3);
}
.scroll-top.visible { display:flex; }
.scroll-top:hover   { background:var(--orange); transform:translateY(-3px); }
.scroll-top svg     { width:18px; height:18px; fill:none; stroke:#fff; stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }

/* =====================================================
   RESPONSIVE — Sections
   ===================================================== */
@media (max-width:1024px) {
    .services-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid   { grid-template-columns:1fr 1fr; gap:40px; }
    .trust-inner   { gap:48px; }
}

@media (max-width:900px) {
    .trust-inner  { grid-template-columns:1fr; }
    .trust-chat   { order:-1; }
    .chat-window  { max-width:100%; }
    .trust-features { grid-template-columns:1fr; }
    .steps-grid   { grid-template-columns:1fr; gap:32px; }
    .steps-grid::before { display:none; }
    .blog-grid    { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
    .review-card  { min-width:90vw; max-width:90vw; }
}

@media (max-width:768px) {
    .container      { padding:0 24px; }
    .section-pad    { padding:64px 0; }
    .services-grid  { grid-template-columns:1fr; max-width:380px; margin:0 auto; }
    .footer-grid    { grid-template-columns:1fr; }
    .footer-bottom-inner { flex-direction:column; text-align:center; }
    .cta-buttons    { flex-direction:column; align-items:center; }
    .blog-header    { flex-direction:column; gap:12px; text-align:center; }
}

/* =====================================================
   PAGE HERO (About / inner pages)
   ===================================================== */
.page-hero {
    background: var(--hero-bg);
    background-image:
        radial-gradient(circle at 50% 60%, rgba(232,89,26,.07) 0%, transparent 50%),
        radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px;
    padding: 60px 0 64px;
    text-align: center;
}

.page-hero-inner { max-width: 680px; margin: 0 auto; padding: 0 24px; }

.breadcrumb {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: #64748b; margin-bottom: 20px;
}
.breadcrumb a { color: #64748b; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #64748b; }
.breadcrumb .breadcrumb-current { color: var(--orange); }

.page-hero-title {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800; color: #fff;
    letter-spacing: -.8px; line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 17px; color: #94a3b8;
    line-height: 1.7; max-width: 500px; margin: 0 auto;
}

/* =====================================================
   ABOUT — STORY
   ===================================================== */
.about-story { background: #fff; }

.story-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}

.story-title {
    font-size: clamp(26px, 3.2vw, 38px); font-weight: 800;
    color: #111; line-height: 1.2; letter-spacing: -.5px;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 15px; color: #475569; line-height: 1.8;
    margin-bottom: 16px;
}
.story-content p strong { color: #111; }

.story-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; margin-top: 40px;
    padding-top: 32px; border-top: 1px solid #f0f0f0;
}

.story-stat { text-align: center; padding: 0 12px; position: relative; }
.story-stat + .story-stat::before {
    content: ''; position: absolute; left: 0; top: 15%;
    height: 70%; width: 1px; background: #f0f0f0;
}
.story-stat .stat-number {
    font-size: 30px; font-weight: 800; color: #111;
    letter-spacing: -1px; display: block; margin-bottom: 4px;
}
.story-stat .stat-label { font-size: 13px; color: #64748b; }

/* Timeline */
.story-timeline {
    display: flex; flex-direction: column; gap: 0;
    padding-top: 8px;
}

.timeline-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding-bottom: 32px; position: relative;
}

.timeline-item:not(:last-child)::after {
    content: ''; position: absolute;
    left: 9px; top: 22px;
    width: 2px; bottom: 0;
    background: linear-gradient(to bottom, currentColor 0%, transparent 100%);
    opacity: .15;
}

.tl-dot {
    width: 20px; height: 20px; border-radius: 50%;
    flex-shrink: 0; margin-top: 4px;
    position: relative; z-index: 1;
    box-shadow: 0 0 0 4px rgba(255,255,255,1), 0 0 0 6px rgba(0,0,0,.08);
    transition: transform .3s ease;
}
.timeline-item:hover .tl-dot { transform: scale(1.2); }

.tl-orange { background: var(--orange); }
.tl-blue   { background: #3b82f6; }
.tl-green  { background: #22c55e; }
.tl-purple { background: #a855f7; }

.tl-body { flex: 1; }
.tl-year {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}

.timeline-item:nth-child(2) .tl-year { color: #3b82f6; }
.timeline-item:nth-child(3) .tl-year { color: #22c55e; }
.timeline-item:nth-child(4) .tl-year { color: #a855f7; }

.tl-body h4 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 6px; }
.tl-body p  { font-size: 14px; color: #64748b; line-height: 1.65; margin: 0; }

/* Timeline reveal animation */
.timeline-item {
    opacity: 0; transform: translateX(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }

/* =====================================================
   ABOUT — VALUES
   ===================================================== */
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: #fff; border: 1px solid #f0f0f0; border-radius: 16px;
    padding: 36px 28px; text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.09);
}

.value-icon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    transition: transform .3s ease;
}
.value-card:hover .value-icon { transform: scale(1.1) rotate(-3deg); }

.value-icon svg {
    width: 28px; height: 28px; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.icon-orange-light { background: #fff4ef; }
.icon-orange-light svg { stroke: var(--orange); }
.icon-blue-light   { background: #eff6ff; }
.icon-blue-light   svg { stroke: #3b82f6; }
.icon-green-light  { background: #f0fdf4; }
.icon-green-light  svg { stroke: #22c55e; }

.value-card h3 { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 12px; }
.value-card p  { font-size: 14px; color: #64748b; line-height: 1.7; }

/* =====================================================
   ABOUT — EXPERTISE
   ===================================================== */
.about-expertise { background: #fff; }

.expertise-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}

.cert-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cert-card {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 14px;
    padding: 24px 20px; text-align: center;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
    cursor: default;
}
.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: var(--orange);
}

.cert-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: #1a1a1a; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    transition: transform .3s ease;
}
.cert-card:hover .cert-icon { transform: scale(1.08); }
.cert-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cert-icon.cert-blue   { background: #1e3a5f; }
.cert-icon.cert-green  { background: #14532d; }
.cert-icon.cert-purple { background: #3b1d60; }

.cert-name { display: block; font-size: 15px; font-weight: 700; color: #111; margin-bottom: 4px; }
.cert-sub  { display: block; font-size: 12px; color: #64748b; }

.expertise-title {
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
    color: #111; letter-spacing: -.8px; line-height: 1.15;
    margin-bottom: 16px;
}

.expertise-desc { font-size: 15px; color: #475569; line-height: 1.75; margin-bottom: 32px; }

.expertise-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.expertise-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: #475569; line-height: 1.65; }
.expertise-list li strong { color: #111; }

.expertise-check {
    width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
    background: #fff4ef; display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.expertise-check svg { width: 12px; height: 12px; fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* =====================================================
   ABOUT — LOCATION
   ===================================================== */
.location-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; margin-top: 8px;
}

.location-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 36px 28px; text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
    transition: transform .3s ease, box-shadow .3s ease;
}
.location-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }

.loc-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: #fff4ef; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    transition: transform .3s ease;
}
.location-card:hover .loc-icon { transform: scale(1.08); }
.loc-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.loc-icon.loc-icon-blue  { background: #eff6ff; }
.loc-icon.loc-icon-blue  svg { stroke: #3b82f6; }
.loc-icon.loc-icon-green { background: #f0fdf4; }
.loc-icon.loc-icon-green svg { stroke: #22c55e; }

.location-card h4  { font-size: 17px; font-weight: 700; color: #111; margin-bottom: 8px; }
.location-card p   { font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 6px; }
.location-card .loc-note { font-size: 12px; color: #94a3b8; }

/* =====================================================
   ABOUT RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .story-inner      { gap: 48px; }
    .expertise-inner  { gap: 48px; }
}

@media (max-width: 900px) {
    .story-inner     { grid-template-columns: 1fr; }
    .story-timeline  { padding-top: 0; }
    .expertise-inner { grid-template-columns: 1fr; }
    .cert-grid       { max-width: 420px; margin: 0 auto; }
    .values-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .location-cards  { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .story-stats     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    /* Fix horizontal overflow on mobile */
    .about-story,
    .story-inner,
    .story-content,
    .story-timeline,
    .expertise-section,
    .values-section,
    .location-section { overflow-x: hidden; max-width: 100%; }

    /* Story text padding */
    .story-content { padding: 0; }
    .story-title   { font-size: 24px; }

    /* Stats — keep as 3 columns on mobile, just smaller */
    .story-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 24px 0 0;
    }
    .story-stat { padding: 0 6px; }
    .story-stat .stat-number { font-size: 22px; }
    .story-stat .stat-label  { font-size: 11px; }

    .cert-grid { grid-template-columns: 1fr; }
    .page-hero-title { font-size: 26px; }
    .page-hero-inner { padding: 0 20px; }

    /* Prevent any wide element from breaking layout */
    .about-story *  { max-width: 100%; box-sizing: border-box; }
}

/* =====================================================
   SERVICES PAGE
   ===================================================== */
.services-page .service-detail { padding: 90px 0; }
.services-page .service-detail-alt { background: #f8fafc; }

.section-divider {
    height: 1px; background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 0;
}

/* Two-column layout */
.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.service-detail-inner.reverse .service-detail-card  { order: 1; }
.service-detail-inner.reverse .service-detail-content { order: 2; }

/* Badge labels */
.service-badge {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.badge-orange { background: #fff4ef; color: var(--orange); }
.badge-blue   { background: #eff6ff; color: #3b82f6; }
.badge-green  { background: #f0fdf4; color: #16a34a; }
.badge-purple { background: #faf5ff; color: #9333ea; }

/* Service title */
.service-detail-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800; color: #111;
    letter-spacing: -.5px; line-height: 1.2;
    margin-bottom: 16px;
}

.service-detail-lead {
    font-size: 16px; color: #334155; line-height: 1.75; margin-bottom: 14px;
}
.service-detail-body {
    font-size: 15px; color: #64748b; line-height: 1.75; margin-bottom: 28px;
}
.service-detail-body strong { color: #111; }

/* Fix checklist */
.service-fix-box,
.hardware-repairs-box,
.quality-check-box {
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 12px; padding: 22px 24px; margin-bottom: 28px;
}
.service-fix-box h4,
.hardware-repairs-box h4,
.quality-check-box h4 {
    font-size: 14px; font-weight: 700; color: #111; margin-bottom: 14px;
}

.fix-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.fix-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fix-grid ul li {
    font-size: 13.5px; color: #475569;
    display: flex; align-items: center; gap: 8px;
}

.fix-check {
    width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
    background: #fff4ef; color: var(--orange);
    font-size: 10px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
}
.fix-check.blue { background: #eff6ff; color: #3b82f6; }

/* QA grid (pre-owned) */
.qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qa-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; margin-bottom: 10px; }
.qa-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.qa-col ul li { font-size: 13px; color: #475569; padding-left: 14px; position: relative; }
.qa-col ul li::before { content: '·'; position: absolute; left: 0; color: #94a3b8; font-weight: 700; }

/* CTA buttons */
.btn-service-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #fff;
    font-family: var(--font); font-size: 15px; font-weight: 600;
    padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(232,89,26,.3);
}
.btn-service-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(232,89,26,.4); color: #fff; }
.btn-service-primary.btn-blue   { background: #3b82f6; box-shadow: 0 4px 18px rgba(59,130,246,.3); }
.btn-service-primary.btn-blue:hover { background: #2563eb; box-shadow: 0 6px 26px rgba(59,130,246,.4); }
.btn-service-primary.btn-green  { background: #16a34a; box-shadow: 0 4px 18px rgba(22,163,74,.3); }
.btn-service-primary.btn-green:hover { background: #15803d; box-shadow: 0 6px 26px rgba(22,163,74,.4); }
.btn-service-primary.btn-purple { background: #9333ea; box-shadow: 0 4px 18px rgba(147,51,234,.3); }
.btn-service-primary.btn-purple:hover { background: #7e22ce; box-shadow: 0 6px 26px rgba(147,51,234,.4); }

/* ── PRICING CARD (Remote Support) ── */
.pricing-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 20px;
    padding: 40px 36px; text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,.07);
    position: relative; overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--orange), #f97316);
}

.pricing-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: #fff4ef; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.pricing-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.pricing-amount { font-size: 48px; font-weight: 800; color: #111; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.pricing-note { font-size: 13px; color: #94a3b8; margin-bottom: 24px; }

.pricing-features {
    list-style: none; text-align: left; border-top: 1px solid #f0f0f0;
    padding-top: 20px; display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 20px;
}
.pricing-features li { font-size: 14px; color: #475569; display: flex; align-items: center; gap: 10px; }
.pf-check {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
    background: #f0fdf4; color: #16a34a; font-size: 10px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
}

.pricing-tip {
    background: #fffbeb; border: 1px solid #fde68a; border-radius: 10px;
    padding: 12px 16px; font-size: 13px; color: #92400e;
    display: flex; align-items: flex-start; gap: 8px; text-align: left;
}
.pricing-tip svg { width: 16px; height: 16px; fill: none; stroke: #f59e0b; stroke-width: 2; flex-shrink: 0; margin-top: 1px; stroke-linecap: round; stroke-linejoin: round; }
.pricing-tip a { color: var(--orange); font-weight: 600; }

/* ── SHIP-IN STEPS CARD ── */
.steps-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.steps-card h4 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }

.ship-steps { display: flex; flex-direction: column; gap: 0; }

.ship-step {
    display: flex; align-items: flex-start; gap: 16px;
    padding-bottom: 24px; position: relative;
}
.ship-step:not(:last-child)::after {
    content: ''; position: absolute;
    left: 17px; top: 38px; bottom: 0;
    width: 2px; background: #f0f0f0;
}

.ship-step-num {
    width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
    background: #1e2433; color: #fff;
    font-size: 14px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
    transition: background .3s, transform .3s;
}
.ship-step:hover .ship-step-num { background: var(--orange); transform: scale(1.1); }
.ship-step-num.ship-step-orange { background: var(--orange); }
.ship-step:hover .ship-step-num.ship-step-orange { background: var(--orange-hover); }

.ship-step strong { display: block; font-size: 14px; font-weight: 700; color: #111; margin-bottom: 4px; }
.ship-step p { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* ── BENEFITS CARD (Pre-Owned) ── */
.benefits-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.benefits-card h4 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }

.benefit-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 16px 0; border-bottom: 1px solid #f8fafc;
    transition: transform .2s ease;
}
.benefit-item:last-child { border-bottom: none; padding-bottom: 0; }
.benefit-item:hover { transform: translateX(4px); }

.benefit-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bi-green  { background: #f0fdf4; }
.bi-green  svg { stroke: #16a34a; }
.bi-blue   { background: #eff6ff; }
.bi-blue   svg { stroke: #3b82f6; }
.bi-orange { background: #fff4ef; }
.bi-orange svg { stroke: var(--orange); }
.bi-purple { background: #faf5ff; }
.bi-purple svg { stroke: #9333ea; }

.benefit-item strong { display: block; font-size: 14px; font-weight: 700; color: #111; margin-bottom: 3px; }
.benefit-item p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.5; }

/* ── BUYING STATS ── */
.buying-stats {
    display: flex; gap: 0; margin: 28px 0;
    padding: 24px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0;
}
.buying-stat { flex: 1; text-align: center; position: relative; }
.buying-stat + .buying-stat::before {
    content: ''; position: absolute; left: 0; top: 10%; height: 80%;
    width: 1px; background: #f0f0f0;
}
.bstat-num { display: block; font-size: 28px; font-weight: 800; color: #111; letter-spacing: -1px; margin-bottom: 4px; }
.bstat-label { display: block; font-size: 12px; color: #94a3b8; }

/* ── SERVICES BOTTOM CTA ── */
.services-cta-section {
    background: #0f172a;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(232,89,26,.12) 0%, transparent 60%),
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.055) 1px, transparent 0);
    background-size: 100% 100%, 28px 28px;
    padding: 90px 0;
}

.services-cta-inner { text-align: center; }
.services-cta-inner h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: #fff; letter-spacing: -.5px; margin-bottom: 14px; }
.services-cta-inner p  { font-size: 16px; color: #94a3b8; max-width: 460px; margin: 0 auto 36px; line-height: 1.7; }

.btn-cta-outline-dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    font-family: var(--font); font-size: 15px; font-weight: 600;
    padding: 14px 28px; border-radius: 10px;
    border: 2px solid rgba(255,255,255,.25);
    text-decoration: none;
    transition: border-color .2s, background .2s, transform .15s;
    cursor: pointer;
}
.btn-cta-outline-dark:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); transform: translateY(-2px); color: #fff; }

/* =====================================================
   SERVICES RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .service-detail-inner { gap: 48px; }
}

@media (max-width: 900px) {
    .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-inner.reverse .service-detail-card  { order: unset; }
    .service-detail-inner.reverse .service-detail-content { order: unset; }
    .fix-grid { grid-template-columns: 1fr; }
    .qa-grid  { grid-template-columns: 1fr; }
    .buying-stats { flex-direction: column; gap: 20px; }
    .buying-stat + .buying-stat::before { display: none; }
}

@media (max-width: 600px) {
    .services-page .service-detail { padding: 60px 0; }
    .pricing-card { padding: 28px 20px; }
    .steps-card   { padding: 24px 20px; }
    .benefits-card { padding: 24px 20px; }
    .service-detail-title { font-size: 26px; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

/* ── Quick Info Bar ── */
.contact-info-bar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 32px 0;
    box-shadow: 0 2px 16px rgba(0,0,0,.04);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    divide-color: #f0f0f0;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    border-right: 1px solid #f0f0f0;
}
.contact-info-item:last-child { border-right: none; }
.contact-info-item:first-child { padding-left: 0; }

.cinfo-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.cinfo-icon svg { width: 20px; height: 20px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.cinfo-orange { background: #fff4ef; }
.cinfo-orange svg { stroke: var(--orange); }
.cinfo-green  { background: #f0fdf4; }
.cinfo-green  svg { stroke: #16a34a; }
.cinfo-blue   { background: #eff6ff; }
.cinfo-blue   svg { stroke: #3b82f6; }
.cinfo-purple { background: #faf5ff; }
.cinfo-purple svg { stroke: #9333ea; }

.contact-info-item strong { display: block; font-size: 14px; font-weight: 700; color: #111; margin-bottom: 3px; }
.contact-info-item a,
.contact-info-item span  { font-size: 13px; color: #64748b; transition: color .2s; }
.contact-info-item a:hover { color: var(--orange); }

/* ── Main Layout ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: start;
}

/* ── Form Section ── */
.contact-form-title { font-size: 28px; font-weight: 800; color: #111; letter-spacing: -.4px; margin-bottom: 8px; }
.contact-form-sub   { font-size: 15px; color: #64748b; margin-bottom: 32px; line-height: 1.6; }

/* Success / Error messages */
.form-success-msg,
.form-error-msg {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px; border-radius: 12px; margin-bottom: 24px;
}
.form-success-msg { background: #f0fdf4; border: 1px solid #bbf7d0; }
.form-error-msg   { background: #fef2f2; border: 1px solid #fecaca; }

.form-success-msg svg { width: 22px; height: 22px; fill: none; stroke: #16a34a; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.form-error-msg svg   { width: 22px; height: 22px; fill: none; stroke: #dc2626; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

.form-success-msg strong { display: block; font-size: 15px; color: #14532d; margin-bottom: 3px; }
.form-success-msg p      { font-size: 13px; color: #166534; margin: 0; }
.form-error-msg strong   { display: block; font-size: 15px; color: #7f1d1d; margin-bottom: 3px; }
.form-error-msg p        { font-size: 13px; color: #991b1b; margin: 0; }

/* Form elements */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { margin-bottom: 20px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.form-row.two-col .form-group { margin-bottom: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 13px; font-weight: 600; color: #374151;
}
.req { color: var(--orange); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%; padding: 11px 14px;
    font-family: var(--font); font-size: 14px; color: #111;
    background: #fff; border: 1.5px solid #e2e8f0; border-radius: 8px;
    outline: none; transition: border-color .2s, box-shadow .2s;
    appearance: none; -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,89,26,.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #94a3b8; }

/* Checkbox */
.form-checkbox { margin-top: 4px; }

.checkbox-label {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13.5px; color: #475569; cursor: pointer; line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.checkbox-custom {
    width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
    border: 2px solid #e2e8f0; background: #fff; margin-top: 1px;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, background .2s;
}
.checkbox-label input:checked + .checkbox-custom {
    background: var(--orange); border-color: var(--orange);
}
.checkbox-label input:checked + .checkbox-custom::after {
    content: ''; width: 5px; height: 9px;
    border: 2px solid #fff; border-top: none; border-left: none;
    transform: rotate(45deg) translateY(-1px); display: block;
}
.checkbox-label a { color: var(--orange); font-weight: 600; }

.field-error { font-size: 12px; color: #ef4444; min-height: 16px; display: block; }

/* Submit button */
.btn-send-message {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange); color: #fff;
    font-family: var(--font); font-size: 15px; font-weight: 600;
    padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(232,89,26,.35);
    align-self: flex-start; margin-top: 8px;
}
.btn-send-message:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 26px rgba(232,89,26,.45); }
.btn-send-message svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-send-message:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.spin-icon {
    width: 16px; height: 16px; fill: none; stroke: #fff;
    stroke-width: 2; animation: spin 0.8s linear infinite;
}

/* ── Sidebar Cards ── */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
    background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: box-shadow .3s ease;
}
.sidebar-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.sidebar-card h3 { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 16px; }

/* Why contact */
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; align-items: flex-start; gap: 12px; }
.why-icon { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 16px; height: 16px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wi-green  { background: #f0fdf4; }
.wi-green  svg { stroke: #16a34a; }
.wi-orange { background: #fff4ef; }
.wi-orange svg { stroke: var(--orange); }
.wi-blue   { background: #eff6ff; }
.wi-blue   svg { stroke: #3b82f6; }
.why-item strong { display: block; font-size: 13.5px; font-weight: 700; color: #111; margin-bottom: 2px; }
.why-item p { font-size: 12.5px; color: #64748b; margin: 0; }

/* WhatsApp card */
.whatsapp-card { background: #0d1117; border-color: transparent; }
.whatsapp-card h3 { color: #fff; }
.whatsapp-card p  { font-size: 13.5px; color: #94a3b8; line-height: 1.65; margin-bottom: 18px; }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff;
    font-family: var(--font); font-size: 14px; font-weight: 600;
    padding: 11px 22px; border-radius: 8px;
    text-decoration: none;
    transition: background .2s, transform .15s;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); color: #fff; }
.btn-whatsapp svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Emergency card */
.emergency-card { background: #fffbeb; border-color: #fde68a; }
.emergency-card h3 { color: #92400e; }
.emergency-card p  { font-size: 13px; color: #78350f; margin-bottom: 14px; line-height: 1.6; }

.emergency-phone {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 17px; font-weight: 700; color: var(--orange);
    text-decoration: none; transition: opacity .2s;
}
.emergency-phone:hover { opacity: .8; }
.emergency-phone svg { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Map ── */
.map-embed {
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}
.map-embed iframe { display: block; }

/* =====================================================
   CONTACT RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr 320px; gap: 40px; }
}

@media (max-width: 900px) {
    .contact-info-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .contact-info-item { border-right: none; padding: 0; }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .whatsapp-card { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row.two-col { grid-template-columns: 1fr; }
    .contact-sidebar { grid-template-columns: 1fr; }
}

/* =====================================================
   FAQ PAGE
   ===================================================== */
.hero-link { color: var(--orange); font-weight: 600; text-decoration: underline; }
.hero-link:hover { opacity: .8; }

.faq-section { background: #fff; }

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Group header ── */
.faq-group-title {
    display: flex; align-items: center; gap: 12px;
    font-size: 20px; font-weight: 800; color: #111;
    margin-bottom: 20px; letter-spacing: -.3px;
}

.faq-group-icon {
    width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.faq-group-icon svg { width: 18px; height: 18px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.faq-icon-orange     { background: #fff4ef; }
.faq-icon-orange svg { stroke: var(--orange); }

/* ── Accordion ── */
.faq-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.faq-item { border-bottom: 1px solid #e2e8f0; }
.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%; background: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; gap: 16px;
    font-family: var(--font); font-size: 15px; font-weight: 500; color: #111;
    text-align: left; transition: background .2s, color .2s;
}

.faq-question:hover { background: #fafafa; color: var(--orange); }
.faq-question[aria-expanded="true"] { color: var(--orange); background: #fff9f7; font-weight: 600; }

.faq-icon {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: #f1f5f9;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .3s ease;
}
.faq-icon svg {
    width: 14px; height: 14px; fill: none;
    stroke: #64748b; stroke-width: 2.5; stroke-linecap: round;
    transition: stroke .2s, transform .3s ease;
}

.faq-question:hover .faq-icon,
.faq-question[aria-expanded="true"] .faq-icon { background: #fff4ef; }
.faq-question:hover .faq-icon svg,
.faq-question[aria-expanded="true"] .faq-icon svg { stroke: var(--orange); }

/* Rotate + to × when open */
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer.open { max-height: 1200px; }

.faq-answer-inner {
    padding: 4px 22px 22px;
    border-top: 1px solid #f0f0f0;
    animation: fadeIn .3s ease;
}

@keyframes fadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

.faq-answer-inner p { font-size: 14.5px; color: #475569; line-height: 1.75; margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: #111; }
.faq-answer-inner a { color: var(--orange); font-weight: 600; }
.faq-answer-inner a:hover { text-decoration: underline; }

.faq-answer-inner ul,
.faq-answer-inner ol {
    padding-left: 20px; margin-bottom: 12px;
    display: flex; flex-direction: column; gap: 7px;
}
.faq-answer-inner ul { list-style: disc; }
.faq-answer-inner ol { list-style: decimal; }
.faq-answer-inner li { font-size: 14px; color: #475569; line-height: 1.65; }
.faq-answer-inner li strong { color: #111; }

.faq-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-bottom: 12px; }
.faq-two-col ul { margin-bottom: 0; }

.faq-note {
    background: #fffbeb; border: 1px solid #fde68a; border-radius: 8px;
    padding: 10px 14px; font-size: 13px !important;
    color: #92400e !important; margin-top: 4px;
}

/* ── Still Have Questions CTA ── */
.faq-still-questions {
    text-align: center;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 20px; padding: 48px 32px;
}

.faq-chat-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: #fff4ef; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.faq-chat-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.faq-still-questions h3 { font-size: 22px; font-weight: 800; color: #111; margin-bottom: 10px; }
.faq-still-questions p  { font-size: 15px; color: #64748b; max-width: 380px; margin: 0 auto 28px; line-height: 1.65; }

.faq-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-faq-primary {
    display: inline-flex; align-items: center;
    background: var(--orange); color: #fff;
    font-family: var(--font); font-size: 15px; font-weight: 600;
    padding: 13px 28px; border-radius: 10px; text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(232,89,26,.3);
}
.btn-faq-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,89,26,.4); color: #fff; }

.btn-faq-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #111;
    font-family: var(--font); font-size: 15px; font-weight: 600;
    padding: 13px 24px; border-radius: 10px; text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: border-color .2s, background .2s, transform .15s;
}
.btn-faq-whatsapp:hover { border-color: #25d366; background: #f0fdf4; transform: translateY(-2px); color: #111; }
.btn-faq-whatsapp svg { width: 16px; height: 16px; fill: none; stroke: #25d366; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Responsive ── */
@media (max-width: 600px) {
    .faq-container { gap: 40px; padding: 0 16px; }
    .faq-two-col { grid-template-columns: 1fr; }
    .faq-question { padding: 15px 16px; font-size: 14px; }
    .faq-answer-inner { padding: 4px 16px 18px; }
    .faq-still-questions { padding: 32px 20px; }
}

/* =====================================================

/* =====================================================
   BLOG — SHARED UTILITIES
   ===================================================== */

/* Category badge */
.post-cat-badge {
    display: inline-block;
    background: #fff4ef; color: var(--orange);
    font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase;
    padding: 4px 11px; border-radius: 5px; text-decoration: none;
    transition: background .2s, color .2s;
}
.post-cat-badge:hover { background: var(--orange); color: #fff; }

/* Post meta row */
.post-meta-row {
    display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
    font-size: 13px; color: #64748b;
}
.meta-avatar { border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.meta-author { font-weight: 600; color: #374151; }
.meta-sep    { color: #cbd5e1; }

/* Read more link */
.btn-read-more {
    display: inline-flex; align-items: center; gap: 5px;
    color: var(--orange); font-weight: 700; font-size: 14px;
    text-decoration: none; transition: gap .2s; margin-top: 4px;
}
.btn-read-more:hover { gap: 10px; }


/* ═══════════════════════════════════════════════════════════════════════
   BLOG SYSTEM — Archive, Single Post, Sidebar
   Colour palette matches rest of theme:
     orange:  #E8591A  |  dark hero: #0d1117  |  bg: #f8fafc  |  white: #fff
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Blog Archive Hero ──────────────────────────────────────────────────── */
.blog-archive-hero {
    background: var(--hero-bg);
    padding: 72px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-archive-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(232,89,26,.09) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(232,89,26,.06) 0%, transparent 60%);
}
.blog-hero-inner   { position: relative; max-width: 700px; margin: 0 auto; }
.blog-hero-title   { font-size: clamp(32px,5vw,52px); font-weight:900; color:#fff; letter-spacing:-.8px; margin-bottom:16px; line-height:1.1; }
.blog-hero-subtitle{ font-size:17px; color:#94a3b8; line-height:1.7; }

/* ── Archive Body ────────────────────────────────────────────────────────── */
.blog-archive-body    { padding: 52px 0 80px; background:#f8fafc; }
.blog-archive-layout  { display:grid; grid-template-columns:1fr 340px; gap:48px; align-items:start; }

/* ── Featured Post Block ─────────────────────────────────────────────────── */
.featured-post-block {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    background: #fff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    margin-bottom: 36px;
    transition: box-shadow .3s, transform .3s;
}
.featured-post-block:hover { box-shadow:0 12px 40px rgba(0,0,0,.14); transform:translateY(-3px); }

.featured-post-thumb {
    position: relative; overflow: hidden; display: block;
    min-height: 280px; background: #e2e8f0;
}
.featured-post-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.featured-post-thumb:hover img { transform:scale(1.04); }
.featured-thumb-placeholder {
    width:100%; height:100%; min-height:280px;
    display:flex; align-items:center; justify-content:center; background:#e2e8f0;
}
.featured-thumb-placeholder svg { width:48px; height:48px; stroke:#94a3b8; fill:none; stroke-width:1.5; }
.featured-label {
    position:absolute; top:16px; left:16px;
    background:var(--orange); color:#fff;
    font-size:11px; font-weight:700; letter-spacing:.6px; text-transform:uppercase;
    padding:5px 12px; border-radius:6px;
}
.featured-post-body {
    padding: 36px 32px;
    display:flex; flex-direction:column; justify-content:center; gap:14px;
}
.featured-post-body h2 { font-size:22px; font-weight:800; color:#111; line-height:1.35; letter-spacing:-.3px; }
.featured-post-body h2 a { color:inherit; }
.featured-post-body h2 a:hover { color:var(--orange); }
.featured-post-body > p { font-size:14.5px; color:#64748b; line-height:1.7; }

/* ── Category Badge ──────────────────────────────────────────────────────── */
.post-cat-badge {
    display:inline-block;
    background:#fff4ef; color:var(--orange);
    font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase;
    padding:4px 10px; border-radius:5px; text-decoration:none;
    transition:background .2s, color .2s;
}
.post-cat-badge:hover { background:var(--orange); color:#fff; }

/* ── Post Meta Row ───────────────────────────────────────────────────────── */
.post-meta-row     { display:flex; align-items:center; gap:8px; flex-wrap:wrap; font-size:13px; color:#64748b; }
.meta-avatar       { border-radius:50%; width:28px; height:28px; object-fit:cover; }
.meta-author       { font-weight:600; color:#374151; }
.meta-sep          { color:#cbd5e1; }

/* ── Read More Link ──────────────────────────────────────────────────────── */
.btn-read-more {
    display:inline-flex; align-items:center; gap:4px;
    color:var(--orange); font-weight:700; font-size:14px;
    text-decoration:none; transition:gap .2s; margin-top:4px;
}
.btn-read-more:hover { gap:8px; }

/* ── Filter Tabs ─────────────────────────────────────────────────────────── */
.blog-filter-tabs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:32px; }
.filter-tab {
    font-size:13px; font-weight:600; color:#64748b;
    background:#fff; border:1.5px solid #e2e8f0;
    padding:8px 16px; border-radius:50px;
    text-decoration:none; transition:all .2s; white-space:nowrap;
    display:inline-flex; align-items:center; gap:5px;
}
.filter-tab:hover, .filter-tab.active {
    background:var(--orange); color:#fff; border-color:var(--orange);
    box-shadow:0 3px 12px rgba(232,89,26,.25);
}
.tab-count {
    font-size:10px; font-weight:700;
    background:rgba(255,255,255,.25); padding:2px 6px; border-radius:20px;
}
.filter-tab:not(:hover):not(.active) .tab-count { background:#f1f5f9; color:#94a3b8; }

/* ── Blog Posts Grid ─────────────────────────────────────────────────────── */
.blog-posts-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-bottom:48px; }

/* ── Post Card ───────────────────────────────────────────────────────────── */
.blog-post-card {
    background:#fff; border-radius:16px; overflow:hidden;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
    transition:box-shadow .3s, transform .3s;
    display:flex; flex-direction:column;
}
.blog-post-card:hover { box-shadow:0 10px 32px rgba(0,0,0,.12); transform:translateY(-4px); }

.post-card-thumb-link { display:block; }
.post-card-thumb {
    position:relative; overflow:hidden;
    padding-top:58%; background:#e2e8f0;
}
.post-card-thumb img {
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; transition:transform .5s;
}
.blog-post-card:hover .post-card-thumb img { transform:scale(1.06); }
.post-thumb-placeholder {
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center; background:#e2e8f0;
}
.post-thumb-placeholder svg { width:36px; height:36px; stroke:#94a3b8; fill:none; stroke-width:1.5; }
.post-card-thumb .post-cat-badge { position:absolute; top:12px; left:12px; z-index:2; }

.post-card-body { padding:20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.post-card-body h3 { font-size:15px; font-weight:700; color:#111; line-height:1.45; letter-spacing:-.2px; }
.post-card-body h3 a { color:inherit; }
.post-card-body h3 a:hover { color:var(--orange); }
.post-card-body > p { font-size:13.5px; color:#64748b; line-height:1.65; flex:1; }
.post-card-body .post-meta-row { margin-top:auto; padding-top:12px; border-top:1px solid #f1f5f9; }
.post-card-body .meta-avatar { width:24px; height:24px; }

/* ── Empty State ─────────────────────────────────────────────────────────── */
.blog-empty { text-align:center; padding:80px 24px; background:#fff; border-radius:16px; }
.blog-empty svg { width:48px; height:48px; stroke:#94a3b8; fill:none; stroke-width:1.5; margin-bottom:20px; }
.blog-empty h3 { font-size:22px; font-weight:700; color:#111; margin-bottom:10px; }
.blog-empty p  { font-size:15px; color:#64748b; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.blog-pagination { display:flex; justify-content:center; margin-top:8px; }
.blog-pagination .page-numbers { display:flex; gap:6px; list-style:none; padding:0; margin:0; flex-wrap:wrap; }
.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
    display:flex; align-items:center; justify-content:center;
    min-width:40px; height:40px; padding:0 12px; border-radius:10px;
    font-size:14px; font-weight:600;
    border:1.5px solid #e2e8f0; background:#fff; color:#64748b;
    text-decoration:none; transition:all .2s;
}
.blog-pagination .page-numbers li a:hover,
.blog-pagination .page-numbers li span.current { background:var(--orange); border-color:var(--orange); color:#fff; }
.blog-pagination .page-numbers li span.dots { border:none; background:transparent; color:#94a3b8; }

/* ═══════════════════════════════════════════════════════════════════════
   BLOG SIDEBAR
   ═══════════════════════════════════════════════════════════════════════ */
.blog-sidebar { display:flex; flex-direction:column; gap:24px; }

.sidebar-widget {
    background:#fff; border-radius:16px; padding:24px;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
    border:1px solid #f1f5f9;
}

.widget-title {
    font-size:14px; font-weight:800; color:#111;
    letter-spacing:.3px; text-transform:uppercase;
    margin-bottom:18px; padding-bottom:12px;
    border-bottom:2px solid var(--orange);
    display:flex; align-items:center; gap:8px;
}
.widget-title::before {
    content:''; width:4px; height:16px;
    background:var(--orange); border-radius:2px; display:block;
}

/* Search Widget */
.sidebar-search {
    display:flex; border:1.5px solid #e2e8f0; border-radius:10px; overflow:hidden;
    transition:border-color .2s;
}
.sidebar-search:focus-within { border-color:var(--orange); }
.sidebar-search input {
    flex:1; padding:10px 14px; font-family:var(--font); font-size:14px;
    border:none; outline:none; color:#111; background:#fff;
}
.sidebar-search button {
    background:var(--orange); border:none; padding:0 14px; cursor:pointer;
    display:flex; align-items:center; justify-content:center; transition:background .2s;
}
.sidebar-search button:hover { background:var(--orange-hover); }
.sidebar-search button svg { width:17px; height:17px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; }

/* CTA Widget */
.sidebar-cta {
    text-align:center;
    background: #0f172a;
    background-image:
        radial-gradient(circle at 50% 30%, rgba(232,89,26,.12) 0%, transparent 65%),
        radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
    background-size: 100% 100%, 24px 24px;
    border-radius:14px; padding:28px 20px;
    border: 1px solid rgba(255,255,255,.06);
}
.scta-icon {
    width:52px; height:52px; border-radius:14px; background:rgba(232,89,26,.15);
    display:flex; align-items:center; justify-content:center; margin:0 auto 16px;
}
.scta-icon svg { width:24px; height:24px; fill:none; stroke:var(--orange); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.sidebar-cta h4 { font-size:16px; font-weight:800; color:#fff; margin-bottom:8px; }
.sidebar-cta p  { font-size:13.5px; color:#94a3b8; line-height:1.6; margin-bottom:18px; }
.btn-scta {
    display:inline-block; background:var(--orange); color:#fff;
    font-family:var(--font); font-size:14px; font-weight:700;
    padding:11px 22px; border-radius:9px; text-decoration:none;
    transition:background .2s, transform .15s;
    box-shadow:0 4px 14px rgba(232,89,26,.35);
}
.btn-scta:hover { background:var(--orange-hover); transform:translateY(-2px); color:#fff; }

/* Popular Posts */
.popular-post-item {
    display:flex; gap:12px; align-items:flex-start;
    padding:12px 0; border-bottom:1px solid #f1f5f9;
}
.popular-post-item:last-child { border-bottom:none; padding-bottom:0; }
.popular-thumb {
    width:68px; height:52px; border-radius:8px; overflow:hidden;
    flex-shrink:0; background:#e2e8f0;
}
.popular-thumb img { width:100%; height:100%; object-fit:cover; }
.pop-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.pop-placeholder svg { width:24px; height:24px; stroke:#94a3b8; fill:none; stroke-width:1.5; }
.popular-body { display:flex; flex-direction:column; gap:5px; }
.popular-body a { font-size:13px; font-weight:600; color:#111; line-height:1.4; }
.popular-body a:hover { color:var(--orange); }
.popular-body span { font-size:11.5px; color:#94a3b8; }

/* Categories */
.sidebar-cats { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; }
.sidebar-cats li { display:flex; align-items:center; justify-content:space-between; padding:10px 0; border-bottom:1px solid #f1f5f9; font-size:14px; }
.sidebar-cats li:last-child { border-bottom:none; }
.sidebar-cats li a { color:#374151; font-weight:500; transition:color .2s; }
.sidebar-cats li a:hover { color:var(--orange); }
.cat-count { background:#f1f5f9; color:#64748b; font-size:11px; font-weight:700; padding:2px 8px; border-radius:50px; }

/* Tags */
.tags-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.tag-pill {
    display:inline-block; background:#f1f5f9; color:#475569;
    font-size:12px; font-weight:600; padding:5px 12px; border-radius:50px;
    text-decoration:none; transition:all .2s; border:1.5px solid transparent;
}
.tag-pill:hover { background:#fff4ef; color:var(--orange); border-color:var(--orange); }

/* Newsletter */
.sidebar-newsletter {
    background:linear-gradient(135deg,#fff4ef 0%,#fff8f5 100%);
    border:1.5px solid #fdd8c6; border-radius:14px; padding:24px 20px; text-align:center;
}
.sidebar-newsletter h4 { font-size:16px; font-weight:800; color:#111; margin-bottom:8px; }
.sidebar-newsletter p  { font-size:13px; color:#64748b; line-height:1.6; margin-bottom:16px; }
.newsletter-form { display:flex; flex-direction:column; gap:8px; }
.newsletter-form input {
    width:100%; padding:10px 14px; font-family:var(--font); font-size:14px;
    border:1.5px solid #e2e8f0; border-radius:8px; outline:none; box-sizing:border-box;
    transition:border-color .2s;
}
.newsletter-form input:focus { border-color:var(--orange); }
.newsletter-form button {
    width:100%; background:var(--orange); color:#fff;
    font-family:var(--font); font-size:14px; font-weight:700;
    padding:11px; border:none; border-radius:8px; cursor:pointer;
    transition:background .2s, transform .15s;
    box-shadow:0 3px 12px rgba(232,89,26,.3);
}
.newsletter-form button:hover { background:var(--orange-hover); transform:translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════════════════════ */
.post-hero {
    background:var(--hero-bg); padding:56px 24px 48px; text-align:center;
}
.post-hero-inner { max-width:820px; margin:0 auto; }
.post-hero-cat   { margin-bottom:14px; display:inline-block; }

.post-hero-title {
    font-size:clamp(24px,4vw,42px); font-weight:900; color:#fff;
    line-height:1.25; letter-spacing:-.5px; margin:12px 0 20px;
}
.post-hero-meta {
    display:flex; align-items:center; justify-content:center;
    gap:10px; font-size:14px; color:#94a3b8; flex-wrap:wrap;
}
.post-author-hero { display:flex; align-items:center; gap:10px; }
.post-author-hero img { border-radius:50%; width:36px; height:36px; object-fit:cover; }
.post-author-hero strong { display:block; color:#e2e8f0; font-size:14px; }
.post-author-hero em     { font-style:normal; font-size:12px; color:#64748b; }

/* Single post layout */
.single-post-wrap   { padding:56px 0 80px; background:#f8fafc; }
.single-post-layout { display:grid; grid-template-columns:1fr 320px; gap:48px; align-items:start; }

/* Article */
.post-article { background:#fff; border-radius:20px; overflow:hidden; box-shadow:0 2px 16px rgba(0,0,0,.06); }
.post-featured-image img { width:100%; display:block; max-height:480px; object-fit:cover; }

/* Content styles */
.post-content { padding:40px 48px; font-size:16px; line-height:1.85; color:#374151; }

.post-content h2 {
    font-size:24px; font-weight:800; color:#111; margin:36px 0 16px;
    letter-spacing:-.3px; padding-bottom:12px; border-bottom:2px solid #f1f5f9;
}
.post-content h3 { font-size:19px; font-weight:700; color:#111; margin:28px 0 12px; }
.post-content h4 { font-size:16px; font-weight:700; color:#111; margin:20px 0 10px; }
.post-content p   { margin-bottom:20px; }
.post-content p:last-child { margin-bottom:0; }

.post-content ul,
.post-content ol { padding-left:24px; margin-bottom:20px; display:flex; flex-direction:column; gap:8px; }
.post-content ul { list-style:none; padding-left:0; }
.post-content ul li { padding-left:22px; position:relative; font-size:15.5px; color:#475569; }
.post-content ul li::before {
    content:''; position:absolute; left:0; top:10px;
    width:7px; height:7px; background:var(--orange); border-radius:50%;
}
.post-content ol { list-style:decimal; }
.post-content ol li { font-size:15.5px; color:#475569; padding-left:6px; }
.post-content ol li strong,
.post-content ul li strong { color:#111; }

.post-content a { color:var(--orange); font-weight:600; text-decoration:underline; }
.post-content a:hover { opacity:.8; }
.post-content strong { color:#111; }
.post-content em     { font-style:italic; }

.post-content blockquote {
    border-left:4px solid var(--orange); margin:28px 0;
    padding:18px 24px; background:#fff9f7; border-radius:0 12px 12px 0;
    font-size:17px; font-style:italic; color:#374151;
}
.post-content pre, .post-content code {
    background:#0d1117; color:#e2e8f0;
    font-family:'Courier New',monospace; font-size:14px; border-radius:8px;
}
.post-content pre  { padding:20px 24px; overflow-x:auto; margin:20px 0; }
.post-content code { padding:2px 8px; font-size:13px; border-radius:4px; }
.post-content pre code { padding:0; background:none; }
.post-content table {
    width:100%; border-collapse:collapse; margin:24px 0; font-size:14px;
    border-radius:10px; overflow:hidden;
}
.post-content table th { background:#0d1117; color:#fff; padding:12px 16px; text-align:left; font-size:13px; font-weight:700; }
.post-content table td { padding:11px 16px; border-bottom:1px solid #f1f5f9; color:#374151; }
.post-content table tr:last-child td { border-bottom:none; }
.post-content table tr:nth-child(even) td { background:#f8fafc; }
.post-content img { max-width:100%; border-radius:12px; height:auto; margin:16px 0; }

/* Tags row */
.post-tags {
    display:flex; align-items:center; gap:8px; flex-wrap:wrap;
    padding:20px 48px; border-top:1px solid #f1f5f9; font-size:13px; color:#94a3b8;
}
.post-tags strong { color:#374151; }

/* Share bar */
.post-share {
    display:flex; align-items:center; gap:8px; flex-wrap:wrap;
    padding:18px 48px; border-top:1px solid #f1f5f9;
    font-size:13px; font-weight:600; color:#64748b;
}
.share-btn {
    display:inline-flex; align-items:center; gap:6px;
    font-family:var(--font); font-size:12px; font-weight:600;
    padding:7px 14px; border-radius:8px; cursor:pointer;
    text-decoration:none; border:1.5px solid; transition:all .2s;
    background:transparent;
}
.share-btn svg { width:13px; height:13px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.share-twitter  { color:#1d9bf0; border-color:#1d9bf0; }
.share-twitter:hover  { background:#1d9bf0; color:#fff; }
.share-whatsapp { color:#25d366; border-color:#25d366; }
.share-whatsapp:hover { background:#25d366; color:#fff; }
.share-linkedin { color:#0a66c2; border-color:#0a66c2; }
.share-linkedin:hover { background:#0a66c2; color:#fff; }
.share-copy     { color:#64748b; border-color:#e2e8f0; background:#f8fafc; }
.share-copy:hover { border-color:var(--orange); color:var(--orange); background:#fff4ef; }

/* Author box */
.post-author-box {
    display:flex; gap:20px; align-items:flex-start;
    padding:28px 48px; border-top:1px solid #f1f5f9; background:#f8fafc;
}
.post-author-box img { width:72px; height:72px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.author-box-label { font-size:11px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color:var(--orange); display:block; margin-bottom:4px; }
.author-box-name  { font-size:17px; font-weight:800; color:#111; display:block; margin-bottom:8px; }
.author-box-content p { font-size:14px; color:#64748b; line-height:1.65; margin:0; }

/* Prev/Next nav */
.post-nav { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid #f1f5f9; }
.post-nav-prev, .post-nav-next { padding:20px 32px; display:flex; flex-direction:column; gap:6px; }
.post-nav-prev { border-right:1px solid #f1f5f9; }
.post-nav-next { text-align:right; }
.nav-label { font-size:11px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:#94a3b8; }
.post-nav a { font-size:14px; font-weight:600; color:#111; line-height:1.4; }
.post-nav a:hover { color:var(--orange); }

/* Comments section */
.post-comments { padding:32px 48px; border-top:1px solid #f1f5f9; }
.post-comments .comment-form label { font-size:13px; font-weight:600; color:#374151; display:block; margin-bottom:5px; }
.post-comments .comment-form input[type="text"],
.post-comments .comment-form input[type="email"],
.post-comments .comment-form input[type="url"],
.post-comments .comment-form textarea {
    width:100%; padding:10px 14px; font-family:var(--font); font-size:14px;
    border:1.5px solid #e2e8f0; border-radius:8px; outline:none; box-sizing:border-box;
    transition:border-color .2s; margin-bottom:14px;
}
.post-comments .comment-form input:focus,
.post-comments .comment-form textarea:focus { border-color:var(--orange); }
.post-comments .comment-form .submit input {
    background:var(--orange); color:#fff; font-weight:700; padding:12px 28px;
    border:none; border-radius:9px; cursor:pointer; width:auto; transition:background .2s;
}
.post-comments .comment-form .submit input:hover { background:var(--orange-hover); }
.post-comments .comment-list { list-style:none; padding:0; }
.post-comments .comment      { padding:16px 0; border-bottom:1px solid #f1f5f9; }
.post-comments .comment-author img { border-radius:50%; }

/* TOC in sidebar */
.toc-list { padding-left:20px; margin:0; display:flex; flex-direction:column; gap:8px; }
.toc-list li { font-size:13px; }
.toc-list a  { color:#475569; transition:color .2s; font-weight:500; }
.toc-list a:hover { color:var(--orange); }

/* Post sidebar */
.post-sidebar { display:flex; flex-direction:column; gap:24px; }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width:1100px) {
    .blog-archive-layout { grid-template-columns:1fr 300px; }
    .blog-posts-grid     { grid-template-columns:repeat(2,1fr); }
    .single-post-layout  { grid-template-columns:1fr 280px; }
}
@media (max-width:900px) {
    .blog-archive-layout { grid-template-columns:1fr; }
    .single-post-layout  { grid-template-columns:1fr; }
    .blog-sidebar        { display:grid; grid-template-columns:1fr 1fr; }
    .featured-post-block { grid-template-columns:1fr; }
    .featured-post-thumb { min-height:220px; }
    .post-content        { padding:28px; }
    .post-author-box     { padding:24px 28px; }
    .post-tags, .post-share { padding:16px 28px; }
}
@media (max-width:640px) {
    .blog-posts-grid  { grid-template-columns:1fr; }
    .blog-sidebar     { grid-template-columns:1fr; }
    .filter-tab       { font-size:12px; padding:7px 13px; }
    .post-content     { padding:20px 18px; }
    .post-author-box  { flex-direction:column; padding:20px 18px; }
    .post-tags, .post-share { padding:14px 18px; }
    .post-nav         { grid-template-columns:1fr; }
    .post-nav-prev    { border-right:none; border-bottom:1px solid #f1f5f9; }
    .post-nav-next    { text-align:left; }
    .post-comments    { padding:24px 18px; }
}

/* ── Blog section extras ── */
.btn-outline-orange {
    display: inline-flex; align-items: center;
    color: var(--orange); border: 2px solid var(--orange);
    font-family: var(--font); font-size: 15px; font-weight: 700;
    padding: 12px 28px; border-radius: 10px; text-decoration: none;
    transition: all .2s;
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

.blog-meta-row { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 12px; color: #94a3b8; }

/* ── New elements responsive CSS ────────────────────────────────────────── */

/* Contact form — free badge */
.form-free-badge {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px;
    padding: 10px 16px; margin: 14px 0 24px; font-size: 13px;
}
.ffb-item { color: #15803d; font-weight: 600; }
.ffb-sep  { color: #86efac; }
@media (max-width: 480px) {
    .form-free-badge { flex-direction: column; gap: 4px; }
    .ffb-sep         { display: none; }
}

/* Blog bottom CTA */
.blog-bottom-cta {
    text-align: center; margin-top: 36px;
}

/* Hero guarantee — mobile */
@media (max-width: 900px) {
    .hero-guarantee { justify-content: center; }
}
@media (max-width: 480px) {
    .hero-guarantee { font-size: 12px; padding: 7px 14px; }
}

/* Steps 4-grid mobile refinements */
@media (max-width: 480px) {
    .steps-cta-note { font-size: 12px; }
}

/* CTA mini steps mobile */
@media (max-width: 480px) {
    .csm-step { padding: 10px 12px; width: 100%; }
    .csm-text { font-size: 12px; }
}

/* Pricing free tag mobile */
@media (max-width: 480px) {
    .pricing-free-tag { font-size: 12px; padding: 4px 12px; }
}
