:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --indigo: #4f46e5;
    --green: #10b981;
    --red: #e62117;
    --yellow: #ffcc00;
    --ink: #0f172a;
    --muted: #64748b;
    --line: rgba(226, 232, 240, 0.95);
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
    --shadow-sm: 0 12px 26px rgba(15, 23, 42, 0.11);
    --radius-xl: 24px;
    --radius-2xl: 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    background-color: #f5f7fb;
}

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

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.86);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.nav-container,
.mobile-menu-inner {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--blue);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -1px;
    white-space: nowrap;
}

.brand-dot {
    width: 36px;
    height: 36px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #06b6d4);
    box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.12);
}

.brand-dot::before {
    content: "FD";
    font-size: 13px;
    font-weight: 900;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link,
.nav-cta,
.nav-dashboard {
    min-height: 44px;
    padding: 0 17px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.2s ease;
}

.nav-link {
    color: #475569;
}

.nav-link:hover {
    color: var(--indigo);
    background: #eef2ff;
}

.nav-cta,
.nav-dashboard {
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.nav-cta {
    background: var(--indigo);
}

.nav-dashboard {
    background: var(--green);
}

.nav-cta:hover,
.nav-dashboard:hover {
    transform: translateY(-1px);
    filter: brightness(0.96);
}

.mobile-toggle-wrap {
    display: none;
}

.mobile-toggle {
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    background: #f8fafc;
}

.mobile-menu {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-inner {
    padding: 12px 0 18px;
    display: grid;
    gap: 9px;
}

.mobile-menu a {
    min-height: 49px;
    padding: 12px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
}

.mobile-login {
    color: #334155;
    border: 1px solid var(--line);
}

.mobile-register {
    color: #fff;
    background: var(--indigo);
}

.mobile-dashboard {
    color: #047857;
    background: #ecfdf5;
}

/* Main landing-page header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.header-container {
    position: relative;
    width: min(1100px, 92%);
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header .logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--blue);
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), #06b6d4);
    border-radius: 13px;
    box-shadow: 0 7px 18px rgba(37, 99, 235, 0.22);
    font-size: 12px;
    font-weight: 900;
}

.logo-name {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.header .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header .nav-links a {
    min-height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #374151;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header .nav-links a:hover {
    color: var(--blue);
    background: #eff6ff;
}

.header .nav-links .shop-link {
    color: #475569;
}

.header .nav-links .login-link {
    color: var(--blue);
    border-color: var(--blue);
}

.header .nav-links .create-account,
.header .nav-links .dashboard-link {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--indigo));
    box-shadow: 0 7px 16px rgba(37, 99, 235, 0.22);
}

.header .nav-links .create-account:hover,
.header .nav-links .dashboard-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-dark), #4338ca);
    transform: translateY(-1px);
}

.menu-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 11px;
    cursor: pointer;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    display: block;
    background: var(--blue);
    border-radius: 10px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-icon.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#app-content {
    flex: 1;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 64px;
}

.shop-entry-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-bottom: 18px;
    padding: clamp(22px, 4vw, 34px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    color: #fff;
    background: linear-gradient(135deg, #312e81 0%, #2563eb 56%, #0891b2 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.shop-entry-card::before,
.shop-entry-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shop-entry-card::before {
    width: 230px;
    height: 230px;
    top: -140px;
    right: 18%;
}

.shop-entry-card::after {
    width: 150px;
    height: 150px;
    right: -65px;
    bottom: -80px;
}

.shop-entry-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: var(--indigo);
    background: #fff;
    border-radius: 23px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
}

.shop-entry-icon .icon {
    width: 31px;
    height: 31px;
}

.shop-entry-kicker {
    display: block;
    margin-bottom: 6px;
    color: #bfdbfe;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.shop-entry-copy h1 {
    max-width: 670px;
    margin: 0;
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.shop-entry-copy p {
    max-width: 680px;
    margin: 9px 0 0;
    color: #dbeafe;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 700;
}

.shop-network-list {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.shop-network {
    min-height: 27px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.shop-network-mtn {
    color: #0f172a;
    background: #ffcc00;
}

.shop-network-telecel {
    color: #fff;
    background: #ef4444;
}

.shop-network-at {
    color: #1e3a8a;
    background: #dbeafe;
}

.shop-entry-button {
    min-height: 58px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    color: var(--indigo);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-entry-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.28);
}

.account-guide {
    width: 100%;
    margin: 0 auto 20px;
    padding: 20px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
}

.account-guide-icon {
    width: 62px;
    height: 62px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--red), #f97316);
    box-shadow: 0 14px 28px rgba(230, 33, 23, 0.24);
}

.account-guide-icon .icon {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.account-guide-copy span {
    display: block;
    margin-bottom: 4px;
    color: var(--indigo);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.account-guide-copy h2 {
    margin: 0;
    font-size: clamp(19px, 3vw, 25px);
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.account-guide-copy p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    font-weight: 700;
}

.account-guide-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-watch-btn,
.guide-register-btn {
    min-height: 48px;
    padding: 0 17px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 900;
    transition: 0.18s ease;
}

.guide-watch-btn {
    border: 0;
    color: #fff;
    background: var(--red);
    box-shadow: 0 11px 22px rgba(230, 33, 23, 0.2);
}

.guide-register-btn {
    color: var(--indigo);
    border: 1px solid #c7d2fe;
    background: #eef2ff;
}

.guide-watch-btn:hover,
.guide-register-btn:hover {
    transform: translateY(-2px);
}

.quick-actions {
    width: min(840px, 100%);
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.action-btn {
    min-height: 62px;
    padding: 0 18px;
    border: 0;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    transition: 0.18s ease;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.action-primary {
    background: var(--blue);
}

.action-green,
.action-success {
    background: var(--green);
}

.action-red {
    background: var(--red);
}

.action-wide {
    grid-column: 1 / -1;
}

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

.step-card {
    padding: 18px;
    border-radius: 24px;
    display: grid;
    gap: 5px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.step-card b {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--indigo);
    background: #eef2ff;
}

.step-card span {
    font-size: 15px;
    font-weight: 900;
}

.step-card small {
    color: var(--muted);
    font-weight: 700;
    line-height: 1.55;
}

.why-us-section {
    margin-top: 30px;
}

.why-us-heading {
    max-width: 620px;
    margin: 0 auto 18px;
    text-align: center;
}

.why-us-heading > span {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.why-us-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.why-us-heading p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
}

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

.why-us-card {
    --why-accent: var(--blue);
    --why-soft: #eff6ff;
    position: relative;
    overflow: hidden;
    min-height: 190px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.why-us-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--why-accent);
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.why-us-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--why-accent);
    background: var(--why-soft);
    border-radius: 15px;
}

.why-us-icon .icon {
    width: 23px;
    height: 23px;
}

.why-us-card h3 {
    margin: 16px 0 7px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 900;
}

.why-us-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 650;
}

.why-us-green {
    --why-accent: #059669;
    --why-soft: #ecfdf5;
}

.why-us-indigo {
    --why-accent: var(--indigo);
    --why-soft: #eef2ff;
}

.why-us-orange {
    --why-accent: #ea580c;
    --why-soft: #fff7ed;
}

.loved-section {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    padding: clamp(22px, 4vw, 32px);
    display: grid;
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.45fr);
    align-items: center;
    gap: 24px;
    color: #fff;
    background: #1f3554;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.loved-section::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -110px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.22);
    pointer-events: none;
}

.loved-summary {
    position: relative;
    z-index: 1;
}

.loved-kicker {
    display: block;
    margin-bottom: 12px;
    color: #93c5fd;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.loved-heart {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    display: grid;
    place-items: center;
    color: #e11d48;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(2, 6, 23, 0.22);
}

.loved-heart .icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.loved-summary h2 {
    margin: 0;
    font-size: clamp(27px, 4vw, 39px);
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.loved-summary > p {
    margin: 11px 0 0;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 650;
}

.loved-tags {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.loved-tags span {
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
}

.loved-tags .icon {
    width: 14px;
    height: 14px;
}

.loved-highlights {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.loved-card {
    min-height: 190px;
    padding: 19px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.18s ease, background 0.18s ease;
}

.loved-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.13);
}

.loved-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #1d4ed8;
    background: #dbeafe;
    border-radius: 14px;
}

.loved-card-icon .icon {
    width: 21px;
    height: 21px;
}

.loved-card h3 {
    margin: 15px 0 7px;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 900;
}

.loved-card p {
    margin: 0;
    color: #cbd5e1;
    font-size: 11px;
    line-height: 1.65;
    font-weight: 650;
}

.contact-section {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    padding: 22px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border: 1px solid #bbf7d0;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.contact-section::after {
    content: "";
    position: absolute;
    right: 16%;
    bottom: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    pointer-events: none;
}

.contact-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #16a34a;
    border-radius: 20px;
    box-shadow: 0 13px 26px rgba(22, 163, 74, 0.24);
}

.contact-icon .icon {
    width: 28px;
    height: 28px;
}

.contact-copy {
    position: relative;
    z-index: 1;
}

.contact-kicker {
    display: block;
    margin-bottom: 4px;
    color: #15803d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(20px, 3vw, 27px);
    line-height: 1.18;
    letter-spacing: -0.6px;
}

.contact-copy p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 700;
}

.contact-status {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #166534;
    font-size: 10px;
    font-weight: 900;
}

.contact-status i {
    width: 8px;
    height: 8px;
    display: block;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.13);
}

.contact-button {
    position: relative;
    z-index: 1;
    min-height: 54px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: #16a34a;
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.23);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.18s ease, background 0.18s ease;
}

.contact-button:hover {
    color: #fff;
    background: #15803d;
    transform: translateY(-2px);
}

.section-head {
    max-width: 650px;
    margin: 0 auto 20px;
    text-align: center;
    color: #fff;
}

.section-head span {
    display: inline-block;
    margin-bottom: 8px;
    color: #dbeafe;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-head h1 {
    margin: 0 0 6px;
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1;
    letter-spacing: -1.6px;
}

.section-head p {
    margin: 0;
    color: #dbeafe;
    font-size: 14px;
    font-weight: 800;
}

.network-tabs {
    width: 100%;
    margin: 0 auto 26px;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    flex-wrap: wrap;
}

.net-filter-btn {
    min-height: 45px;
    padding: 0 20px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #475569;
    background: #fff;
    font-size: 14px;
    font-weight: 900;
    transition: 0.18s ease;
}

.net-filter-btn:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.net-filter-btn.is-active {
    color: #fff;
    border-color: transparent;
    background: var(--indigo);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.25);
}

.network-grid.is-hidden {
    display: none;
}

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

.plan-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 318px;
    padding: 32px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow);
    transition: 0.2s ease;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: -70px -80px auto auto;
    z-index: -1;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.card-mtn {
    color: #0f172a;
    background: linear-gradient(145deg, #ffdc35, var(--yellow));
}

.card-telecel {
    color: #fff;
    background: linear-gradient(145deg, #ef4444, var(--red));
}

.card-at {
    color: #fff;
    background: linear-gradient(145deg, #2563eb, #1e40af);
}

.card-at-dark {
    color: #fff;
    background: linear-gradient(145deg, #1d4ed8, #1e3a8a);
}

.card-default {
    color: #fff;
    background: linear-gradient(145deg, #334155, #0f172a);
}

.provider-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    min-height: 25px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.13);
}

.badge-blue {
    background: rgba(37, 99, 235, 0.96);
}

.badge-green {
    background: rgba(16, 185, 129, 0.96);
}

.plan-topline {
    margin-top: 2px;
    opacity: 0.72;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.plan-title {
    margin: 18px 0 10px;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1.4px;
}

.plan-desc {
    margin: 0 0 20px;
    opacity: 0.82;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
}

.plan-price-wrap {
    margin: 0 0 22px;
}

.plan-price-wrap span {
    display: block;
    opacity: 0.72;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plan-price-wrap strong {
    display: block;
    margin-top: 4px;
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.buy-button {
    width: 100%;
    min-height: 55px;
    border: 0;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: currentColor;
    background: rgba(255, 255, 255, 0.24);
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    transition: 0.16s ease;
}

.card-mtn .buy-button {
    background: rgba(15, 23, 42, 0.12);
}

.buy-button:hover {
    background: rgba(255, 255, 255, 0.33);
    transform: translateY(-1px);
}

.empty-card {
    grid-column: 1 / -1;
    padding: 26px;
    text-align: center;
    border-radius: var(--radius-xl);
    color: #dbeafe;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-weight: 800;
}

.site-footer {
    margin-top: auto;
    padding: 28px 16px;
    text-align: center;
    color: #dbeafe;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #1f3554;
}

.site-footer p {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    opacity: 0.82;
}

.icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.fade-in {
    animation: fade-in 0.42s ease-out both;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.video-modal-open {
    overflow: hidden;
}

.account-video-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    min-height: 58px;
    padding: 8px 18px 8px 9px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), #f97316);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(185, 28, 28, 0.35);
    font-size: 13px;
    font-weight: 900;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.account-video-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(185, 28, 28, 0.43);
}

.account-video-fab:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.8);
    outline-offset: 3px;
}

.account-video-fab-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--red);
    background: #fff;
    border-radius: 50%;
}

.account-video-fab-icon .icon {
    width: 20px;
    height: 20px;
    margin-left: 2px;
    fill: currentColor;
}

.account-video-fab-label {
    white-space: nowrap;
}

.account-video-modal[hidden] {
    display: none !important;
}

.account-video-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    padding: 18px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.account-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.account-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(8px);
}

.account-video-dialog {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 28px;
    box-shadow: 0 35px 100px rgba(2, 6, 23, 0.46);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.2s ease;
}

.account-video-modal.is-open .account-video-dialog {
    transform: translateY(0) scale(1);
}

.account-video-head {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.account-video-head span {
    display: block;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.account-video-head h2 {
    margin: 3px 0 0;
    font-size: clamp(18px, 4vw, 25px);
    line-height: 1.15;
}

.account-video-close {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #475569;
    background: #f8fafc;
}

.account-video-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.account-video-player iframe,
.account-video-player video {
    display: none;
    width: 100%;
    height: 100%;
    border: 0;
    background: #020617;
}

.account-video-player iframe.is-active,
.account-video-player video.is-active {
    display: block;
}

.account-video-footer {
    padding: 15px 20px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.account-video-footer a {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    background: var(--indigo);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.sw-popup {
    border: 1px solid #e2e8f0 !important;
    border-radius: 30px !important;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22) !important;
    font-family: "Plus Jakarta Sans", Arial, sans-serif !important;
}

.sw-title {
    margin: 0;
    color: #0f172a;
    font-weight: 900;
}

.sw-text {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 700;
}

.sw-package-box {
    margin: 0 0 16px;
    padding: 16px;
    text-align: left;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 22px;
}

.sw-package-label,
.sw-package-name {
    display: block;
    color: #1e40af;
    font-size: 13px;
    font-weight: 900;
}

.sw-package-label {
    margin-bottom: 6px;
}

.sw-package-name {
    color: #2563eb;
    font-size: 14px;
}

.sw-note {
    margin: 0;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.sw-confirm,
.sw-cancel {
    padding: 12px 22px !important;
    border-radius: 15px !important;
    font-weight: 900 !important;
}

@media (max-width: 980px) {
    .loved-section {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .header-container {
        width: 92%;
        min-height: 68px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .logo-name {
        font-size: 20px;
    }

    .menu-icon {
        display: flex;
    }

    .header .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        width: 100%;
        padding: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.17);
    }

    .header .nav-links.active {
        display: flex;
        animation: mobile-menu-in 0.2s ease both;
    }

    .header .nav-links a {
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        text-align: center;
    }

    @keyframes mobile-menu-in {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-actions {
        display: none;
    }

    .mobile-toggle-wrap {
        display: flex;
        align-items: center;
    }

    .nav-row {
        height: 66px;
    }

    .brand {
        font-size: 21px;
    }

    .brand-dot {
        width: 32px;
        height: 32px;
        border-radius: 13px;
    }

    #app-content {
        width: min(100% - 24px, 1160px);
        padding-top: 22px;
        padding-bottom: 52px;
    }

    .shop-entry-card {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 16px;
        padding: 21px;
        border-radius: 26px;
    }

    .shop-entry-icon {
        width: 58px;
        height: 58px;
        border-radius: 19px;
    }

    .shop-entry-icon .icon {
        width: 26px;
        height: 26px;
    }

    .shop-entry-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .steps-section {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 82vw);
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .steps-section::-webkit-scrollbar {
        display: none;
    }

    .step-card {
        scroll-snap-align: start;
    }

    .why-us-heading {
        margin-bottom: 15px;
        text-align: left;
    }

    .why-us-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(235px, 82vw);
        overflow-x: auto;
        padding: 2px 0 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .why-us-grid::-webkit-scrollbar {
        display: none;
    }

    .why-us-card {
        min-height: 182px;
        scroll-snap-align: start;
    }

    .loved-section {
        gap: 20px;
        border-radius: 25px;
    }

    .loved-highlights {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(225px, 78vw);
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .loved-highlights::-webkit-scrollbar {
        display: none;
    }

    .loved-card {
        min-height: 178px;
        scroll-snap-align: start;
    }

    .contact-section {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
        padding: 18px;
    }

    .contact-icon {
        width: 54px;
        height: 54px;
        border-radius: 17px;
    }

    .contact-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .account-guide {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 14px;
        padding: 17px;
    }

    .account-guide-icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .account-guide-actions {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .network-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .network-tabs::-webkit-scrollbar {
        display: none;
    }

    .net-filter-btn {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    .account-video-fab {
        right: 14px;
        bottom: 16px;
        width: 58px;
        min-height: 58px;
        padding: 8px;
        justify-content: center;
    }

    .account-video-fab-icon {
        width: 42px;
        height: 42px;
    }

    .account-video-fab-label {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .plan-card {
        min-height: 286px;
        padding: 30px 20px 22px;
    }

    .plan-title {
        font-size: 31px;
    }

    .plan-price-wrap strong {
        font-size: 29px;
    }

    .account-video-modal {
        padding: 10px;
    }

    .account-video-dialog {
        border-radius: 22px;
    }

    .account-video-head {
        padding: 15px;
    }

    .account-video-footer {
        padding: 13px 15px 15px;
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .brand {
        font-size: 20px;
    }

    .account-guide-actions {
        grid-template-columns: 1fr;
    }
}
