:root {
    --bg: #f4fbff;
    --bg-2: #eef5ff;
    --text: #0f2440;
    --text-soft: #56708f;
    --line: rgba(88, 119, 167, 0.16);
    --white: #ffffff;
    --primary: #1f6dff;
    --primary-2: #6a7bff;
    --accent: #15c4b5;
    --accent-2: #7bd8ff;
    --shadow: 0 20px 60px rgba(44, 73, 124, 0.14);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(123, 216, 255, 0.28), transparent 28%),
        radial-gradient(circle at bottom left, rgba(106, 123, 255, 0.14), transparent 32%),
        linear-gradient(180deg, var(--bg) 0%, #f9fcff 45%, var(--bg-2) 100%);
    color: var(--text);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(15, 36, 64, 0.22);
    backdrop-filter: blur(4px);
    z-index: 34;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.compact-container {
    width: min(calc(100% - 32px), 520px);
}

.section-space {
    padding: 82px 0;
    position: relative;
    z-index: 1;
}

.background-orb {
    position: fixed;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    top: -140px;
    right: -120px;
    background: rgba(120, 198, 255, 0.45);
}

.orb-2 {
    bottom: -120px;
    left: -130px;
    background: rgba(125, 109, 255, 0.22);
}

.background-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(121, 152, 197, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(121, 152, 197, 0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
    pointer-events: none;
    z-index: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.flash-stack {
    position: relative;
    z-index: 10;
    padding-top: 14px;
}

.flash-message {
    margin: 0 0 10px;
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 14px 40px rgba(16, 38, 75, 0.08);
}

.flash-success {
    background: rgba(35, 198, 170, 0.14);
    color: #087d67;
    border: 1px solid rgba(35, 198, 170, 0.22);
}

.flash-error {
    background: rgba(255, 99, 132, 0.12);
    color: #a53d54;
    border: 1px solid rgba(255, 99, 132, 0.2);
}

.flash-info {
    background: rgba(72, 133, 255, 0.12);
    color: #2958a3;
    border: 1px solid rgba(72, 133, 255, 0.2);
}

.inline-admin-form {
    display: inline-flex;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 12px 0 10px;
    transition: 0.3s ease;
}

.site-header .container {
    position: relative;
    width: min(calc(100% - 24px), 1320px);
}

.site-header.scrolled {
    background: rgba(244, 251, 255, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(108, 142, 188, 0.12);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    justify-content: flex-end;
    order: 1;
}

.logo-mark {
    width: 50px;
    height: 50px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    color: white;
    font-weight: 800;
    font-size: 1.08rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
    box-shadow: 0 16px 34px rgba(31, 109, 255, 0.25);
}

.logo strong {
    display: block;
    font-size: 1rem;
}

.logo small {
    color: var(--text-soft);
    display: block;
    margin-top: 2px;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    width: fit-content;
    max-width: min(100%, 1080px);
    margin: 0;
    order: 2;
    margin-inline-start: auto;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(109, 142, 184, 0.14);
    box-shadow: 0 10px 24px rgba(31, 73, 126, 0.05);
    position: relative;
    z-index: 40;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
    display: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--text-soft);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.1;
    transition: 0.25s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}

.nav-links a.active:not(.nav-cta) {
    color: var(--text);
    background: rgba(31, 109, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(31, 109, 255, 0.08);
}

.nav-links a.nav-cta.active {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 20px rgba(31, 109, 255, 0.22);
    transform: translateY(-1px);
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(31, 109, 255, 0.08);
}

.nav-links a.nav-cta {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 8px 18px rgba(31, 109, 255, 0.16);
}

.hero-section,
.fit-section,
.how-it-works-section,
#plans,
#faq,
#other-services,
#other-services-heading,
#order-form,
#section-overview,
#section-content,
#section-details,
#basics-booking-form {
    scroll-margin-top: 24px;
}

.menu-toggle {
    display: none;
    order: 3;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(104, 136, 188, 0.16);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 26px rgba(17, 48, 94, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 41;
}

.menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 99px;
    transition: 0.25s ease;
}

@keyframes startNowShine {
    0%, 16% {
        right: -120%;
        opacity: 0;
    }
    22% {
        opacity: 1;
    }
    44% {
        right: 130%;
        opacity: 0;
    }
    100% {
        right: 130%;
        opacity: 0;
    }
}

.hero-section {
    padding-top: 44px;
}

.hero-grid,
.spotlight-grid,
.form-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.hero-badge,
.section-kicker,
.plan-badge,
.mini-label,
.spotlight-pill,
.plan-badge.subtle,
.order-status-pill,
.order-id {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(31, 109, 255, 0.08);
    color: var(--primary);
    font-size: 0.92rem;
    font-weight: 800;
}

.section-kicker {
    margin-bottom: 14px;
}

.hero-copy h1,
.section-heading h2,
.spotlight-grid h2,
.form-copy h2,
.success-card h1,
.admin-topbar h1,
.admin-login-card h1 {
    margin: 0;
    line-height: 1.2;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

.hero-copy p,
.section-heading p,
.feature-card p,
.plan-card p,
.spotlight-grid p,
.form-copy p,
.success-card p,
.admin-topbar p,
.admin-login-card p,
.faq-answer p,
.order-card p {
    color: var(--text-soft);
    line-height: 1.95;
}

.hero-lead {
    margin: 24px 0 0;
    font-size: 1.08rem;
    max-width: 700px;
}

.hero-actions,
.admin-actions-top {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-actions.centered {
    justify-content: center;
}

.other-services-section {
    padding-top: 0;
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.other-service-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.other-service-card h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.4;
}

.other-service-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.95;
    max-width: 820px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 18px;
    border: 0;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
    box-shadow: 0 20px 38px rgba(40, 93, 255, 0.24);
}

.hero-actions .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero-actions .btn-primary::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -120%;
    width: 54%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.36), rgba(255,255,255,0));
    transform: rotate(18deg);
    animation: startNowShine 3.6s ease-in-out infinite;
    pointer-events: none;
}

.basics-hero-cta {
    min-height: 64px;
    padding: 0 34px;
    font-size: 1.08rem;
    font-weight: 900;
    box-shadow: 0 26px 52px rgba(40, 93, 255, 0.3);
}

.basics-submit-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.basics-submit-btn::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -120%;
    width: 54%;
    height: 180%;
    background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.36), rgba(255,255,255,0));
    transform: rotate(18deg);
    animation: startNowShine 3.6s ease-in-out infinite;
    pointer-events: none;
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(90, 126, 188, 0.16);
    box-shadow: 0 16px 30px rgba(39, 70, 122, 0.08);
}

.btn-offer {
    color: #fff;
    background: linear-gradient(135deg, #ff9f31, #ff7b2c);
    box-shadow: 0 18px 34px rgba(255, 132, 46, 0.24);
}

.btn[disabled],
.btn.is-disabled {
    cursor: not-allowed;
    opacity: 0.78;
    transform: none;
    pointer-events: none;
}

.btn-whatsapp {
    color: white;
    background: linear-gradient(135deg, #1fa855, #21c063);
    box-shadow: 0 20px 38px rgba(33, 192, 99, 0.24);
}

.btn-instapay {
    color: white;
    background: linear-gradient(135deg, #5a2d82 0%, #ef7e6c 38%, #f36a1f 64%, #8b68b6 100%);
    box-shadow: 0 20px 38px rgba(131, 92, 178, 0.28);
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    object-fit: contain;
    border-radius: 50%;
}

.full-width {
    width: 100%;
}

.quick-points {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-points span {
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(94, 129, 186, 0.14);
    color: var(--text-soft);
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(26, 52, 93, 0.05);
}

.panel-card,
.payment-card,
.success-card,
.admin-login-card,
.admin-filter-bar,
.empty-state {
    border-radius: var(--radius-xl);
    padding: 28px;
}

.panel-card h2 {
    margin: 14px 0 14px;
    font-size: 1.8rem;
}

.check-list,
.plan-card ul,
.payment-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.check-list li,
.plan-card ul li,
.payment-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-soft);
    line-height: 1.8;
}

.check-list li::before,
.plan-card ul li::before,
.payment-steps li::before {
    content: '✓';
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(21, 196, 181, 0.14);
    color: #0c9c8f;
    font-weight: 900;
}

.basics-page .negative-list li::before {
    content: '−';
    background: rgba(244, 143, 177, 0.16);
    color: #c85b7f;
    font-weight: 900;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.feature-grid,
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card,
.stat-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(95, 130, 186, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 35px rgba(29, 60, 114, 0.07);
}

.feature-icon {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.12), rgba(21, 196, 181, 0.12));
    color: var(--primary);
    font-weight: 800;
}

.feature-card h3,
.plan-card h3,
.spotlight-card h3,
.faq-group h3,
.success-card h1,
.order-card h2,
.admin-login-card h1 {
    margin: 16px 0 12px;
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card,
.fit-card {
    padding: 26px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(99, 135, 193, 0.12);
    box-shadow: 0 20px 45px rgba(24, 57, 105, 0.08);
}

.testimonial-card h3 {
    margin: 0 0 12px;
    font-size: 1.08rem;
}

.testimonial-card p {
    margin: 0;
    color: var(--text);
    line-height: 1.95;
    font-weight: 600;
}

.hero-main-title {
    max-width: 920px;
    font-size: clamp(1.7rem, 3.9vw, 3.15rem) !important;
    line-height: 1.35;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    padding: 24px 22px;
    border: 1px solid rgba(82, 127, 194, 0.16);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92));
    box-shadow: 0 18px 42px rgba(24, 57, 105, 0.11);
    display: grid;
    gap: 12px;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.34), transparent 38%);
    pointer-events: none;
}

.testimonial-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 196, 40, 0.12);
    border: 1px solid rgba(245, 179, 1, 0.16);
    color: #f5b301;
    font-size: 1.12rem;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 12px rgba(245, 179, 1, 0.2);
    width: fit-content;
}

.testimonial-card h3 {
    font-size: 1.12rem;
    margin: 0;
    font-weight: 900;
    color: #111111;
}

.fit-card {
    padding: 28px;
}

.fit-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.fit-list li {
    position: relative;
    padding-right: 34px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.8;
}

.fit-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(31, 109, 255, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 800;
}

.mobile-sticky-cta {
    display: none;
}

.mobile-sticky-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.differentiator-card,
.differentiators-outro {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(99, 135, 193, 0.12);
    box-shadow: 0 20px 45px rgba(24, 57, 105, 0.08);
}

.differentiator-card-featured {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(236, 246, 255, 0.95));
    border: 1px solid rgba(42, 112, 255, 0.18);
}

.differentiator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.12), rgba(21, 196, 181, 0.14));
    color: var(--primary);
    font-weight: 800;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.differentiator-card h3,
.differentiators-outro h3 {
    margin: 0 0 14px;
    font-size: 1.2rem;
    line-height: 1.7;
}

.differentiator-card p,
.differentiators-outro p {
    margin: 0;
    color: var(--text);
    line-height: 2;
    font-weight: 600;
}

.differentiator-example {
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(244, 249, 255, 0.95);
    border: 1px solid rgba(110, 144, 193, 0.14);
}

.differentiator-example strong {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
}

.differentiator-example p {
    margin: 0 0 10px;
}

.differentiator-example ul {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.differentiator-example li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    line-height: 1.9;
    font-weight: 700;
}

.differentiator-example li::before {
    content: '•';
    flex: 0 0 auto;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.4;
}

.differentiators-outro {
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.08), rgba(21, 196, 181, 0.08));
}

.plans-grid,
.orders-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.plan-card,
.spotlight-card,
.order-card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(99, 135, 193, 0.12);
    box-shadow: 0 20px 45px rgba(24, 57, 105, 0.08);
    overflow: hidden;
}

.plan-card::after,
.order-card::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--primary-2));
    opacity: 0.6;
}

.plan-featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(235, 246, 255, 0.96));
    border: 1px solid rgba(42, 112, 255, 0.24);
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(42, 96, 212, 0.16);
}

.floating-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.floating-tags span,
.plan-badge.featured,
.spotlight-pill {
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.14), rgba(21, 196, 181, 0.18));
    color: var(--primary);
}

.plan-top {
    margin-bottom: 18px;
}

.price-line {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 14px 0 10px;
}

.price-line strong {
    font-size: 2.35rem;
    line-height: 1;
}

.price-line span,
.price-line del {
    color: var(--text-soft);
    font-weight: 700;
}

.special-price {
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.current-price-wrap {
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
}

.current-price-wrap strong,
.discounted-price,
.spotlight-current-price {
    color: #111111;
    opacity: 1;
}

.spotlight-card .spotlight-current-price {
    color: #ffffff;
}

.old-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 90, 125, 0.12), rgba(255, 144, 102, 0.16));
    border: 1px solid rgba(255, 90, 125, 0.18);
}

.special-price del,
.old-price-value {
    font-size: 1.15rem;
    color: #d62839;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #d62839;
}

.discount-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #b83b5d;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.old-price-spotlight {
    display: inline-block;
    width: auto;
    color: #ff5a68;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #ff5a68;
}

.plans-note {
    margin-top: 28px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(92, 126, 184, 0.14);
    color: var(--text-soft);
    box-shadow: 0 12px 28px rgba(25, 55, 101, 0.05);
}

.first-time-offer {
    margin-top: 18px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 247, 224, 0.95), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(255, 182, 67, 0.28);
    box-shadow: 0 24px 54px rgba(202, 136, 28, 0.12);
    position: relative;
    overflow: hidden;
}

.first-time-offer::before {
    content: '';
    position: absolute;
    inset-inline-end: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 195, 77, 0.22), transparent 70%);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(31, 109, 255, 0.08);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 14px;
}

.offer-badge-limited {
    background: linear-gradient(135deg, #ffb83d, #ff8a3d);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 145, 66, 0.28);
}

.offer-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.offer-price-row strong {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1;
    color: #cf5a00;
    text-shadow: 0 8px 20px rgba(207, 90, 0, 0.15);
}

.offer-caption,
.offer-period {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    font-weight: 800;
}

.offer-caption {
    background: rgba(255, 145, 66, 0.14);
    color: #b55a00;
}

.offer-period {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    border: 1px solid rgba(255, 182, 67, 0.22);
}

.first-time-offer h3 {
    margin: 0 0 10px;
    font-size: 1.6rem;
}

.first-time-offer p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
    max-width: 860px;
}

.first-time-offer .btn-offer {
    margin-top: 18px;
}

.spotlight-card {
    background: linear-gradient(145deg, rgba(32, 110, 255, 0.95), rgba(21, 196, 181, 0.92));
    color: white;
}

.spotlight-card p,
.spotlight-card .spotlight-pill {
    color: white;
}

.spotlight-card .spotlight-pill {
    background: rgba(255, 255, 255, 0.18);
}

.spotlight-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.spotlight-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.spotlight-stats strong {
    display: block;
    font-size: 1.2rem;
}

.spotlight-stats .spotlight-current-price,
.spotlight-stats .old-price-spotlight {
    display: inline-block;
    width: auto;
}

.spotlight-stats span {
    display: block;
    margin-top: 6px;
    font-size: 0.92rem;
    opacity: 0.88;
}

.faq-group + .faq-group {
    margin-top: 30px;
}

.faq-group h3 {
    margin-bottom: 16px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 20px;
    border: 1px solid rgba(96, 130, 189, 0.12);
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(23, 53, 100, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px 20px 72px;
    background: transparent;
    border: 0;
    text-align: right;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
    cursor: pointer;
    position: relative;
    line-height: 1.6;
}

.faq-question::before {
    content: '+';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(31, 109, 255, 0.08);
    color: var(--primary);
    font-size: 1.2rem;
}

.faq-item.active .faq-question::before {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
}

.payment-branding {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.instapay-logo {
    width: 86px;
    height: auto;
    display: block;
}

.payment-brand-label {
    color: var(--text-soft);
    font-weight: 800;
    margin-bottom: 6px;
}

.payment-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 900;
    padding: 10px 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.1), rgba(21, 196, 181, 0.12));
    color: var(--text);
    border: 1px solid rgba(31, 109, 255, 0.12);
}


.copy-account-btn {
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.copy-account-btn:hover,
.copy-account-btn:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(31, 109, 255, 0.12);
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.16), rgba(21, 196, 181, 0.18));
    outline: none;
}

.copy-helper {
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
}

.centered-helper {
    text-align: center;
}

.field-hint {
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.copy-toast {
    position: fixed;
    inset-inline-start: 24px;
    bottom: 24px;
    z-index: 50;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(15, 36, 64, 0.94);
    color: #fff;
    box-shadow: 0 18px 40px rgba(15, 36, 64, 0.22);
    transform: translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    font-weight: 800;
}

.copy-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.order-form,
.admin-login-form,
.admin-update-form {
    border-radius: var(--radius-xl);
    padding: 30px;
}

.form-row {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.form-row label,
.admin-update-form label {
    font-weight: 800;
}

.required-star {
    color: #d62839;
    font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea,
.admin-filter-bar input,
.admin-filter-bar select,
.admin-update-form select,
.admin-update-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(92, 127, 185, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea,
.admin-update-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.admin-filter-bar input:focus,
.admin-filter-bar select:focus,
.admin-update-form select:focus,
.admin-update-form textarea:focus {
    border-color: rgba(31, 109, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(31, 109, 255, 0.08);
}

.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

#stockCodeWrap {
    display: none;
}

#stockCodeWrap.visible {
    display: grid;
}

.micro-commitment-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(21, 196, 181, 0.12);
    color: #0f7d72;
    font-weight: 800;
}

.form-disclaimer {
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.9;
}

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

.step-card {
    position: relative;
    padding: 26px 22px 22px;
    border-radius: 24px;
}

.step-number {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.14), rgba(21, 196, 181, 0.18));
    color: var(--primary);
    font-weight: 900;
    font-size: 1.15rem;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.14rem;
}

.step-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
}

.report-preview-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(92, 127, 185, 0.14);
}

.report-preview-cta h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.report-preview-cta p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
}

.success-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
    text-align: initial;
}

.success-summary-item {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(92, 127, 185, 0.14);
}

.success-summary-item-wide {
    grid-column: 1 / -1;
}

.success-summary-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-weight: 700;
}

.success-summary-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
}

.success-whatsapp-box {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin: 18px auto 16px;
}

.success-whatsapp-box p {
    margin: 0;
}

.report-preview-shell {
    padding: 18px;
    border-radius: 28px;
}


.success-payment-box {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin: 24px auto;
    padding: 24px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(92, 127, 185, 0.14);
}

.success-instapay-logo {
    width: 120px;
}

.success-payment-account {
    margin-bottom: 0;
}

.success-page,
.admin-login-page {
    min-height: 80vh;
    display: grid;
    place-items: center;
}

.success-card,
.admin-login-card {
    text-align: center;
}

.success-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: white;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 0 18px 30px rgba(21, 196, 181, 0.24);
}

.admin-container {
    max-width: 1280px;
}

.admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.stat-card {
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.stat-card span {
    color: var(--text-soft);
    font-weight: 700;
}

.admin-filter-bar {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 14px;
    align-items: center;
    margin: 24px 0;
}

.order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.order-id {
    margin-bottom: 10px;
}

.order-head h2 {
    margin: 0 0 8px;
    font-size: 1.3rem;
}

.order-head p {
    margin: 0;
}

.order-status-pill {
    background: rgba(21, 196, 181, 0.12);
    color: #0b8d81;
}

.order-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-soft);
}

.admin-text-blocks {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.admin-text-blocks h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.admin-text-blocks p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(245, 249, 255, 0.92);
    border: 1px solid rgba(88, 122, 178, 0.1);
}

.checkbox-wrap {
    display: flex;
    align-items: end;
}

.checkbox-row {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.9);
    border: 1px solid rgba(92, 127, 185, 0.16);
}

.checkbox-row input {
    width: 18px;
    height: 18px;
}

.empty-state {
    text-align: center;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

@media (max-width: 1100px) {
    .feature-grid,
    .admin-stats,
    .plans-grid,
    .orders-grid,
    .hero-grid,
    .spotlight-grid,
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .plan-featured {
        transform: none;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .logo {
        order: 1;
        justify-content: flex-end;
        gap: 10px;
        margin-inline-start: 0;
        max-width: calc(100% - 72px);
    }

    .logo > div {
        text-align: right;
    }

    .nav-links {
        display: none;
        width: 100%;
        max-width: 100%;
        order: 3;
        margin-top: 8px;
        padding: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 34px rgba(17, 48, 94, 0.10);
        border: 1px solid rgba(109, 142, 184, 0.12);
        overflow: hidden;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .nav-links a {
        display: flex;
        width: 100%;
        background: #ffffff;
        border: 1px solid rgba(109, 142, 184, 0.12);
        color: var(--text);
        text-align: center;
        justify-content: center;
        padding: 11px 14px;
        font-size: 0.94rem;
    }

    .basics-header .nav-links a.active:not(.nav-cta) {
        background: rgba(31, 109, 255, 0.12);
        border-color: rgba(31, 109, 255, 0.18);
    }

    .nav-links a.nav-cta {
        padding-inline: 14px;
    }

    .menu-toggle {
        display: inline-flex;
        order: 2;
        justify-content: center;
        align-items: center;
        margin-inline-start: auto;
    }

    .other-service-card {
        padding: 24px;
    }

    .other-service-card .btn {
        width: 100%;
    }

    .hero-grid,
    .spotlight-grid,
    .form-grid,
    .feature-grid,
    .testimonials-grid,
    .admin-stats,
    .plans-grid,
    .orders-grid,
    .admin-filter-bar,
    .two-col,
    .order-meta-grid,
    .spotlight-stats,
    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        flex-direction: column;
    }

    .hero-copy h1,
    .section-heading h2,
    .spotlight-grid h2,
    .form-copy h2,
    .success-card h1,
    .admin-topbar h1,
    .admin-login-card h1 {
        font-size: clamp(1.8rem, 7vw, 2.7rem);
    }

    .section-space {
        padding: 60px 0;
    }

    .site-header {
        padding: 14px 0;
    }
}


@media (max-width: 560px) {
    .panel-card,
    .payment-card,
    .success-card,
    .admin-login-card,
    .order-form,
    .admin-filter-bar,
    .order-card {
        padding: 22px;
    }

    .hero-actions,
    .admin-actions-top {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .quick-points {
        gap: 10px;
    }

    .quick-points span {
        width: 100%;
    }

    .faq-question {
        padding-left: 58px;
    }

    .hero-main-title {
        font-size: clamp(1.38rem, 6.4vw, 1.9rem) !important;
    }

    .testimonial-stars {
        font-size: 1.05rem;
    }
}


.bulk-actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.bulk-actions-buttons,
.order-head-actions,
.order-form-actions,
.order-head-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-small {
    padding: 10px 14px;
    font-size: 0.9rem;
    border-radius: 14px;
}

.select-order-checkbox {
    min-height: auto;
    padding: 8px 12px;
}

.bulk-select-all {
    width: fit-content;
}

.admin-three-col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.admin-inline-note {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.92);
    border: 1px solid rgba(92, 127, 185, 0.16);
    color: var(--text-soft);
    font-weight: 600;
}

.order-head-actions {
    justify-content: flex-end;
}

@media (max-width: 1100px) {
    .bulk-actions-bar,
    .admin-three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .bulk-actions-bar,
    .order-head,
    .order-head-actions,
    .order-head-top,
    .order-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-three-col {
        grid-template-columns: 1fr;
    }
}

.field-hint {
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
}

.stock-code-wrap {
    transition: 0.25s ease;
}

.wrap-anywhere,
.meta-value,
.admin-text-blocks p,
.admin-inline-note,
.history-entry,
.info-panel li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.force-ltr {
    direction: ltr;
    text-align: left;
    unicode-bidi: plaintext;
}

.force-ltr-input {
    direction: ltr;
    text-align: left;
}

.admin-topbar.glass-card,
.bulk-actions-bar,
.stat-card,
.meta-card,
.info-panel,
.empty-state {
    padding: 24px;
    border-radius: 24px;
}

.admin-topbar {
    margin-bottom: 24px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.admin-filter-bar {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
    margin: 0 0 24px;
}

.filter-field {
    display: grid;
    gap: 8px;
}

.filter-field label {
    font-weight: 800;
}

.filter-search-field {
    grid-column: span 2;
}

.filter-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
}

.bulk-actions-bar {
    margin-bottom: 24px;
}

.bulk-actions-copy {
    display: grid;
    gap: 10px;
}

.bulk-actions-copy p {
    margin: 0;
    color: var(--text-soft);
}

.orders-grid {
    display: grid;
    gap: 24px;
}

.order-card {
    padding: 28px;
    border-radius: 28px;
}

.order-head-main {
    display: grid;
    gap: 8px;
}

.order-subtitle {
    margin: 0;
}

.order-status-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 800;
    background: rgba(31, 109, 255, 0.08);
    color: var(--primary);
}

.status-chip-plan {
    background: rgba(123, 216, 255, 0.14);
    color: #115f93;
}

.status-chip-payment.is-paid {
    background: rgba(21, 196, 181, 0.16);
    color: #0b8d81;
}

.status-chip-payment.is-pending {
    background: rgba(255, 184, 77, 0.18);
    color: #9a5a00;
}

.status-chip-payment.is-unpaid {
    background: rgba(255, 99, 132, 0.12);
    color: #a53d54;
}

.order-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.meta-card {
    display: grid;
    gap: 8px;
    background: rgba(248, 251, 255, 0.94);
    border: 1px solid rgba(92, 127, 185, 0.12);
}

.meta-label {
    color: var(--text-soft);
    font-weight: 800;
    font-size: 0.92rem;
}

.meta-value {
    font-weight: 700;
    color: var(--text);
    line-height: 1.8;
}

.admin-text-blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.info-panel {
    background: rgba(248, 251, 255, 0.94);
    border: 1px solid rgba(92, 127, 185, 0.12);
}

.info-panel-wide {
    grid-column: span 2;
}

.info-panel h3 {
    margin: 0 0 10px;
}

.info-panel p,
.info-panel ul {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.history-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.history-list li {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(92, 127, 185, 0.12);
}

.history-entry {
    display: block;
    color: var(--text-soft);
    line-height: 1.85;
}

.admin-form-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-form-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-form-actions {
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.order-form-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-inline-note {
    flex: 1;
    min-height: auto;
    padding: 16px 18px;
    line-height: 1.9;
}

.empty-state {
    display: grid;
    gap: 10px;
}

.empty-state h2,
.empty-state p {
    margin: 0;
}

@media (max-width: 1200px) {
    .admin-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-filter-bar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .filter-search-field {
        grid-column: span 3;
    }
}

@media (max-width: 860px) {
    .admin-stats,
    .admin-filter-bar,
    .order-meta-grid,
    .admin-text-blocks,
    .admin-form-grid--three {
        grid-template-columns: 1fr;
    }

    .info-panel-wide,
    .filter-search-field {
        grid-column: auto;
    }

    .order-form-actions,
    .order-form-buttons,
    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Admin dashboard refinement: full-width cards with collapsible details */
.orders-grid.orders-grid-single {
    grid-template-columns: minmax(0, 1fr) !important;
}

.orders-grid.orders-grid-single .order-card {
    padding: 26px;
}

.order-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.summary-item,
.order-preview-panel,
.order-details-summary {
    background: rgba(248, 251, 255, 0.94);
    border: 1px solid rgba(92, 127, 185, 0.12);
    border-radius: 20px;
}

.summary-item {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    min-width: 0;
}

.summary-label {
    color: var(--text-soft);
    font-weight: 800;
    font-size: 0.92rem;
}

.summary-value {
    color: var(--text);
    font-weight: 800;
    line-height: 1.7;
    min-width: 0;
}

.order-preview-panel {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    margin-bottom: 18px;
}

.order-preview {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-details-panel {
    margin-top: 4px;
}

.order-details-panel[open] {
    margin-top: 0;
}

.order-details-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.order-details-summary::-webkit-details-marker {
    display: none;
}

.order-details-summary span {
    color: var(--text);
    font-weight: 900;
}

.order-details-summary small {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
}

.order-details-summary::before {
    content: '+';
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(31, 109, 255, 0.08);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900;
    order: 2;
    flex-shrink: 0;
}

.order-details-panel[open] .order-details-summary::before {
    content: '−';
}

.order-details-summary:hover {
    border-color: rgba(92, 127, 185, 0.2);
}

.order-details-content {
    display: grid;
    gap: 18px;
    padding-top: 18px;
}

.order-meta-grid.order-meta-grid-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-form-actions-end {
    justify-content: flex-end;
}

.order-form-actions-end .order-form-buttons {
    margin-inline-start: auto;
}

.order-head-main,
.summary-item,
.meta-card,
.info-panel {
    min-width: 0;
}

.wrap-anywhere {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 1200px) {
    .order-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .order-summary-grid,
    .order-meta-grid.order-meta-grid-details {
        grid-template-columns: 1fr;
    }

    .order-details-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-details-summary::before {
        order: 0;
    }
}


.stat-card-revenue strong {
    font-size: 1.75rem;
}

.stat-card-revenue {
    background: linear-gradient(145deg, rgba(20, 196, 181, 0.12), rgba(31, 109, 255, 0.08));
    border: 1px solid rgba(20, 196, 181, 0.18);
}

@media (max-width: 860px) {
    .payment-branding {
        align-items: flex-start;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .report-preview-cta {
        align-items: flex-start;
        padding: 20px;
    }

    .success-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1080px) {
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.btn:focus-visible,
.select-plan-btn:focus-visible,
.faq-question:focus-visible {
    outline: 3px solid rgba(31, 109, 255, 0.18);
    outline-offset: 3px;
}

.plan-card:hover,
.feature-card:hover,
.step-card:hover,
.report-preview-cta:hover,
.payment-card:hover {
    transform: translateY(-3px);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}



@media (max-width: 720px) {
    .basics-hero-brand {
        gap: 10px;
        margin-bottom: 18px;
        padding: 11px 16px;
        border-radius: 20px;
    }

    .basics-hero-brand__logo {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .basics-hero-brand__name {
        font-size: 0.98rem;
    }

    main {
        padding-bottom: 88px;
    }

    .mobile-sticky-cta {
        position: fixed;
        right: 12px;
        left: 12px;
        bottom: 12px;
        z-index: 80;
        display: block;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .mobile-sticky-cta .btn {
        width: 100%;
        min-height: 52px;
        border-radius: 18px;
        box-shadow: 0 18px 34px rgba(24, 57, 105, 0.18);
    }

    .logo {
        gap: 10px;
    }

    .logo-mark {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        font-size: 1rem;
    }

    .logo strong {
        font-size: 1rem;
    }

    .logo small {
        font-size: 0.84rem;
    }

    .hero-badge,
    .section-kicker,
    .plan-badge,
    .mini-label,
    .spotlight-pill,
    .plan-badge.subtle,
    .order-status-pill,
    .order-id {
        padding: 8px 12px;
        font-size: 0.84rem;
    }

    .btn {
        min-height: 50px;
        padding: 0 18px;
        font-size: 0.96rem;
        border-radius: 16px;
    }

    .btn-icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .quick-points span {
        padding: 10px 14px;
        font-size: 0.92rem;
    }

    .feature-card,
    .step-card {
        padding: 22px 18px;
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        font-size: 0.95rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        margin-bottom: 14px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .check-list li::before,
    .plan-card ul li::before,
    .payment-steps li::before {
        width: 22px;
        height: 22px;
        font-size: 0.82rem;
    }

    .instapay-logo {
        width: 72px;
    }

    .payment-account {
        font-size: 1.35rem;
        padding: 8px 12px;
        border-radius: 16px;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        font-size: 1.8rem;
    }

    .success-instapay-logo {
        width: 96px;
    }
}

@media (max-width: 480px) {
    .container,
    .compact-container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section-space {
        padding: 46px 0;
    }

    .site-header {
        padding: 10px 0;
    }

    .nav-wrap {
        gap: 8px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .menu-toggle span {
        width: 20px;
    }

    .logo {
        gap: 8px;
        max-width: calc(100% - 56px);
    }

    .logo-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 0.94rem;
    }

    .logo strong {
        font-size: 0.95rem;
    }

    .logo small {
        font-size: 0.8rem;
    }

    .hero-copy h1,
    .section-heading h2,
    .spotlight-grid h2,
    .form-copy h2,
    .success-card h1,
    .admin-topbar h1,
    .admin-login-card h1 {
        font-size: clamp(1.55rem, 8.5vw, 2.1rem);
    }

    .hero-lead,
    .section-heading p,
    .form-copy p,
    .success-card p {
        font-size: 0.96rem;
    }

    .hero-badge,
    .section-kicker,
    .plan-badge,
    .mini-label,
    .spotlight-pill,
    .plan-badge.subtle,
    .order-status-pill,
    .order-id {
        gap: 6px;
        padding: 7px 11px;
        font-size: 0.8rem;
    }

    .panel-card,
    .success-card,
    .admin-login-card,
    .order-form,
    .admin-filter-bar,
    .order-card {
        padding: 20px;
    }

    .btn {
        min-height: 48px;
        font-size: 0.94rem;
    }

    .btn-icon {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }

    .feature-card,
    .step-card {
        padding: 20px 16px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 0.88rem;
    }

    .step-number {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 0.92rem;
    }

    .quick-points span {
        font-size: 0.88rem;
    }

    .faq-question {
        padding: 18px 18px 18px 56px;
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .faq-question::before {
        left: 16px !important;
        right: auto !important;
        inset-inline-start: 16px;
        inset-inline-end: auto;
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }

    .success-payment-box {
        padding: 20px 14px;
        border-radius: 20px;
    }

    .success-instapay-logo {
        width: 88px;
    }

    .payment-account {
        font-size: 1.2rem;
    }
}

@media (max-width: 720px) {
    .copy-toast {
        inset-inline-start: 16px;
        inset-inline-end: 16px;
        bottom: 16px;
        text-align: center;
    }

    .offer-price-row {
        align-items: flex-start;
        gap: 10px;
    }
}


/* Admin dashboard v1.02 */
.admin-summary-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.admin-order-meta-grid {
    grid-template-columns: repeat(4, 1fr);
}

.admin-text-blocks-expanded {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.admin-activity-panel {
    grid-column: 1 / -1;
}

.admin-activity-list {
    display: grid;
    gap: 12px;
}

.admin-activity-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(182, 203, 225, 0.56);
}

.admin-activity-time {
    font-weight: 700;
    color: #245785;
    font-size: 0.95rem;
}

.admin-activity-content strong {
    display: block;
    margin-bottom: 4px;
    color: #17385a;
}

.admin-activity-content p,
.admin-activity-content small {
    margin: 0;
}

.admin-activity-content small {
    display: inline-block;
    margin-top: 6px;
    color: #5c748d;
}

.admin-form-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-readonly-field {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(184, 205, 226, 0.76);
    background: rgba(255, 255, 255, 0.86);
    color: #17385a;
    font-weight: 700;
}

.order-head-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.order-id {
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .admin-summary-grid-5,
    .admin-order-meta-grid,
    .admin-form-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .admin-text-blocks-expanded,
    .admin-summary-grid-5,
    .admin-order-meta-grid,
    .admin-form-grid--four {
        grid-template-columns: 1fr;
    }

    .admin-activity-item {
        grid-template-columns: 1fr;
    }
}


.honeypot-field {
    position: absolute !important;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.admin-plan-breakdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.plan-mini-card {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(182, 203, 225, 0.56);
    box-shadow: 0 14px 32px rgba(17, 55, 89, 0.08);
}

.plan-mini-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: #17385a;
}

.plan-mini-card span,
.plan-mini-card small {
    display: block;
    color: #58718a;
}

.admin-pagination {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-pagination-link,
.admin-pagination-gap {
    min-width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(182, 203, 225, 0.72);
    background: rgba(255,255,255,0.9);
    color: #17385a;
    text-decoration: none;
    font-weight: 700;
}

.admin-pagination-link.is-active {
    background: linear-gradient(135deg, #1f5ea8, #2b84d6);
    color: #fff;
    border-color: transparent;
}

.admin-filter-meta {
    margin-top: 10px;
    color: #58718a;
    font-size: 0.95rem;
}

.dashboard-inline-help {
    margin-top: 8px;
    color: #58718a;
    font-size: 0.92rem;
}

@media (max-width: 1200px) {
    .admin-plan-breakdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .admin-plan-breakdown {
        grid-template-columns: 1fr;
    }
}


.hero-copy h1 {
    line-height: 1.25;
}

@media (max-width: 720px) {
    .testimonial-card,
    .fit-card {
        padding: 20px 18px;
    }

    .fit-list li {
        padding-right: 30px;
        font-size: 0.96rem;
    }
}

@media (max-width: 480px) {
    .plan-card,
    .spotlight-card,
    .report-preview-cta,
    .testimonial-card,
    .fit-card {
        padding: 20px;
    }
}

/* v1.30 dashboard + form refinements */
.hero-card-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    text-align: center;
}

.hero-card-minimal h2 {
    margin: 0;
}

.field-helper {
    display: block;
    margin-top: 8px;
    color: var(--muted-text, #8d97b5);
    font-size: 0.88rem;
    line-height: 1.6;
}

.btn-no-shine::after {
    display: none !important;
}

.admin-dashboard-clean .admin-actions-top {
    gap: 12px;
    align-items: center;
}

.admin-stats-simple {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card-highlight {
    border-color: rgba(255, 182, 80, 0.45);
    background: linear-gradient(135deg, rgba(255, 181, 77, 0.18), rgba(255, 150, 64, 0.08));
}

.admin-filter-bar-simple {
    grid-template-columns: 2.1fr 1fr 1fr 1.3fr auto;
    align-items: end;
}

.admin-orders-clean {
    gap: 20px;
}

.order-card-clean {
    padding: 24px;
}

.order-card-header-clean {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.order-badges-clean {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(86, 123, 255, 0.12);
    color: #dce7ff;
    font-size: 0.88rem;
    font-weight: 700;
}

.status-badge-new {
    background: rgba(255, 181, 77, 0.16);
    color: #ffe1a8;
}

.status-badge-delivered {
    background: rgba(73, 195, 123, 0.18);
    color: #c7ffd7;
}

.admin-order-meta-grid-clean {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 18px;
}

.admin-text-blocks-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-text-blocks-clean > div,
.admin-notes-field-clean {
    padding: 16px;
    border-radius: 20px;
    background: rgba(12, 19, 40, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-text-blocks-clean h3,
.admin-notes-field-clean label {
    margin-bottom: 10px;
}

.admin-text-blocks-clean p {
    margin: 0;
}

.admin-form-grid-clean {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.admin-form-grid-clean .admin-notes-field-clean {
    grid-column: 1 / -1;
}

.admin-update-form-clean textarea,
.admin-update-form-clean select,
.admin-update-form-clean input[type="date"] {
    width: 100%;
}

@media (max-width: 980px) {
    .admin-filter-bar-simple {
        grid-template-columns: 1fr 1fr;
    }

    .admin-text-blocks-clean {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .order-card-header-clean {
        flex-direction: column;
    }

    .admin-filter-bar-simple {
        grid-template-columns: 1fr;
    }
}

/* v1.31 refinements */
.hero-card-minimal {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,255,0.94));
}

.hero-card-minimal h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.45;
}

.testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-card {
    height: 100%;
    padding: 26px 24px;
}

.admin-topbar-clean,
.admin-filter-bar-clean,
.order-card-clean,
.plan-mini-card-clean,
.stat-card-clean {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(107, 132, 176, 0.12);
    box-shadow: 0 18px 40px rgba(31, 53, 97, 0.08);
}

.admin-topbar-clean {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-topbar-copy {
    display: grid;
    gap: 10px;
}

.admin-topbar-copy h1 {
    margin: 0;
}

.admin-topbar-copy p {
    margin: 0;
    color: var(--text-soft);
}

.admin-stats-simple {
    margin-bottom: 18px;
}

.stat-card-clean {
    min-height: 124px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.stat-card-clean strong {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1;
}

.stat-card-clean span {
    color: var(--text-soft);
    font-weight: 800;
}

.stat-card-revenue {
    border-color: rgba(88, 195, 183, 0.25);
    background: linear-gradient(135deg, rgba(84, 199, 182, 0.12), rgba(203, 249, 244, 0.42));
}

.admin-plan-breakdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.plan-mini-card-clean {
    padding: 20px 18px;
    display: grid;
    gap: 8px;
    text-align: center;
}

.plan-mini-card-clean strong {
    font-size: 1.04rem;
}

.plan-mini-card-clean span,
.plan-mini-card-clean small {
    color: var(--text-soft);
}

.admin-filter-bar-clean {
    margin-bottom: 24px;
}

.admin-filter-meta {
    color: var(--text-soft);
    font-weight: 700;
    align-self: end;
}

.orders-grid-single {
    grid-template-columns: 1fr;
}

.order-card-clean {
    display: grid;
    gap: 22px;
    padding: 28px;
    border-radius: 30px;
}

.order-card-header-clean {
    margin-bottom: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(107, 132, 176, 0.12);
}

.order-card-heading {
    display: grid;
    gap: 10px;
}

.order-card-code-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.order-id {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(31, 109, 255, 0.1);
    color: var(--primary);
    font-weight: 900;
}

.status-badge {
    color: var(--primary);
    background: rgba(31, 109, 255, 0.1);
}

.status-badge-new {
    color: #a76500;
}

.status-badge-delivered {
    color: #15794c;
}

.order-card-heading h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
}

.order-subtitle {
    color: var(--text-soft);
    font-weight: 800;
}

.admin-section-block {
    display: grid;
    gap: 16px;
}

.admin-section-title {
    font-weight: 900;
    color: var(--heading);
    font-size: 1rem;
}

.admin-order-meta-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 0;
}

.admin-meta-card-clean {
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(249,252,255,0.98), rgba(243,247,253,0.96));
    border: 1px solid rgba(107, 132, 176, 0.12);
    box-shadow: none;
    display: grid;
    gap: 8px;
    align-content: start;
}

.admin-meta-card-clean .meta-label {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 800;
}

.admin-meta-card-clean .meta-value {
    margin: 0;
    color: var(--heading);
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 800;
}

.admin-text-blocks-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 0;
}

.admin-info-panel-clean {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(249,252,255,0.98), rgba(243,247,253,0.96));
}

.admin-info-panel-clean h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.admin-info-panel-clean p {
    margin: 0;
    color: var(--text);
    line-height: 1.95;
    font-weight: 700;
}

.admin-form-grid-tight {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.admin-input-card {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(249,252,255,0.98), rgba(243,247,253,0.96));
    border: 1px solid rgba(107, 132, 176, 0.12);
}

.admin-input-card label {
    margin: 0;
    font-weight: 800;
    color: var(--heading);
}

.admin-notes-panel {
    margin-top: 16px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(246, 250, 255, 0.98), rgba(239, 245, 252, 0.96));
    border: 1px solid rgba(107, 132, 176, 0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.admin-notes-panel label {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
}

.admin-notes-helper {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.75;
}

.admin-notes-panel textarea {
    min-height: 140px;
    resize: vertical;
    background: rgba(255,255,255,0.98);
}

.order-form-actions-end {
    justify-content: flex-end;
}

.order-form-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1180px) {
    .admin-plan-breakdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-order-meta-grid-clean {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-form-grid-tight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .admin-topbar-clean {
        flex-direction: column;
        align-items: stretch;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .admin-text-blocks-clean {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hero-card-minimal {
        min-height: 170px;
        padding: 24px;
    }

    .admin-plan-breakdown,
    .admin-order-meta-grid-clean,
    .admin-form-grid-tight {
        grid-template-columns: 1fr;
    }

    .order-card-clean {
        padding: 22px 18px;
    }

    .order-form-buttons {
        flex-direction: column;
    }
}


/* v1.32 targeted refinements */
.hero-card-visual {
    min-height: 320px;
    padding: 28px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    align-items: stretch;
    overflow: hidden;
}

.hero-visual-copy {
    display: grid;
    align-content: space-between;
    gap: 14px;
    text-align: right;
}

.hero-visual-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(31, 109, 255, 0.1);
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 900;
}

.hero-card-visual h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    line-height: 1.45;
}

.hero-card-visual p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
    font-weight: 700;
}

.hero-visual-art {
    position: relative;
    min-height: 260px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 14% 18%, rgba(61, 173, 255, 0.18), transparent 34%),
        radial-gradient(circle at 84% 22%, rgba(93, 117, 255, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(239, 246, 255, 0.95));
    border: 1px solid rgba(107, 132, 176, 0.12);
    overflow: hidden;
    padding: 20px;
}

.hero-visual-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(122, 150, 196, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 150, 196, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.hero-chart-card {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 18px;
    height: 150px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(107, 132, 176, 0.12);
    box-shadow: 0 14px 28px rgba(31, 53, 97, 0.08);
    padding: 18px 18px 16px;
}

.hero-chart-bars {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    height: 88px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}

.hero-bar {
    display: block;
    flex: 1;
    border-radius: 14px 14px 6px 6px;
    background: linear-gradient(180deg, rgba(53, 157, 255, 0.3), rgba(31, 109, 255, 0.88));
}

.hero-bar-1 { height: 34%; }
.hero-bar-2 { height: 54%; }
.hero-bar-3 { height: 43%; }
.hero-bar-4 { height: 76%; }
.hero-bar-5 { height: 92%; }

.hero-chart-line {
    position: absolute;
    inset-inline: 28px;
    top: 34px;
    height: 68px;
    border-bottom: 3px solid rgba(32, 188, 108, 0.5);
    border-right: 3px solid rgba(32, 188, 108, 0.5);
    border-top: 0;
    border-left: 0;
    transform: skewX(-28deg) translateY(12px);
    border-radius: 0 0 18px 0;
}

.line-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #20bc6c;
    box-shadow: 0 0 0 5px rgba(32, 188, 108, 0.12);
    transform: skewX(28deg);
}

.line-dot-1 { right: 4%; top: 66%; }
.line-dot-2 { right: 28%; top: 44%; }
.line-dot-3 { right: 54%; top: 50%; }
.line-dot-4 { right: 80%; top: 20%; }

.hero-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.94);
    color: var(--heading);
    border: 1px solid rgba(107, 132, 176, 0.12);
    box-shadow: 0 14px 26px rgba(31, 53, 97, 0.08);
}

.hero-chip-top { top: 18px; right: 18px; }
.hero-chip-middle { top: 70px; left: 18px; }
.hero-chip-bottom { top: 118px; right: 52px; }

.stat-card-highlight {
    position: relative;
    border-color: rgba(255, 170, 72, 0.55);
    background: linear-gradient(180deg, rgba(255, 244, 224, 0.96), rgba(255, 236, 205, 0.9));
    box-shadow: 0 18px 34px rgba(255, 170, 72, 0.16);
}

.stat-card-highlight::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, #ffb257, #ff8a4c);
}

.stat-card-highlight strong,
.stat-card-highlight span {
    color: #9a5300;
}

.subscription-expired-text {
    color: #b14b4b !important;
    background: rgba(177, 75, 75, 0.08);
    border: 1px solid rgba(177, 75, 75, 0.14);
    border-radius: 999px;
    padding: 6px 12px;
    width: fit-content;
    font-size: 0.92rem;
    font-weight: 900;
}

@media (max-width: 980px) {
    .hero-card-visual {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-visual-art {
        min-height: 230px;
    }
}

@media (max-width: 720px) {
    .hero-card-visual {
        padding: 22px;
    }

    .hero-visual-art {
        min-height: 210px;
        padding: 16px;
    }

    .hero-chart-card {
        right: 16px;
        left: 16px;
        bottom: 16px;
    }

    .hero-chip {
        min-height: 38px;
        padding: 0 13px;
        font-size: 0.8rem;
    }

    .hero-chip-middle { top: 64px; left: 12px; }
    .hero-chip-bottom { top: 108px; right: 22px; }
}


.basics-hero-section {
    padding-top: 44px;
    padding-bottom: 18px;
}

.basics-hero-wrap {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.basics-hero-brand {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 22px;
    padding: 14px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.94));
    border: 1px solid rgba(99, 135, 193, 0.14);
    box-shadow: 0 16px 36px rgba(24, 57, 105, 0.08);
}

.basics-hero-brand__logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(25, 67, 123, 0.12);
}

.basics-hero-brand__name {
    direction: ltr;
    font-weight: 900;
    font-size: 1.16rem;
    color: #0f2746;
    letter-spacing: 0.01em;
}

.basics-page-title {
    margin-bottom: 16px;
}

.basics-page-lead {
    margin-inline: auto;
}

.basics-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.basics-info-card {
    padding: 28px;
    border-radius: var(--radius-xl);
}

.basics-info-card h3 {
    margin: 0 0 18px;
    font-size: 1.18rem;
}

.basics-page .basics-info-card .section-kicker {
    color: #2a5184;
}

.basics-page .basics-info-card h2,
.basics-page .basics-info-card h3,
.basics-page .testimonial-card h3 {
    color: #0b1d35;
}

.basics-page .basics-info-card p,
.basics-page .basics-info-card .check-list li,
.basics-page .testimonial-card p {
    color: #17314f;
}

.basics-page .basics-highlight-item {
    color: #112948;
}

@media (max-width: 900px) {
    .basics-sections-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 900px) {
    .basics-info-card {
        padding: 22px;
    }

    .basics-info-card h3 {
        font-size: 1.06rem;
        margin-bottom: 14px;
    }

    .basics-page-title {
        font-size: 1.75rem !important;
        line-height: 1.45;
    }

    .basics-page-lead,
    .basics-info-card .check-list li,
    .basics-booking-form .form-disclaimer {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .section-kicker {
        font-size: 0.88rem;
    }
}

@media (max-width: 720px) {
    .other-services-accordion summary {
        padding: 18px 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .other-services-summary-note {
        font-size: 0.88rem;
    }

    .other-services-list {
        padding: 0 18px 18px;
    }

    .basics-booking-form .two-col,
    .basics-form-two-col {
        grid-template-columns: 1fr;
    }

    .basics-page .logo-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .basics-page .logo strong,
    .basics-page .logo small {
        font-size: 0.84rem;
    }

    .basics-price-badge {
        font-size: 0.92rem;
        padding: 9px 14px;
    }

    .basics-page .hero-actions .btn,
    .basics-booking-form .btn {
        min-height: 50px;
        font-size: 0.95rem;
    }

    .basics-page .check-list li::before {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }
}


@media (max-width: 720px) {
    .basics-header .logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        font-size: 0.92rem;
    }

    .basics-header .logo strong {
        font-size: 0.88rem;
    }

    .basics-header .logo small {
        font-size: 0.76rem;
    }

    .basics-header .nav-links a {
        font-size: 0.88rem;
    }
}


.other-services-accordion {
    padding: 0;
    overflow: hidden;
}

.other-services-accordion summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
}

.other-services-accordion summary::-webkit-details-marker {
    display: none;
}

.other-services-summary-copy {
    display: grid;
    gap: 8px;
}

.other-services-summary-copy h2 {
    margin: 0;
    font-size: 1.35rem;
}

.other-services-summary-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
    font-weight: 600;
}

.other-services-summary-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(31, 109, 255, 0.08);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.other-services-list {
    padding: 0 24px 24px;
    display: grid;
    gap: 14px;
}

.other-services-link {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(241, 247, 255, 0.95));
    border: 1px solid rgba(94, 132, 195, 0.14);
    transition: 0.22s ease;
}

.other-services-link:hover {
    transform: translateY(-2px);
    border-color: rgba(31, 109, 255, 0.24);
    box-shadow: 0 14px 28px rgba(31, 73, 126, 0.08);
}

.other-services-link-title {
    color: var(--heading);
    font-size: 1.03rem;
    font-weight: 900;
}

.other-services-link small {
    color: var(--text-soft);
    line-height: 1.8;
    font-weight: 700;
}

.dashboard-switcher {
    display: flex;
    gap: 10px;
    padding: 10px;
    margin: 24px 0 18px;
    flex-wrap: wrap;
}

.dashboard-switcher-btn {
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(104, 136, 188, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
}

.dashboard-switcher-btn.is-active {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(31, 109, 255, 0.16);
}

.dashboard-panel {
    display: none;
}

.dashboard-panel.is-active {
    display: block;
}

.dashboard-panel-heading {
    margin-bottom: 18px;
}

.dashboard-panel-heading h2 {
    margin: 6px 0 10px;
}

.dashboard-panel-heading p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.9;
    font-weight: 600;
}

.admin-course-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-text-blocks-single {
    grid-template-columns: 1fr;
}

.basics-payment-title {
    font-size: 1.55rem;
    line-height: 1.55;
}

.basics-payment-note {
    font-size: 0.95rem;
}


@media (max-width: 860px) {
    .dashboard-switcher {
        flex-direction: column;
    }

    .dashboard-switcher-btn {
        width: 100%;
    }

    .admin-course-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .other-services-summary-copy h2 {
        font-size: 1.12rem;
    }

    .other-services-summary-copy p,
    .other-services-link small {
        font-size: 0.9rem;
    }

    .other-services-link-title {
        font-size: 0.98rem;
    }

    .basics-payment-title {
        font-size: 1.18rem;
        line-height: 1.6;
    }

    .basics-payment-note {
        font-size: 0.9rem;
    }
}


.basics-price-stack {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-top: 10px;
}


.basics-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.12), rgba(108, 92, 231, 0.14));
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(31, 109, 255, 0.12);
}

.other-services-section {
    padding-top: 40px;
}

.other-services-section .container {
    width: min(calc(100% - 32px), 980px);
}

.other-services-accordion {
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.other-services-accordion summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
}

.other-services-summary-copy {
    display: grid;
    gap: 8px;
}

.other-services-summary-copy h2 {
    margin: 0;
    font-size: 1.42rem;
}

.other-services-summary-copy p {
    max-width: 760px;
}

.other-services-list {
    padding: 0 28px 28px;
    display: grid;
    gap: 14px;
}

.other-services-link {
    grid-template-columns: minmax(0, 1fr);
}

.dashboard-switcher-wrap {
    margin: 24px 0 18px;
    padding: 18px;
}

.dashboard-switcher-intro {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.dashboard-switcher-intro h2 {
    margin: 0;
    font-size: 1.35rem;
}

.dashboard-switcher-intro p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.85;
    font-weight: 600;
}

.dashboard-switcher {
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.dashboard-switcher-btn {
    display: grid;
    gap: 6px;
    justify-items: center;
    flex: 1 1 260px;
    min-height: 78px;
    text-align: center;
}

.dashboard-switcher-btn span {
    font-size: 1rem;
    font-weight: 900;
}

.dashboard-switcher-btn small {
    color: inherit;
    font-size: 0.86rem;
    opacity: 0.8;
    font-weight: 700;
}

.dashboard-switcher-btn.is-active small {
    opacity: 0.92;
}

@media (max-width: 720px) {
    .basics-price-badge {
        font-size: 1.45rem;
        padding: 12px 18px;
    }

    .other-services-section .container {
        width: min(calc(100% - 24px), 980px);
    }

    .other-services-accordion summary {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .other-services-list {
        padding: 0 18px 18px;
    }

    .dashboard-switcher-wrap {
        padding: 16px;
    }

    .dashboard-switcher-intro h2 {
        font-size: 1.12rem;
    }
}


.course-panel-heading {
    display: grid;
    gap: 14px;
}

.course-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 6px;
}

.course-stat-card {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(241, 247, 255, 0.95));
    border: 1px solid rgba(94, 132, 195, 0.14);
}

.course-stat-card strong {
    font-size: 1.6rem;
    color: var(--heading);
}

.course-stat-card span {
    color: var(--text-soft);
    font-weight: 700;
}

.course-stat-card-amount {
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.08), rgba(108, 92, 231, 0.08));
}

.course-card-header-clean {
    align-items: start;
}

.course-price-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 109, 255, 0.08);
    color: var(--primary);
    font-weight: 900;
    font-size: 0.92rem;
}

.course-booking-card .admin-section-block + .admin-section-block {
    margin-top: 16px;
}

.course-booking-update-form {
    margin-top: 18px;
}

.course-booking-card .admin-notes-panel textarea {
    min-height: 132px;
}

@media (max-width: 720px) {
    .course-stats-grid {
        grid-template-columns: 1fr;
    }
}


.basics-form-two-col--triple {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.other-services-section {
    padding-top: 48px;
}

.other-services-section .container {
    width: min(calc(100% - 32px), var(--container));
}

.other-services-accordion {
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 40px rgba(17, 38, 74, 0.08);
}

.other-services-accordion summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
}

.other-services-summary-copy {
    display: grid;
    gap: 10px;
}

.other-services-summary-copy .section-kicker {
    margin: 0;
}

.other-services-summary-copy h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
}

.other-services-summary-note {
    min-width: 168px;
}

.other-services-list {
    padding: 0 28px 28px;
}

.other-services-link {
    gap: 10px;
    padding: 20px 22px;
    border-radius: 24px;
}

@media (max-width: 900px) {
    .basics-form-two-col--triple {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .other-services-accordion summary {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .other-services-summary-note {
        min-width: 0;
        width: fit-content;
    }

    .other-services-list {
        padding: 0 18px 18px;
    }
}


.other-services-heading {
    margin-bottom: 20px;
}

.basics-age-row {
    display: flex;
    justify-content: flex-start;
}

.basics-age-field {
    width: min(220px, 100%);
}

.basics-form-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .basics-form-contact-grid {
        grid-template-columns: 1fr;
    }

    .basics-age-field {
        width: 100%;
    }
}


.basics-live-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(51, 103, 214, 0.1);
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    flex-wrap: wrap;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 70, 92, 0.12);
    color: #d8344e;
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
}

.live-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4d67;
    box-shadow: 0 0 0 0 rgba(255, 77, 103, 0.5);
    animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {
    0% {
        opacity: 0.95;
        box-shadow: 0 0 0 0 rgba(255, 77, 103, 0.42);
    }
    50% {
        opacity: 0.35;
        box-shadow: 0 0 0 8px rgba(255, 77, 103, 0);
    }
    100% {
        opacity: 0.95;
        box-shadow: 0 0 0 0 rgba(255, 77, 103, 0);
    }
}


.basics-highlights-section {
    padding-top: 10px;
}

.basics-highlights-card {
    text-align: center;
    display: grid;
    gap: 18px;
}

.basics-highlights-card h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.basics-highlights-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.basics-highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.98), rgba(241, 247, 255, 0.95));
    border: 1px solid rgba(94, 132, 195, 0.16);
    color: var(--heading);
    font-weight: 800;
    line-height: 1.9;
    box-shadow: 0 10px 24px rgba(17, 38, 74, 0.04);
}

.basics-highlights-list > .basics-highlight-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc(50% - 7px));
}

@media (max-width: 900px) {
    .basics-highlights-list {
        grid-template-columns: 1fr;
    }

    .basics-highlight-item {
        min-height: 60px;
        font-size: 0.96rem;
    }

    .basics-highlights-list > .basics-highlight-item:last-child {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }
}


@media (max-width: 720px) {
    .basics-page .basics-info-card {
        padding: 18px;
    }

    .basics-page .basics-info-card h3 {
        font-size: 1rem;
    }

    .basics-page .basics-info-card .check-list li,
    .basics-page .testimonial-card p,
    .basics-page .basics-highlight-item,
    .basics-page .section-heading p {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .basics-page .check-list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.78rem;
    }

    .basics-page .basics-highlight-item {
        min-height: 56px;
        padding: 14px 16px;
    }

    .basics-page .section-heading h2 {
        font-size: 1.5rem;
    }

    .basics-page .testimonial-card h3 {
        font-size: 1rem;
    }

    .basics-page .testimonial-stars {
        font-size: 0.96rem;
        padding: 7px 12px;
    }
}


.hero-pain-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 8px;
    max-width: 760px;
}

.hero-pain-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(94, 132, 195, 0.14);
    color: #123055;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(17, 38, 74, 0.06);
}

.basics-highlights-list--equal > .basics-highlight-item:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
}

.basics-needs-card {
    display: grid;
    gap: 18px;
}

.needs-bullet-list {
    margin: 0;
}

.needs-bullet-list li {
    font-weight: 800;
}

.basics-steps-section {
    padding-top: 14px;
}

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

.process-step-card {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 26px;
    border-radius: 28px;
}

.process-step-number {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 109, 255, 0.14), rgba(21, 196, 181, 0.14));
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900;
}

.process-step-card h3 {
    margin: 0;
    font-size: 1.12rem;
    color: #0b1d35;
}

.process-step-card p {
    margin: 0;
    color: #17314f;
    line-height: 1.9;
    font-weight: 700;
}

.booking-whatsapp-wrap {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin-top: 14px;
}

.booking-whatsapp-btn {
    min-height: 48px;
    padding: 0 22px;
    font-size: 0.95rem;
    box-shadow: 0 14px 28px rgba(33, 192, 99, 0.18);
}

.booking-success-popup {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(11, 24, 42, 0.18);
    backdrop-filter: blur(6px);
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.booking-success-popup.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.booking-success-popup__card {
    width: min(100%, 420px);
    text-align: center;
    padding: 30px 24px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(11, 24, 42, 0.18);
}

.booking-success-popup__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(31, 168, 85, 0.14), rgba(33, 192, 99, 0.18));
    color: #148a4f;
    font-size: 2rem;
    font-weight: 900;
}

.booking-success-popup__card h2 {
    margin: 0 0 10px;
    color: #0b1d35;
    font-size: 1.5rem;
}

.booking-success-popup__card p {
    margin: 0;
    color: #17314f;
    font-size: 1.02rem;
    font-weight: 800;
}

@media (max-width: 900px) {
    .process-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .process-step-card {
        padding: 18px;
    }

    .booking-success-popup__card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .booking-success-popup__icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        font-size: 1.7rem;
    }

    .booking-success-popup__card h2 {
        font-size: 1.2rem;
    }

    .booking-success-popup__card p {
        font-size: 0.95rem;
    }
}


/* Learn stock market basics page targeted adjustments */
.basics-topbar-section {
    position: relative;
    padding: 22px 0 0;
    z-index: 3;
}

.basics-topbar-wrap {
    display: flex;
    justify-content: center;
}

.basics-topbar-brand {
    position: relative;
    width: min(100%, 760px);
    min-height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 28px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.94));
    border: 1px solid rgba(99, 135, 193, 0.14);
    box-shadow: 0 20px 44px rgba(24, 57, 105, 0.1);
    color: #0f2746;
    text-decoration: none;
    overflow: hidden;
}

.basics-topbar-brand::before,
.basics-topbar-brand::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.basics-topbar-brand::before {
    width: 180px;
    height: 180px;
    top: -94px;
    left: -46px;
    background: radial-gradient(circle, rgba(31, 109, 255, 0.12) 0%, rgba(31, 109, 255, 0) 72%);
}

.basics-topbar-brand::after {
    width: 200px;
    height: 200px;
    right: -72px;
    bottom: -118px;
    background: radial-gradient(circle, rgba(21, 196, 181, 0.12) 0%, rgba(21, 196, 181, 0) 74%);
}

.basics-topbar-logo,
.basics-topbar-name {
    position: relative;
    z-index: 1;
}

.basics-topbar-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(25, 67, 123, 0.12);
}

.basics-topbar-name {
    direction: ltr;
    font-weight: 900;
    font-size: 1.32rem;
    letter-spacing: 0.01em;
}

.basics-needs-card {
    gap: 22px;
}

.basics-needs-intro,
.basics-needs-outro {
    margin: 0;
    color: #17314f;
    font-weight: 800;
    line-height: 2;
}

.basics-needs-problems {
    display: grid;
    gap: 16px;
}

.basics-needs-problems h3 {
    margin: 0;
    font-size: 1.12rem;
    color: #0b1d35;
}

.basics-needs-points-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.basics-needs-point {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.92));
    border: 1px solid rgba(42, 112, 255, 0.12);
    box-shadow: 0 18px 36px rgba(17, 38, 74, 0.06);
    color: #123055;
    font-weight: 800;
    line-height: 1.9;
}

.basics-needs-point::before {
    content: '•';
    flex: 0 0 auto;
    margin-left: 10px;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary);
}

.basics-needs-point--wide {
    grid-column: 1 / -1;
}

.basics-steps-section .compact-container {
    width: min(calc(100% - 32px), var(--container));
}

.process-steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.process-step-card {
    min-height: 196px;
    align-content: start;
    justify-items: center;
    text-align: center;
}

.process-step-card h3 {
    width: 100%;
    margin-top: 10px;
    font-size: 1.02rem;
    line-height: 1.85;
}

@media (max-width: 1100px) {
    .process-step-card {
        min-height: 210px;
    }

    .process-step-card h3 {
        font-size: 0.98rem;
    }
}

@media (max-width: 900px) {
    .process-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .basics-topbar-section {
        padding-top: 16px;
    }

    .basics-topbar-brand {
        width: 100%;
        min-height: 72px;
        padding: 12px 18px;
        gap: 12px;
        border-radius: 24px;
    }

    .basics-topbar-logo {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .basics-topbar-name {
        font-size: 1.02rem;
    }

    .basics-needs-points-grid {
        grid-template-columns: 1fr;
    }

    .basics-needs-point {
        min-height: 0;
        padding: 16px 18px;
        border-radius: 18px;
    }

    .process-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .process-step-card {
        min-height: 0;
        padding: 18px 14px;
        border-radius: 24px;
    }

    .process-step-card h3 {
        font-size: 0.94rem;
        line-height: 1.8;
    }

    .booking-whatsapp-btn {
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.86rem;
        box-shadow: 0 10px 20px rgba(33, 192, 99, 0.14);
    }

    .booking-whatsapp-btn .btn-icon {
        width: 16px;
        height: 16px;
    }
}

/* Qahwet El Borsa brand refresh */
:root {
    --bg: #f7f2ea;
    --bg-2: #fffaf3;
    --text: #24140c;
    --text-soft: #6d5a4f;
    --line: rgba(86, 58, 32, 0.14);
    --primary: #0b5a34;
    --primary-2: #6b3516;
    --accent: #b68a3a;
    --accent-2: #dfc28a;
    --shadow: 0 22px 62px rgba(70, 43, 23, 0.13);
}

body {
    background:
        radial-gradient(circle at top right, rgba(182, 138, 58, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(11, 90, 52, 0.12), transparent 32%),
        linear-gradient(180deg, var(--bg) 0%, #fffdf8 46%, var(--bg-2) 100%);
}

.background-grid {
    background-image:
        linear-gradient(rgba(111, 74, 38, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 74, 38, 0.06) 1px, transparent 1px);
}

.orb-1 {
    background: rgba(214, 174, 96, 0.38);
}

.orb-2 {
    background: rgba(11, 90, 52, 0.18);
}

.site-header.scrolled {
    background: rgba(247, 242, 234, 0.88);
    border-bottom: 1px solid rgba(86, 58, 32, 0.12);
}

.brand-logo-link {
    min-width: 0;
}

.site-logo-img {
    width: 112px;
    height: 76px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 14px 20px rgba(51, 28, 13, 0.12));
}

.site-logo-img--wide {
    width: 128px;
    height: 86px;
}

.portal-header .nav-wrap {
    align-items: center;
}

.portal-nav-links {
    max-width: min(100%, 720px);
}

.portal-page {
    position: relative;
    z-index: 1;
}

.portal-hero {
    padding-top: 34px;
    padding-bottom: 58px;
}

.portal-hero-wrap {
    text-align: center;
    max-width: 880px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portal-hero-logo {
    width: min(340px, 78vw);
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 24px 44px rgba(65, 35, 18, 0.14));
}

.portal-title {
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    color: #4a240f;
}

.portal-subtitle {
    margin: 8px 0 0;
    color: var(--primary);
    font-size: clamp(1.1rem, 3vw, 1.7rem);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.portal-lead {
    margin-inline: auto;
    max-width: 760px;
    font-size: 1.12rem;
}

#services,
.portal-services-section {
    scroll-margin-top: 28px;
}

.portal-services-section {
    padding-top: 28px;
}

.portal-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.portal-service-card {
    position: relative;
    min-height: 360px;
    padding: 32px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portal-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(182, 138, 58, 0.18), transparent 36%),
        linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0));
    pointer-events: none;
}

.portal-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 76px rgba(70, 43, 23, 0.18);
    border-color: rgba(11, 90, 52, 0.18);
}

.portal-service-number,
.portal-service-icon,
.portal-service-card h3,
.portal-service-card p,
.portal-service-action {
    position: relative;
    z-index: 1;
}

.portal-service-number {
    font-weight: 900;
    color: rgba(74, 36, 15, 0.3);
    font-size: 1.1rem;
}

.portal-service-icon {
    width: 62px;
    height: 62px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(11, 90, 52, 0.1);
    color: var(--primary);
    font-size: 2rem;
    box-shadow: inset 0 0 0 1px rgba(11, 90, 52, 0.08);
}

.portal-service-card h3 {
    margin: 0;
    color: #4a240f;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.35;
}

.portal-service-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.95;
    font-weight: 700;
}

.portal-service-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(11, 90, 52, 0.16);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--accent));
    box-shadow: 0 20px 38px rgba(11, 90, 52, 0.22);
}

.nav-links a.active:not(.nav-cta),
.nav-links a:hover {
    background: rgba(11, 90, 52, 0.08);
}

.nav-links a.nav-cta,
.nav-links a.nav-cta.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 10px 20px rgba(11, 90, 52, 0.2);
}

@media (max-width: 860px) {
    .site-logo-img {
        width: 96px;
        height: 66px;
    }

    .site-logo-img--wide {
        width: 108px;
        height: 74px;
    }

    .portal-services-grid {
        grid-template-columns: 1fr;
    }

    .portal-service-card {
        min-height: 300px;
        padding: 26px;
    }
}

@media (max-width: 560px) {
    .portal-hero {
        padding-top: 18px;
    }

    .portal-hero-logo {
        width: min(270px, 82vw);
    }

    .portal-service-card h3 {
        font-size: 1.45rem;
    }

    .portal-service-card p {
        font-size: 0.98rem;
    }
}

.site-logo-img {
    width: 150px;
    height: 86px;
}

.site-logo-img--wide {
    width: 166px;
    height: 94px;
}

@media (max-width: 860px) {
    .site-logo-img {
        width: 118px;
        height: 70px;
    }

    .site-logo-img--wide {
        width: 126px;
        height: 74px;
    }
}

/* v1.57 requested refinements */
.public-footer {
    position: relative;
    z-index: 2;
    padding: 22px 0 34px;
}

.public-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 250, 243, 0.92), rgba(247, 242, 234, 0.82));
    border-color: rgba(107, 53, 22, 0.14);
}

.public-footer-brand {
    display: grid;
    gap: 2px;
    color: #4a240f;
}

.public-footer-title {
    font-weight: 900;
    font-size: 1.05rem;
}

.public-footer-subtitle {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 0.86rem;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(107, 53, 22, 0.12);
    box-shadow: 0 12px 26px rgba(70, 43, 23, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(11, 90, 52, 0.22);
    box-shadow: 0 16px 32px rgba(70, 43, 23, 0.12);
}

.footer-social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.basics-limited-note {
    margin-top: -2px;
    color: #8a5a18;
    font-weight: 900;
    font-size: 0.96rem;
}

.basics-price-badge {
    background: linear-gradient(135deg, rgba(182, 138, 58, 0.20), rgba(11, 90, 52, 0.12));
    color: #4a240f;
    box-shadow:
        inset 0 0 0 1px rgba(107, 53, 22, 0.16),
        0 14px 28px rgba(70, 43, 23, 0.08);
}

.basics-live-note {
    background: linear-gradient(135deg, rgba(11, 90, 52, 0.10), rgba(182, 138, 58, 0.12));
    color: #0b5a34;
    box-shadow: inset 0 0 0 1px rgba(11, 90, 52, 0.12);
}

.live-badge {
    background: rgba(74, 36, 15, 0.08);
    color: #6b3516;
}

.live-badge-dot {
    background: #b68a3a;
    box-shadow: 0 0 0 6px rgba(182, 138, 58, 0.14);
}

.hero-card-visual {
    border-color: rgba(107, 53, 22, 0.16);
    background: linear-gradient(135deg, rgba(255, 250, 243, 0.94), rgba(247, 242, 234, 0.86));
}

.hero-visual-pill {
    background: rgba(182, 138, 58, 0.14);
    color: #6b3516;
}

.hero-visual-art {
    background:
        radial-gradient(circle at 14% 18%, rgba(182, 138, 58, 0.18), transparent 34%),
        radial-gradient(circle at 84% 22%, rgba(11, 90, 52, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(247, 242, 234, 0.94));
    border-color: rgba(107, 53, 22, 0.14);
}

.hero-visual-art::before {
    background-image:
        linear-gradient(rgba(107, 53, 22, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 53, 22, 0.07) 1px, transparent 1px);
}

.hero-chart-card {
    background: rgba(255, 253, 248, 0.9);
    border-color: rgba(107, 53, 22, 0.14);
    box-shadow: 0 14px 28px rgba(70, 43, 23, 0.09);
}

.hero-bar {
    background: linear-gradient(180deg, rgba(182, 138, 58, 0.34), rgba(11, 90, 52, 0.88));
}

.hero-chart-line {
    border-bottom-color: rgba(182, 138, 58, 0.72);
    border-right-color: rgba(182, 138, 58, 0.72);
}

.line-dot {
    background: #b68a3a;
    box-shadow: 0 0 0 5px rgba(182, 138, 58, 0.14);
}

.hero-chip {
    color: #4a240f;
    border-color: rgba(107, 53, 22, 0.12);
    box-shadow: 0 14px 26px rgba(70, 43, 23, 0.08);
}

@media (max-width: 640px) {
    .public-footer-inner {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
}

/* v1.58 requested refinements: full-width footer + warmer cards */
.public-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 72px;
    padding: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(182, 138, 58, 0.18), transparent 28%),
        radial-gradient(circle at 82% 100%, rgba(11, 90, 52, 0.22), transparent 30%),
        linear-gradient(135deg, #21150f 0%, #2f1a0f 54%, #152318 100%);
    border-top: 1px solid rgba(182, 138, 58, 0.28);
    box-shadow: 0 -22px 54px rgba(70, 43, 23, 0.12);
}

.public-footer .container {
    width: min(calc(100% - 32px), 1320px);
}

.public-footer-inner,
.public-footer-inner.glass-card {
    min-height: 132px;
    padding: 34px 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.public-footer-title {
    color: #fffaf3;
    font-size: 1.15rem;
}

.public-footer-subtitle {
    color: #dfc28a;
}

.footer-social-link {
    background: rgba(255, 250, 243, 0.1);
    border-color: rgba(223, 194, 138, 0.24);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.footer-social-link:hover {
    border-color: rgba(223, 194, 138, 0.45);
    background: rgba(255, 250, 243, 0.16);
}

.basics-page .basics-info-card,
.basics-page .testimonial-card,
.basics-page .basics-booking-form,
.basics-page .process-step-card,
.strategy-page .differentiator-card,
.strategy-page .differentiators-outro,
.strategy-page .fit-card,
.strategy-page .step-card,
.strategy-page .report-preview-cta,
.strategy-page .plan-card,
.strategy-page .first-time-offer,
.strategy-page .spotlight-card,
.strategy-page .faq-group,
.strategy-page .order-form,
.strategy-page .payment-card,
.strategy-page .panel-card {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(247, 242, 234, 0.92));
    border: 1px solid rgba(107, 53, 22, 0.14);
    box-shadow: 0 22px 48px rgba(70, 43, 23, 0.09);
}

.basics-page .basics-highlights-card,
.strategy-page .differentiator-card-featured,
.strategy-page .plan-featured {
    background:
        radial-gradient(circle at top right, rgba(182, 138, 58, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(242, 232, 216, 0.94));
    border-color: rgba(182, 138, 58, 0.24);
}

.basics-highlight-item,
.basics-needs-point,
.strategy-page .differentiator-example,
.strategy-page .hero-chip,
.strategy-page .old-price-pill,
.strategy-page .plans-note {
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(246, 237, 222, 0.94));
    border-color: rgba(107, 53, 22, 0.14);
    box-shadow: 0 14px 28px rgba(70, 43, 23, 0.06);
}

.basics-page .check-list li::before,
.strategy-page .check-list li::before,
.strategy-page .plan-card ul li::before,
.strategy-page .payment-steps li::before,
.strategy-page .fit-list li::before {
    background: rgba(11, 90, 52, 0.12);
    color: #0b5a34;
}

.basics-page .negative-list li::before {
    background: rgba(107, 53, 22, 0.12);
    color: #6b3516;
}

.basics-page .section-kicker,
.strategy-page .section-kicker,
.strategy-page .differentiator-example strong {
    color: #0b5a34;
}

.basics-page .testimonial-stars,
.strategy-page .floating-tags span,
.strategy-page .plan-badge.featured,
.strategy-page .spotlight-pill,
.strategy-page .differentiator-badge,
.strategy-page .offer-badge {
    background: rgba(182, 138, 58, 0.14);
    border-color: rgba(182, 138, 58, 0.22);
    color: #6b3516;
}

.strategy-page .step-number,
.strategy-page .process-step-number {
    background: linear-gradient(135deg, rgba(11, 90, 52, 0.12), rgba(182, 138, 58, 0.16));
    color: #0b5a34;
}

.strategy-page .hero-card-visual {
    border-color: rgba(182, 138, 58, 0.22);
    background:
        radial-gradient(circle at top left, rgba(182, 138, 58, 0.18), transparent 38%),
        linear-gradient(135deg, rgba(255, 250, 243, 0.98), rgba(242, 232, 216, 0.92));
    box-shadow: 0 24px 54px rgba(70, 43, 23, 0.12);
}

.strategy-page .hero-visual-pill {
    background: rgba(11, 90, 52, 0.10);
    color: #0b5a34;
}

.strategy-page .hero-visual-art {
    background:
        radial-gradient(circle at 14% 18%, rgba(182, 138, 58, 0.20), transparent 34%),
        radial-gradient(circle at 84% 22%, rgba(11, 90, 52, 0.14), transparent 28%),
        linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(246, 237, 222, 0.94));
    border-color: rgba(107, 53, 22, 0.16);
}

.strategy-page .hero-visual-art::before {
    background-image:
        linear-gradient(rgba(107, 53, 22, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 53, 22, 0.07) 1px, transparent 1px);
}

.strategy-page .hero-chart-card {
    background: rgba(255, 253, 248, 0.92);
    border-color: rgba(107, 53, 22, 0.14);
    box-shadow: 0 14px 28px rgba(70, 43, 23, 0.09);
}

.strategy-page .hero-bar {
    background: linear-gradient(180deg, rgba(182, 138, 58, 0.38), rgba(11, 90, 52, 0.9));
}

.strategy-page .hero-chart-line {
    border-bottom-color: rgba(182, 138, 58, 0.72);
    border-right-color: rgba(182, 138, 58, 0.72);
}

.strategy-page .line-dot {
    background: #b68a3a;
    box-shadow: 0 0 0 5px rgba(182, 138, 58, 0.14);
}

.strategy-page .spotlight-card {
    background: linear-gradient(135deg, #2f1a0f, #0b5a34);
    color: #fffaf3;
    border-color: rgba(223, 194, 138, 0.22);
}

.strategy-page .spotlight-card p,
.strategy-page .spotlight-card span,
.strategy-page .spotlight-card .price-line span {
    color: rgba(255, 250, 243, 0.82);
}

.strategy-page .spotlight-current-price,
.strategy-page .spotlight-card .spotlight-current-price {
    color: #fffaf3;
}

.course-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-stat-card,
.course-stat-card-amount,
.course-stat-card-price {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(247, 242, 234, 0.94));
    border-color: rgba(107, 53, 22, 0.14);
}

.course-price-pill {
    background: rgba(11, 90, 52, 0.10);
    color: #0b5a34;
}

@media (max-width: 720px) {
    .public-footer-inner,
    .public-footer-inner.glass-card {
        min-height: 150px;
        padding: 30px 0;
    }

    .course-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* v1.59 requested refinements */
.public-footer .footer-social-link img[src$="whatsapp-logo.svg"],
.public-footer .footer-social-icon {
    background: transparent;
}

/* Make service cards on the lecture and strategy pages more prominent within the new coffee/green identity */
.basics-page .basics-info-card,
.basics-page .basics-booking-form,
.basics-page .process-step-card,
.strategy-page .differentiator-card,
.strategy-page .differentiators-outro,
.strategy-page .fit-card,
.strategy-page .step-card,
.strategy-page .report-preview-cta,
.strategy-page .plan-card,
.strategy-page .first-time-offer,
.strategy-page .order-form,
.strategy-page .payment-card,
.strategy-page .panel-card {
    background:
        radial-gradient(circle at top right, rgba(182, 138, 58, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255, 248, 232, 0.98), rgba(239, 224, 197, 0.96));
    border: 1px solid rgba(107, 53, 22, 0.24);
    box-shadow: 0 24px 56px rgba(70, 43, 23, 0.15);
}

.basics-page .basics-highlights-card,
.strategy-page .differentiator-card-featured,
.strategy-page .plan-featured,
.strategy-page .first-time-offer {
    background:
        radial-gradient(circle at top right, rgba(11, 90, 52, 0.17), transparent 32%),
        linear-gradient(145deg, rgba(255, 246, 224, 0.99), rgba(232, 211, 174, 0.97));
    border-color: rgba(182, 138, 58, 0.38);
    box-shadow: 0 28px 66px rgba(70, 43, 23, 0.18);
}

.basics-highlight-item,
.basics-needs-point,
.strategy-page .differentiator-example,
.strategy-page .plans-note,
.strategy-page .faq-item {
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.99), rgba(237, 222, 195, 0.97));
    border: 1px solid rgba(107, 53, 22, 0.22);
    box-shadow: 0 16px 34px rgba(70, 43, 23, 0.10);
}

/* Remove only the outer FAQ wrapper frame on the strategy page */
.strategy-page .faq-group {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
}

.strategy-page .faq-question::before {
    background: rgba(11, 90, 52, 0.12);
    color: #0b5a34;
}

/* Highlight the “وفر وقتك في متابعة الفرص” card with a clearer brand color */
.strategy-page .spotlight-card {
    background:
        radial-gradient(circle at 15% 12%, rgba(223, 194, 138, 0.24), transparent 34%),
        linear-gradient(135deg, #4a240f 0%, #0b5a34 62%, #1f6b43 100%);
    color: #fffaf3;
    border: 1px solid rgba(223, 194, 138, 0.42);
    box-shadow: 0 30px 70px rgba(70, 43, 23, 0.24);
}

.strategy-page .spotlight-card h3,
.strategy-page .spotlight-card p,
.strategy-page .spotlight-card span,
.strategy-page .spotlight-card .price-line span,
.strategy-page .spotlight-card .spotlight-current-price {
    color: #fffaf3;
}

.strategy-page .spotlight-card .spotlight-pill,
.strategy-page .spotlight-stats div {
    background: rgba(255, 250, 243, 0.14);
    border: 1px solid rgba(223, 194, 138, 0.28);
}

.strategy-page .old-price-spotlight {
    color: #ffcf7a;
    text-decoration-color: #ffcf7a;
}

/* Customer opinion cards: clearer, warmer, and consistent with the new design */
.basics-page .testimonial-card,
.strategy-page .testimonial-card {
    background:
        radial-gradient(circle at top left, rgba(182, 138, 58, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255, 248, 232, 0.98), rgba(239, 224, 197, 0.96));
    border: 1px solid rgba(107, 53, 22, 0.24);
    box-shadow: 0 22px 52px rgba(70, 43, 23, 0.14);
}

.basics-page .testimonial-card:nth-child(even),
.strategy-page .testimonial-card:nth-child(even) {
    background:
        radial-gradient(circle at top right, rgba(11, 90, 52, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255, 250, 240, 0.98), rgba(232, 216, 188, 0.96));
    border-color: rgba(11, 90, 52, 0.24);
}

.basics-page .testimonial-card h3,
.strategy-page .testimonial-card h3 {
    color: #4a240f;
}

.basics-page .testimonial-card p,
.strategy-page .testimonial-card p {
    color: #2b1a10;
}

.basics-page .testimonial-stars,
.strategy-page .testimonial-stars {
    background: rgba(182, 138, 58, 0.18);
    border: 1px solid rgba(182, 138, 58, 0.28);
    color: #9a6a1f;
    text-shadow: none;
}

/* v1.61 requested refinement: light gradient homepage service cards */
.portal-service-card,
.portal-service-card.glass-card {
    background:
        radial-gradient(circle at 14% 10%, rgba(223, 194, 138, 0.30), transparent 36%),
        radial-gradient(circle at 86% 16%, rgba(11, 90, 52, 0.10), transparent 34%),
        linear-gradient(145deg, #fffaf3 0%, #f3e4c5 52%, #e7f0e7 100%);
    border: 1px solid rgba(182, 138, 58, 0.24);
    box-shadow: 0 26px 62px rgba(70, 43, 23, 0.14);
}

.portal-service-card:nth-child(2),
.portal-service-card.glass-card:nth-child(2) {
    background:
        radial-gradient(circle at 86% 12%, rgba(223, 194, 138, 0.28), transparent 36%),
        radial-gradient(circle at 14% 18%, rgba(11, 90, 52, 0.12), transparent 34%),
        linear-gradient(145deg, #f6fbf3 0%, #e8f0df 52%, #fff2d5 100%);
}

.portal-service-card::before {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.36), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.portal-service-card:hover {
    box-shadow: 0 34px 78px rgba(70, 43, 23, 0.20);
    border-color: rgba(11, 90, 52, 0.22);
}

.portal-service-number {
    color: rgba(74, 36, 15, 0.34);
}

.portal-service-icon {
    background: rgba(11, 90, 52, 0.10);
    color: #0b5a34;
    box-shadow: inset 0 0 0 1px rgba(11, 90, 52, 0.12);
}

.portal-service-card h3 {
    color: #4a240f;
}

.portal-service-card p {
    color: #5b4634;
}

.portal-service-action {
    color: #fffaf3;
    background: linear-gradient(135deg, #4a240f, #0b5a34);
    border: 1px solid rgba(223, 194, 138, 0.28);
    box-shadow: 0 16px 30px rgba(70, 43, 23, 0.18);
}
