:root {
    --navy: #071a33;
    --navy-2: #0d2748;
    --blue: #1769e0;
    --blue-2: #41a7ff;
    --teal: #13b8a6;
    --gold: #d5a644;
    --ink: #142033;
    --muted: #627086;
    --line: #dce5ef;
    --soft: #f5f8fc;
    --white: #ffffff;
    --danger: #dc3545;
    --radius: 8px;
    --shadow: 0 18px 55px rgba(7, 26, 51, 0.12);
}

* {
    letter-spacing: 0;
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: #0f56bd;
}

.btn {
    border-radius: var(--radius);
    font-weight: 700;
}

.btn-primary {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 10px 25px rgba(23, 105, 224, 0.2);
}

.btn-primary:hover {
    background: #0f56bd;
    border-color: #0f56bd;
}

.btn-outline-primary {
    border-color: rgba(23, 105, 224, 0.35);
    color: var(--blue);
}

.btn-outline-primary:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.navbar {
    backdrop-filter: blur(12px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--navy);
    font-weight: 800;
}

.brand-icon {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 900;
}

.brand-icon.light {
    background: rgba(255, 255, 255, 0.14);
}

.nav-link {
    font-weight: 700;
    color: var(--ink);
}

.hero-section {
    padding: 80px 0 48px;
    background:
        linear-gradient(110deg, rgba(23, 105, 224, 0.08), rgba(19, 184, 166, 0.06) 45%, rgba(213, 166, 68, 0.08)),
        var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--gold);
}

.hero-section h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0.75rem 0 1.25rem;
    color: var(--navy);
    font-size: clamp(2.15rem, 5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 900;
}

.hero-copy,
.page-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-device {
    max-width: 430px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 34px;
    background: #0a1424;
    box-shadow: var(--shadow);
}

.device-top {
    width: 92px;
    height: 6px;
    margin: 0 auto 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.28);
}

.profile-preview {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
}

.profile-preview > img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.preview-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: calc(100% - 32px);
    margin: -44px auto 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(7, 26, 51, 0.12);
}

.preview-card p {
    margin: 0;
    color: var(--muted);
}

.preview-logo {
    display: inline-grid;
    place-items: center;
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    border-radius: 16px;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.preview-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1rem;
}

.preview-actions span {
    display: grid;
    place-items: center;
    min-height: 54px;
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--navy);
    font-weight: 800;
    font-size: 0.86rem;
}

.section-pad {
    padding: 72px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2,
.pricing-band h2,
.cta-panel h2 {
    color: var(--navy);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
}

.benefit-card,
.price-card,
.sample-card,
.form-shell,
.admin-card,
.metric-card,
.expired-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.benefit-card {
    padding: 1.4rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-card h3 {
    margin: 1rem 0 0.5rem;
    color: var(--navy);
    font-size: 1.06rem;
    font-weight: 900;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
}

.benefit-dot {
    display: block;
    width: 38px;
    height: 8px;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
}

.pricing-band {
    padding: 56px 0;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy), var(--navy-2));
}

.pricing-band .eyebrow,
.pricing-band h2,
.pricing-band p {
    color: var(--white);
}

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

.price-card {
    padding: 1.25rem;
}

.price-card span {
    display: block;
    min-height: 48px;
    color: var(--muted);
    font-weight: 700;
}

.price-card strong {
    display: block;
    color: var(--navy);
    font-size: 2.7rem;
    font-weight: 900;
}

.price-card.accent {
    border-color: rgba(19, 184, 166, 0.45);
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--soft);
}

.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.page-hero {
    padding: 72px 0 40px;
    background: linear-gradient(110deg, rgba(23, 105, 224, 0.08), rgba(19, 184, 166, 0.06)), var(--white);
}

.page-hero.compact h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.form-shell {
    max-width: 1060px;
    margin: 0 auto;
    padding: 1.5rem;
    box-shadow: 0 12px 35px rgba(7, 26, 51, 0.08);
}

.form-control,
.form-select {
    min-height: 48px;
    border-color: var(--line);
    border-radius: var(--radius);
}

textarea.form-control {
    min-height: 120px;
}

.form-label {
    color: var(--navy);
    font-weight: 800;
}

.success-panel {
    padding: 2rem;
    text-align: center;
}

.success-panel h2 {
    color: var(--navy);
    font-weight: 900;
}

.sample-card {
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(7, 26, 51, 0.08);
}

.sample-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--soft);
}

.sample-card-body {
    padding: 1.25rem;
}

.sample-card-body span {
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.sample-card-body h2 {
    margin: 0.25rem 0 1rem;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 900;
}

.profile-page {
    background: var(--soft);
    min-height: 80vh;
}

.profile-cover {
    min-height: 340px;
    background-color: var(--navy);
    background-position: center;
    background-size: cover;
}

.profile-container {
    padding-bottom: 64px;
}

.profile-head {
    display: flex;
    align-items: end;
    gap: 1.25rem;
    margin-top: -70px;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.profile-logo {
    width: 126px;
    height: 126px;
    flex: 0 0 auto;
    border: 5px solid var(--white);
    border-radius: 24px;
    object-fit: cover;
    background: var(--white);
    box-shadow: 0 12px 26px rgba(7, 26, 51, 0.13);
}

.text-logo {
    display: grid;
    place-items: center;
    background: var(--blue);
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.profile-category {
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.profile-head h1 {
    margin: 0.2rem 0 0.4rem;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
}

.profile-head p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.profile-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1rem 0;
}

.profile-actions a,
.social-row a {
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--navy);
    font-weight: 900;
    border: 1px solid var(--line);
}

.profile-actions a:first-child {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

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

.profile-grid section,
.profile-section {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.profile-grid h2,
.profile-section h2 {
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 900;
}

.preline {
    white-space: pre-line;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-row a {
    min-width: 120px;
    padding: 0 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.expired-profile {
    display: grid;
    align-items: center;
    min-height: 70vh;
    padding: 64px 0;
    background: var(--soft);
}

.expired-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.expired-box h1 {
    color: var(--navy);
    font-weight: 900;
}

.login-body {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1rem;
    background: linear-gradient(130deg, var(--navy), #102c4d 62%, #0f6b85);
}

.login-card {
    width: min(100%, 430px);
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.login-card h1 {
    color: var(--navy);
    font-size: 1.8rem;
    font-weight: 900;
}

.admin-body {
    background: #f4f7fb;
}

.admin-navbar {
    background: var(--navy);
}

.admin-navbar .nav-link {
    color: rgba(255, 255, 255, 0.72);
}

.admin-navbar .nav-link.active,
.admin-navbar .nav-link:hover {
    color: var(--white);
}

.admin-shell {
    max-width: 1500px;
}

.admin-title {
    margin: 0;
    color: var(--navy);
    font-size: 2rem;
    font-weight: 900;
}

.admin-card,
.metric-card {
    padding: 1.25rem;
    box-shadow: 0 10px 28px rgba(7, 26, 51, 0.06);
}

.metric-card span {
    display: block;
    color: var(--muted);
    font-weight: 800;
}

.metric-card strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--navy);
    font-size: 2.2rem;
    font-weight: 900;
}

.metric-card.danger strong {
    color: var(--danger);
}

.metric-card.warning strong {
    color: #b58105;
}

.admin-table {
    min-width: 980px;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--ink);
}

.request-details {
    max-width: 320px;
    font-size: 0.9rem;
}

.detail-list h2,
.qr-card h2,
.form-section-title {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 900;
}

.qr-card img {
    display: block;
    width: min(100%, 320px);
    margin: 1rem auto;
}

.admin-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.admin-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 56px;
    }

    .profile-preview {
        min-height: 540px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

@media (max-width: 575.98px) {
    .pricing-grid,
    .gallery-grid,
    .admin-gallery {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 48px 0;
    }

    .profile-head {
        display: block;
        text-align: center;
    }

    .profile-logo {
        margin: 0 auto 1rem;
    }

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

    .form-shell,
    .admin-card,
    .login-card {
        padding: 1rem;
    }
}

