/* ============================================================
   Location Pages — locpages.css
   ============================================================ */

/* ── Shared container ──────────────────────────────────────── */
.loc-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* ============================================================
   Hero Banner
   ============================================================ */
.loc-hero {
    background: radial-gradient(circle at 20% 80%, #112559 0%, #1b123a 50%, #060913 100%);
    position: relative;
    overflow: hidden;
    min-height: 420px;
    padding: 60px 0 0;
    color: #fff;
}

.loc-hero-watermark {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 150px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    font-style: italic;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
    z-index: 1;
}

.loc-hero-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: end;
    position: relative;
    z-index: 2;
}

/* Image column */
.loc-hero-img-col {
    align-self: end;
}

.loc-hero-img-card {
    width: 280px;
    height: 420px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.loc-hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content column */
.loc-hero-content {
    padding-left: 20px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.loc-hero-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

/* Lead form */
.loc-hero-form {
    display: contents;
}

.loc-hero-form-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.loc-hero-fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.loc-hero-fg label {
    font-size: 11px;
    color: #a0aec0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.loc-hero-fg input {
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 14px;
    color: #1a202c;
    outline: none;
    width: 100%;
    transition: box-shadow 0.2s ease;
}

.loc-hero-fg input:focus {
    box-shadow: 0 0 0 3px rgba(255, 182, 6, 0.45);
}

/* Form actions row */
.loc-hero-form-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* Primary button */
.loc-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #060913;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 14px 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.loc-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.loc-hero-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loc-hero-btn-arrow {
    width: 34px;
    height: 34px;
    background: #060913;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-hero-btn-arrow svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

/* Secondary link */
.loc-hero-secondary-link {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.loc-hero-secondary-link:hover {
    color: #ffb606;
}

/* Stats row */
.loc-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
}

.loc-hero-stat {
    text-align: center;
}

.loc-hero-stat-value {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.loc-hero-stat-label {
    font-size: 11px;
    color: #718096;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Messages */
.loc-hero-msg {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 8px;
}

.loc-hero-msg.success {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.loc-hero-msg.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* ============================================================
   Coaching Plans Banner
   ============================================================ */
.loc-cpb {
    position: relative;
    padding: 55px 0;
    text-align: center;
    overflow: hidden;
}

.loc-cpb::before,
.loc-cpb::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.35) 30%, transparent 40%);
    background-size: 12px 12px;
    opacity: 0.7;
}

.loc-cpb::before { top: 0; }
.loc-cpb::after  { bottom: 0; }

.loc-cpb-inner {
    position: relative;
    z-index: 1;
}

.loc-cpb-title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.loc-cpb-desc {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 500;
    max-width: 820px;
    margin: 0 auto;
}

/* ============================================================
   Plan Price Cards
   ============================================================ */
.loc-pricing {
    padding: 60px 0;
}

.loc-pricing-heading {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    color: #111;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
}

.loc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(var(--card-count, 4), 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Card wrapper — holds badge + card */
.loc-pc-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.loc-pc-wrapper.has-badge {
    padding-top: 16px;
}

/* Badge */
.loc-pc-badge {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Card */
.loc-pc-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e1e8ed;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loc-pc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Card header */
.loc-pc-header {
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Icon circle */
.loc-pc-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.loc-pc-icon-circle svg {
    width: 20px;
    height: 20px;
}

.loc-pc-icon-circle img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Price */
.loc-pc-price {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

/* Course title */
.loc-pc-course-title {
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
    opacity: 0.9;
}

/* Features list */
.loc-pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.loc-pc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #333;
    line-height: 1.45;
}

.loc-pc-features li svg {
    width: 15px;
    height: 15px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Button */
.loc-pc-btn {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    margin-top: auto;
}

.loc-pc-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* ============================================================
   Benefits Section
   ============================================================ */
.loc-benefits {
    padding: 70px 0;
    background: #fff;
}

.loc-benefits-inner {
    text-align: center;
}

.loc-benefits-badge-wrap {
    margin-bottom: 18px;
}

.loc-benefits-badge {
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: 20px;
}

.loc-benefits-heading {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 48px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

/* Two-column grid */
.loc-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.loc-benefits-grid.img-right .loc-benefits-img-col  { order: 2; }
.loc-benefits-grid.img-right .loc-benefits-list-col { order: 1; }

/* Image column */
.loc-benefits-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.loc-benefits-img {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.loc-benefits-brand {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 16px;
}

/* Benefits list */
.loc-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.loc-benefit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 22px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.loc-benefit-row:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

/* Flower / petal icon */
.loc-benefit-icon {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.loc-petal {
    position: absolute;
    width: 18px;
    height: 18px;
    background-color: var(--petal, #2c2563);
    border-radius: 50%;
}

.loc-petal-top    { top: 4px;    left: 13px; }
.loc-petal-bottom { bottom: 4px; left: 13px; }
.loc-petal-left   { top: 13px;   left: 4px; }
.loc-petal-right  { top: 13px;   right: 4px; }

.loc-petal-center {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 14px;
    height: 14px;
    background-color: var(--center, #cccccc);
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 2;
}

.loc-benefit-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

/* ============================================================
   Benefits 2 — list left + image card right
   ============================================================ */
.loc-b2 {
    padding: 70px 0;
    background: #fff;
    color: #111827;
}

.loc-b2-inner {
    text-align: center;
}

.loc-b2-badge-wrap { margin-bottom: 16px; }

.loc-b2-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
}

.loc-b2-heading {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* Two-column grid */
.loc-b2-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: stretch;
    text-align: left;
}

/* Image on left */
.loc-b2-grid.img-left .loc-b2-list-col { order: 2; }
.loc-b2-grid.img-left .loc-b2-img-card { order: 1; }

/* List column */
.loc-b2-list-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.loc-b2-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.loc-b2-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 20px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.loc-b2-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

/* Square icon with CSS flower inside */
.loc-b2-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 2.5px solid var(--ic, #2e1a47);
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loc-b2-icon::before,
.loc-b2-icon::after {
    content: '';
    position: absolute;
    background-color: var(--ic, #2e1a47);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.loc-b2-icon::before {
    box-shadow: -5px 0 0 var(--ic, #2e1a47), 5px 0 0 var(--ic, #2e1a47);
}

.loc-b2-icon::after {
    box-shadow: 0 -5px 0 var(--ic, #2e1a47), 0 5px 0 var(--ic, #2e1a47);
}

.loc-b2-text {
    font-size: 0.94rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.5;
}

/* CTA button */
.loc-b2-btn {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    padding: 15px 16px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 6px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.loc-b2-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* Image card */
.loc-b2-img-card {
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.12) 2px, transparent 2px),
        linear-gradient(to bottom, rgba(255,255,255,0.12) 2px, transparent 2px);
    background-size: 25% 33.33%;
}

.loc-b2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.loc-b2-img-ph {
    width: 82%;
    height: 88%;
    background: linear-gradient(to top, #1e3a8a, #3b82f6);
    border-radius: 120px 120px 0 0;
}

/* ============================================================
   Join Us Banner
   ============================================================ */
.loc-join-us {
    position: relative;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.loc-join-us-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    top: -50%;
    left: 40%;
    pointer-events: none;
}

.loc-join-us-body {
    position: relative;
    text-align: center;
    user-select: none;
    transform: rotate(-5deg);
}

.loc-join-text {
    font-family: 'Pacifico', cursive, sans-serif;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: -1px;
    display: inline-block;
}

.loc-join-sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    pointer-events: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.loc-faq {
    padding: 72px 0;
}

.loc-faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.loc-faq-heading {
    font-size: 38px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.loc-faq-sub {
    font-size: 1rem;
    color: #718096;
}

.loc-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 0;
}

.loc-faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.loc-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.loc-faq-q:hover { opacity: 0.75; }

.loc-faq-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #4a5568;
}

.loc-faq-item.active .loc-faq-icon {
    transform: rotate(180deg);
}

.loc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
    font-size: 0.94rem;
    color: #4a5568;
    line-height: 1.65;
}

.loc-faq-item.active .loc-faq-a {
    padding-bottom: 22px;
}

/* ============================================================
   Testimonials
   ============================================================ */
.loc-testi {
    padding: 72px 0 80px;
}

.loc-testi-heading {
    font-size: 36px;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

/* ── Static grid ─────────────────────────────────────────────── */
.loc-testi-grid {
    display: grid;
    grid-template-columns: repeat(var(--tcount, 3), 1fr);
    gap: 28px;
}

/* ── Carousel ────────────────────────────────────────────────── */
.loc-testi-carousel {
    position: relative;
}

.loc-testi-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.loc-testi-track::-webkit-scrollbar { display: none; }

.loc-testi-track .loc-testi-card {
    flex: 0 0 calc(33.333% - 19px);
    scroll-snap-align: start;
}

.loc-testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: box-shadow .2s ease;
}

.loc-testi-btn:hover { box-shadow: 0 4px 14px rgba(0,0,0,.15); }
.loc-testi-btn svg { width: 18px; height: 18px; color: #334155; }
.loc-testi-prev { left: -20px; }
.loc-testi-next { right: -20px; }

/* ── Card ────────────────────────────────────────────────────── */
.loc-testi-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 32px 28px 44px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.05), 0 2px 4px -1px rgba(0,0,0,.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.loc-testi-card-top {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Profile row */
.loc-testi-profile {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.loc-testi-avatar {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.loc-testi-avatar-ph {
    width: 76px;
    height: 76px;
    border-radius: 10px;
    background: linear-gradient(135deg, #a5b4fc, #4f46e5);
    flex-shrink: 0;
}

.loc-testi-meta h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.loc-testi-meta p {
    font-size: 0.88rem;
    color: #94a3b8;
    margin-bottom: 6px;
}

.loc-testi-stars {
    display: flex;
    gap: 2px;
}

.loc-testi-star {
    width: 15px;
    height: 15px;
    fill: #ffb524;
}

.loc-testi-star.empty {
    fill: #e2e8f0;
}

/* Text */
.loc-testi-text {
    font-size: 0.96rem;
    line-height: 1.65;
    color: #64748b;
}

/* Quote icon */
.loc-testi-quote {
    position: absolute;
    bottom: -41px;
    right: 32px;
    width: 120px;
    height: 111px;
    fill: #555;
}

.loc-testi-quote.red { fill: #ff5252; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .loc-pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .loc-cpb { padding: 40px 0; }
    .loc-cpb-title { font-size: 30px; margin-bottom: 16px; }
    .loc-cpb-desc  { font-size: 15px; }

    .loc-pricing { padding: 40px 0; }
    .loc-pricing-heading { font-size: 26px; margin-bottom: 28px; }

    .loc-benefits { padding: 48px 0; }
    .loc-benefits-heading { font-size: 28px; margin-bottom: 32px; }
    .loc-benefits-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .loc-benefits-grid.img-right .loc-benefits-img-col  { order: 0; }
    .loc-benefits-grid.img-right .loc-benefits-list-col { order: 0; }

    .loc-b2 { padding: 48px 0; }
    .loc-b2-heading { font-size: 26px; margin-bottom: 28px; }

    .loc-faq { padding: 48px 0; }
    .loc-faq-heading { font-size: 28px; }
    .loc-faq-grid { grid-template-columns: 1fr; column-gap: 0; }

    .loc-testi { padding: 48px 0 60px; }
    .loc-testi-heading { font-size: 26px; margin-bottom: 32px; }
    .loc-testi-grid { grid-template-columns: 1fr !important; }
    .loc-testi-track .loc-testi-card { flex: 0 0 85%; }
    .loc-testi-prev { left: -10px; }
    .loc-testi-next { right: -10px; }
    .loc-b2-grid {
        grid-template-columns: 1fr;
    }
    .loc-b2-grid .loc-b2-img-card { order: -1; min-height: 300px; }
    .loc-b2-grid.img-left .loc-b2-list-col { order: 0; }
    .loc-b2-grid.img-left .loc-b2-img-card { order: -1; }

    .loc-hero-grid {
        grid-template-columns: 1fr;
    }

    .loc-hero-img-col {
        display: none;
    }

    .loc-hero-content {
        padding-left: 0;
        padding-bottom: 48px;
    }

    .loc-hero-heading {
        font-size: 26px;
    }

    .loc-hero-form-fields {
        grid-template-columns: 1fr;
    }

    .loc-hero-stats {
        justify-content: flex-start;
        gap: 24px;
    }

    .loc-hero-watermark {
        font-size: 64px;
    }
}

@media (max-width: 700px) {
    .loc-join-text { font-size: 2.8rem; }
    .loc-join-us   { height: 120px; }
}

@media (max-width: 600px) {
    .loc-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .loc-hero-form-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .loc-pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .loc-pc-price { font-size: 34px; }
}

/* ============================================================
   Success Stories (Score Cards)
   ============================================================ */
.loc-ss {
    padding: 60px 0;
    text-align: center;
}

.loc-ss-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #3b82f6;
    font-size: .85rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.loc-ss-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

.loc-ss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

/* ── Individual score card ── */
.loc-sc-card--img {
    padding: 0;
    overflow: hidden;
}
.loc-sc-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.loc-sc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 13px;
}

/* Attempt badge */
.loc-sc-attempt {
    position: absolute;
    top: 44px;
    right: 14px;
    z-index: 5;
    background: #eab308;
    color: #000;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
}

/* Pearson teal header */
.loc-sc-hdr {
    background: #00a19c;
    color: #fff;
    padding: 11px 14px;
    font-size: .8rem;
    font-weight: 500;
}
.loc-sc-pearson {
    display: flex;
    align-items: center;
    gap: 6px;
}
.loc-sc-p-circle {
    background: #fff;
    color: #00a19c;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .68rem;
    flex-shrink: 0;
}

/* Profile row */
.loc-sc-profile {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border-bottom: 1px solid #f3f4f6;
    margin-top: 8px;
}
.loc-sc-pic {
    width: 48px;
    height: 58px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}
.loc-sc-meta {
    flex: 1;
    min-width: 0;
}
.loc-sc-name {
    font-size: .82rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.loc-sc-course {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 3px;
}
.loc-sc-points {
    font-size: .72rem;
    font-weight: 700;
    color: #1f2937;
}
.loc-sc-overall {
    flex-shrink: 0;
    text-align: center;
}
.loc-sc-ov-lbl {
    background: #1e3a8a;
    color: #fff;
    font-size: .58rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: 3px 3px 0 0;
}
.loc-sc-ov-circle {
    background: #9d174d;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 700;
}

/* Skills header */
.loc-sc-skills-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 14px 5px;
}
.loc-sc-skills-lbl {
    font-size: .75rem;
    font-weight: 600;
    color: #4b5563;
}
.loc-sc-band {
    color: #ef4444;
    font-weight: 800;
    font-size: 1rem;
}

/* Score circles row */
.loc-sc-circles {
    display: flex;
    justify-content: space-around;
    padding: 8px 14px;
}
.loc-sc-citem { text-align: center; }
.loc-sc-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #1e3a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 3px;
    background: #fff;
}
.loc-sc-ring-l { border-color: #1e3a8a; }
.loc-sc-ring-r { border-color: #84cc16; }
.loc-sc-ring-s { border-color: #6b7280; }
.loc-sc-ring-w { border-color: #7e22ce; }
.loc-sc-rlabel {
    font-size: .6rem;
    color: #6b7280;
    font-weight: 500;
}

/* Breakdown section */
.loc-sc-breakdown {
    display: flex;
    padding: 9px 14px;
    gap: 10px;
    align-items: flex-start;
    flex: 1;
}
.loc-sc-bars { flex: 1; }
.loc-sc-bars-ttl {
    font-size: .68rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 7px;
}
.loc-sc-bar-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.loc-sc-blbl {
    font-size: .58rem;
    color: #4b5563;
    width: 46px;
}
.loc-sc-bwrap {
    flex: 1;
    background: #f3f4f6;
    height: 11px;
    border-radius: 2px;
    overflow: hidden;
    margin-right: 5px;
}
.loc-sc-bfill { height: 100%; }
.loc-sc-bl { background: #1e3a8a; }
.loc-sc-br { background: #84cc16; }
.loc-sc-bs { background: #6b7280; }
.loc-sc-bw { background: #7e22ce; }
.loc-sc-bval {
    font-size: .58rem;
    font-weight: 700;
    color: #374151;
    width: 18px;
    text-align: right;
}

/* WhatsApp badge */
.loc-sc-wa {
    background: #00b050;
    color: #fff;
    border-radius: 6px;
    padding: 8px 6px;
    width: 110px;
    flex-shrink: 0;
    text-align: center;
}
.loc-sc-wa-brand {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1.3;
}
.loc-sc-wa-sub {
    font-size: .6rem;
    font-weight: 600;
    margin: 2px 0;
}
.loc-sc-wa-action {
    font-size: .58rem;
    font-weight: 700;
    opacity: .9;
}
.loc-sc-wa-num {
    font-size: .78rem;
    font-weight: 800;
    margin-top: 2px;
}

/* Test info row */
.loc-sc-testinfo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0 14px 9px;
    font-size: .58rem;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

/* Red footer */
.loc-sc-footer {
    background: #ff3b30;
    color: #fff;
    padding: 11px 10px;
    text-align: center;
    margin-top: auto;
}
.loc-sc-ft-brand {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .3px;
    margin-bottom: 3px;
}
.loc-sc-ft-call {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 3px;
}
.loc-sc-ft-web {
    font-size: .7rem;
    opacity: .95;
    margin-bottom: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .loc-ss-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .loc-ss-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .loc-ss-heading { font-size: 1.6rem; }
}
