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

        :root {
            --navy: #172033;
            --blue: #2563eb;
            --blue-dark: #1d4ed8;
            --soft-blue: #eff6ff;
            --green: #16a34a;
            --orange: #ea580c;
            --purple: #7c3aed;
            --yellow: #ca8a04;
            --red: #dc2626;
            --teal: #0f766e;
            --text: #202634;
            --muted: #667085;
            --line: #e5e7eb;
            --surface: #ffffff;
            --page: #f6f8fb;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: var(--page);
            color: var(--text);
            line-height: 1.5;
        }

        a { color: inherit; }

        header {
            background: var(--navy);
            color: white;
            padding: 16px 24px;
            position: sticky;
            top: 0;
            z-index: 20;
            box-shadow: 0 2px 10px rgba(0,0,0,.08);
        }

        .header-inner {
            max-width: 1180px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -.5px;
            white-space: nowrap;
        }

        .logo span { color: #60a5fa; }

        nav {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        nav a {
            color: #f8fafc;
            text-decoration: none;
            font-size: 14px;
        }

        nav a:hover { color: #93c5fd; }

        .nav-cta {
            padding: 9px 14px;
            border: 1px solid rgba(255,255,255,.35);
            border-radius: 8px;
        }

        .hero {
            background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
            border-bottom: 1px solid var(--line);
            padding: 76px 20px 68px;
        }

        .hero-inner {
            max-width: 1050px;
            margin: auto;
            text-align: center;
        }

        .eyebrow {
            display: inline-block;
            background: var(--soft-blue);
            color: var(--blue-dark);
            border: 1px solid #bfdbfe;
            border-radius: 999px;
            padding: 7px 13px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(38px, 6vw, 58px);
            line-height: 1.05;
            letter-spacing: -1.8px;
            margin-bottom: 18px;
        }

        .hero p {
            font-size: 19px;
            color: var(--muted);
            max-width: 720px;
            margin: 0 auto 28px;
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .button {
            display: inline-block;
            background: var(--blue);
            color: white;
            text-decoration: none;
            padding: 14px 22px;
            border-radius: 8px;
            font-weight: 700;
        }

        .button:hover { background: var(--blue-dark); }

        .button.secondary {
            background: white;
            color: var(--navy);
            border: 1px solid #cbd5e1;
        }

        .example {
            margin-top: 18px;
            color: #64748b;
            font-size: 14px;
        }

        .example strong { color: var(--blue); }

        .section {
            max-width: 1180px;
            margin: 0 auto;
            padding: 62px 20px;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 32px;
        }

        .section-heading h2 {
            font-size: 30px;
            margin-bottom: 8px;
        }

        .section-heading p {
            color: var(--muted);
            max-width: 680px;
            margin: auto;
        }

        /* MzansiClick gallery/story strip */
        .gallery-grid {
            display: grid;
            grid-template-columns: 1.35fr 1fr 1fr;
            grid-template-rows: repeat(2, 165px);
            gap: 14px;
        }

        .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 14px;
            padding: 22px;
            color: white;
            display: flex;
            align-items: flex-end;
            min-height: 160px;
            background: var(--navy);
        }

        .gallery-card:first-child { grid-row: 1 / 3; }

        .gallery-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 80% 15%, rgba(255,255,255,.22), transparent 24%),
                linear-gradient(145deg, rgba(37,99,235,.95), rgba(23,32,51,.98));
        }

        .gallery-card:nth-child(2)::before { background: linear-gradient(145deg, #0f766e, #134e4a); }
        .gallery-card:nth-child(3)::before { background: linear-gradient(145deg, #ea580c, #9a3412); }
        .gallery-card:nth-child(4)::before { background: linear-gradient(145deg, #7c3aed, #4c1d95); }
        .gallery-card:nth-child(5)::before { background: linear-gradient(145deg, #ca8a04, #854d0e); }

        .gallery-content {
            position: relative;
            z-index: 1;
        }

        .gallery-icon {
            font-size: 30px;
            margin-bottom: 8px;
            display: block;
        }

        .gallery-card h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .gallery-card p {
            font-size: 14px;
            color: rgba(255,255,255,.86);
        }

        /* Directory */
        .directory-wrap {
            background: white;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .directory-search {
            max-width: 700px;
            margin: -8px auto 30px;
            display: flex;
            gap: 8px;
        }

        .directory-search input {
            flex: 1;
            min-width: 0;
            border: 1px solid #cbd5e1;
            background: white;
            padding: 13px 15px;
            border-radius: 8px;
            font-size: 15px;
            outline: none;
        }

        .directory-search input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(37,99,235,.1);
        }

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

        .category-card {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 12px;
            padding: 22px 18px;
            text-decoration: none;
            transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
        }

        .category-card:hover {
            transform: translateY(-3px);
            border-color: #bfdbfe;
            box-shadow: 0 10px 24px rgba(15,23,42,.08);
        }

        .category-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            background: var(--soft-blue);
            font-size: 23px;
            margin-bottom: 14px;
        }

        .category-card h3 {
            font-size: 17px;
            margin-bottom: 4px;
        }

        .category-card p {
            color: var(--muted);
            font-size: 13px;
        }

        .view-directory {
            text-align: center;
            margin-top: 26px;
        }

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

        .feature-card {
            background: white;
            padding: 26px;
            border-radius: 12px;
            border: 1px solid var(--line);
        }

        .feature-card h3 { margin-bottom: 9px; }
        .feature-card p { color: var(--muted); }

        .how {
            background: #e9eef5;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 900px;
            margin: 34px auto 0;
            text-align: center;
        }

        .step-number {
            width: 44px;
            height: 44px;
            background: var(--blue);
            color: white;
            border-radius: 50%;
            display: grid;
            place-items: center;
            margin: 0 auto 12px;
            font-weight: bold;
        }

        .bottom-cta {
            background: var(--navy);
            color: white;
            text-align: center;
            border-radius: 16px;
            padding: 42px 25px;
        }

        .bottom-cta h2 { margin-bottom: 8px; }
        .bottom-cta p { color: #cbd5e1; margin-bottom: 20px; }

        footer {
            background: #111827;
            color: #aeb7c6;
            text-align: center;
            padding: 26px 20px;
            font-size: 13px;
        }

        @media (max-width: 850px) {
            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }
            .gallery-card:first-child { grid-row: auto; grid-column: 1 / 3; }
            .features-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 650px) {
            header { padding: 14px 18px; }
            nav a:not(.nav-cta) { display: none; }
            .hero { padding: 58px 18px 52px; }
            .hero p { font-size: 17px; }
            .section { padding: 48px 16px; }
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-card:first-child { grid-column: auto; }
            .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .category-card { padding: 17px 14px; }
            .steps { grid-template-columns: 1fr; }
        }

        @media (max-width: 430px) {
            .category-grid { grid-template-columns: 1fr; }
            .directory-search { display: block; }
            .directory-search .button { margin-top: 8px; width: 100%; text-align: center; }
        }

/* =========================================================
   MzansiClick shared account / builder pages
   ========================================================= */
.mc-page { background: #f6f8fb; color: #202634; }
.mc-header { background: #172033; color: #fff; padding: 18px 25px; }
.mc-header-inner { max-width: 1100px; margin: auto; display:flex; justify-content:space-between; align-items:center; gap:20px; }
.mc-logo { font-weight:800; font-size:21px; }
.mc-logo span { color:#60a5fa; }
.mc-step { font-size:13px; color:#cbd5e1; }
.mc-container { max-width: 900px; margin:45px auto; padding:0 20px; }
.mc-card { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:35px; }
.mc-intro { color:#667085; margin-bottom:30px; line-height:1.5; }
.mc-website-info { background:#eff6ff; border:1px solid #bfdbfe; padding:18px; border-radius:8px; margin-bottom:30px; }
.mc-website-address { color:#2563eb; }
.mc-form-group { margin-bottom:23px; }
.mc-form-group label { display:block; font-weight:700; margin-bottom:7px; }
.mc-form-group input, .mc-form-group textarea {
    width:100%; border:1px solid #cbd5e1; border-radius:7px; padding:12px;
    font-size:15px; font-family:Arial,sans-serif;
}
.mc-form-group textarea { resize:vertical; min-height:100px; }
.mc-hint { color:#667085; font-size:12px; margin-top:6px; }
.mc-section-title { border-bottom:1px solid #e5e7eb; padding-bottom:10px; margin:35px 0 22px; }
.mc-buttons { display:flex; gap:12px; margin-top:30px; }
.mc-primary, .mc-secondary {
    display:block; text-decoration:none; padding:14px 20px; border-radius:7px;
    text-align:center; font-weight:700; font-size:15px;
}
.mc-primary { background:#2563eb; color:#fff; border:0; cursor:pointer; flex:1; }
.mc-primary:hover { background:#1d4ed8; }
.mc-secondary { background:#e5e7eb; color:#333; border:0; cursor:pointer; }

.mc-template-container { max-width:1100px; margin:50px auto; padding:0 20px; }
.mc-page-title { text-align:center; margin-bottom:10px; }
.mc-template-intro { text-align:center; color:#667085; margin-bottom:40px; }
.mc-website-name { background:#e8eefc; padding:12px 18px; border-radius:7px; display:inline-block; margin-top:10px; }
.mc-template-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:25px; }
.mc-template { background:#fff; border:2px solid transparent; border-radius:10px; overflow:hidden; transition:.2s; }
.mc-template:hover { border-color:#2563eb; transform:translateY(-3px); }
.mc-template.selected { border-color:#2563eb; box-shadow:0 0 0 3px rgba(37,99,235,.10); }
.mc-preview { height:260px; padding:25px; }
.mc-design-one { background:#172033; color:#fff; }
.mc-design-two { background:#f1eee7; color:#302d29; }
.mc-design-three { background:#eef6f0; color:#164e3b; }
.mc-fake-logo { font-weight:700; margin-bottom:45px; }
.mc-fake-title { font-size:25px; font-weight:700; margin-bottom:12px; }
.mc-fake-text { font-size:14px; opacity:.8; line-height:1.5; margin-bottom:22px; }
.mc-fake-button { display:inline-block; padding:9px 15px; color:#fff; border-radius:4px; font-size:13px; background:#2563eb; }
.mc-design-two .mc-fake-button { background:#302d29; }
.mc-design-three .mc-fake-button { background:#198754; }
.mc-template-info { padding:22px; }
.mc-template-info h3 { margin:0 0 8px; }
.mc-template-info p { color:#667085; font-size:14px; min-height:38px; }
.mc-select-button { display:block; width:100%; text-align:center; background:#2563eb; color:#fff; text-decoration:none; padding:12px; border-radius:5px; margin-top:15px; font-weight:700; }
.mc-select-button:hover { background:#1d4ed8; }
.mc-back { text-align:center; margin-top:35px; }
.mc-back a { color:#2563eb; text-decoration:none; }

.mc-success-container { max-width:650px; margin:80px auto; padding:20px; }
.mc-success-card { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:40px; text-align:center; }
.mc-success-icon { font-size:48px; margin-bottom:15px; }
.mc-success-card p { color:#667085; line-height:1.6; }
.mc-success-address { background:#eff6ff; padding:15px; border-radius:7px; margin:25px 0; font-weight:700; color:#2563eb; }

@media(max-width:800px) {
    .mc-template-grid { grid-template-columns:1fr; }
    .mc-template { max-width:500px; width:100%; margin:auto; }
}
@media(max-width:600px) {
    .mc-card { padding:25px 20px; }
    .mc-buttons { flex-direction:column; }
}
