* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --bg-soft: #111111;
    --bg2: #121212;
    --panel: #141414;
    --panel2: #1a1a1a;
    --line: rgba(255, 207, 13, 0.14);
    --text: #f7f7f5;
    --muted: #b0b0a8;
    --accent: #ffcf0d;
    --accent-dim: rgba(255, 207, 13, 0.16);
    --white: #ffffff;
    --black: #0a0a0a;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a.text-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

img {
    max-width: 100%;
}

.container {
    width: min(1680px, 92%);
    margin: 0 auto;
}

.container-narrow {
    width: min(860px, 92%);
    margin: 0 auto;
}

/* ——— Nav ——— */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 64px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.98rem;
    min-height: 50px;
}

.logo-box {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 207, 13, 0.35);
    border-radius: 12px;
    background: linear-gradient(135deg, #141414, #1d1d1d);
    display: grid;
    place-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-box-placeholder {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--accent);
}

.brand-name {
    max-width: none;
    line-height: 1.15;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
}

.brand-name-short {
    display: none;
    color: var(--accent);
    letter-spacing: 0.08em;
    font-weight: 800;
}

.site-logo {
    max-height: 56px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.socials a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--bg-soft);
    color: var(--text);
    transition: 0.25s ease;
}

.socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 207, 13, 0.45);
    background: #161616;
    color: var(--accent);
}

/* ——— Homepage hero ——— */
.hero-home {
    position: relative;
    min-height: auto;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 207, 13, 0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 207, 13, 0.06), transparent 34%),
        linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding-bottom: 28px;
}

.hero-home-inner {
    padding: 28px 0 18px;
}

.hero-copy--centered {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.hero-copy--centered .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.hero-copy--centered > p {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.cta-row--centered {
    justify-content: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: start;
    padding: 12px 0 40px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 207, 13, 0.28);
    border-radius: 999px;
    color: var(--accent);
    background: var(--accent-dim);
    font-size: 0.86rem;
    margin-bottom: 16px;
}

.hero-home h1 {
    font-size: clamp(2.4rem, 4.6vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-home > .container.hero-grid > .hero-copy > p,
.hero-copy--centered > p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 600;
    transition: 0.25s ease;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-secondary {
    background: rgba(255, 207, 13, 0.06);
    color: var(--text);
    border-color: rgba(255, 207, 13, 0.28);
}

.btn-secondary:hover {
    background: rgba(255, 207, 13, 0.12);
    transform: translateY(-2px);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #d4d4d8;
    font-size: 0.92rem;
}

.hero-points i {
    color: var(--accent);
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-card {
    border: 1px solid rgba(255, 207, 13, 0.22);
    background: linear-gradient(180deg, rgba(255, 207, 13, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 28px;
    padding: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.showreel {
    aspect-ratio: 9 / 16;
    max-height: min(72vh, 720px);
    width: min(100%, calc(min(72vh, 720px) * 9 / 16));
    margin-inline: auto;
    border-radius: 22px;
    border: 1px solid rgba(255, 207, 13, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 207, 13, 0.08), rgba(10, 10, 10, 0.85)),
        #141414;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.showreel--video {
    padding: 0;
    align-items: stretch;
}

.showreel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showreel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

.showreel--video::before {
    display: none;
}

.showreel-content {
    position: relative;
    z-index: 2;
}

.showreel-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 207, 13, 0.9);
    color: #0a0a0a;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.showreel h3 {
    font-size: 1.55rem;
    margin-bottom: 8px;
}

.showreel p {
    font-size: 0.95rem;
    margin: 0;
    color: #e4e4e7;
}

.portfolio-placeholder {
    display: grid;
    place-items: center;
    min-height: 220px;
    background: linear-gradient(145deg, #151515, #0a0a0a);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.12em;
    font-size: 1.4rem;
}

/* ——— Inner page hero ——— */
.page-hero {
    padding: 90px 0 70px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 30%),
        linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--accent);
}

.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ——— Sections ——— */
.section {
    padding: 90px 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 90px;
}

.section--page-top {
    border-top: none;
    padding-top: 48px;
}

.contact-direct {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.contact-direct span {
    display: inline-block;
    margin-right: 1.5rem;
    margin-bottom: 6px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 34px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--accent);
}

.section-title p {
    color: var(--muted);
    max-width: 620px;
    font-size: 0.98rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card,
.portfolio-card,
.gallery-card,
.contact-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.service-card {
    padding: 28px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.service-card .service-cta {
    margin-top: auto;
    align-self: flex-start;
}

.service-price {
    margin: 18px 0 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 207, 13, 0.18);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-price strong {
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.service-price span {
    color: var(--muted);
    font-size: 0.88rem;
}

.services-grid--priced {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.services-home-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 207, 13, 0.2);
}

.services-home-list__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-home-list__name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--text);
}

.services-home-list__name i {
    color: var(--accent);
    width: 1.1em;
    text-align: center;
}

.services-home-list__price {
    text-align: right;
    flex: 0 0 auto;
}

.services-home-list__price strong {
    display: block;
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 800;
}

.services-home-list__price span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.82rem;
}

.section-cta-row {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.services-package-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 207, 13, 0.22);
}

.service-list-item {
    padding: 28px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list-item--featured {
    background: linear-gradient(90deg, rgba(255, 207, 13, 0.06), transparent 70%);
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
    border-bottom-color: rgba(255, 207, 13, 0.22);
}

.service-list-item__top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.service-list-item__label {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-list-item__label i {
    font-size: 0.95rem;
}

.service-list-item__popular {
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 0.68rem;
    letter-spacing: 0.03em;
}

.service-list-item__main h2 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.service-list-item__main p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    max-width: 52ch;
}

.service-list-item__price {
    flex: 0 0 auto;
    text-align: right;
    min-width: 7.5rem;
}

.service-list-item__price strong {
    display: block;
    color: var(--accent);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.service-list-item__price span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.84rem;
}

.service-list-item__includes {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.service-list-item__includes li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-list-item__includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--accent);
}

.service-list-item__actions {
    margin-top: 18px;
}

.section-empty {
    color: var(--muted);
}

.audience-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.audience-card,
.process-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: var(--accent);
    color: #0a0a0a;
    font-weight: 800;
    font-size: 0.95rem;
}

.audience-card h3,
.process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.audience-card p,
.process-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 207, 13, 0.28);
    background: rgba(255, 207, 13, 0.1);
    color: var(--accent);
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.96rem;
}

/* ——— Outwork-style reel carousel ——— */
.reel-band {
    margin-top: 10px;
}

.reel-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.reel-track {
    display: block;
    overflow: hidden;
    padding: 6px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reel-track::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
}

.reel-strip {
    display: flex;
    gap: 14px;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
}

.reel-card {
    flex: 0 0 auto;
    width: clamp(150px, 16vw, 210px);
    scroll-snap-align: start;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 207, 13, 0.18);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.reel-card video,
.reel-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #0d0d0d;
}

.reel-placeholder {
    aspect-ratio: 9 / 16;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.1em;
    background: linear-gradient(145deg, #151515, #0a0a0a);
}

.reel-caption {
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reel-caption strong {
    display: block;
    font-size: 0.86rem;
    line-height: 1.3;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-nav {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 207, 13, 0.35);
    background: rgba(10, 10, 10, 0.85);
    color: var(--accent);
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: 0.2s ease;
}

.reel-nav:hover {
    background: var(--accent);
    color: #0a0a0a;
}

.reel-carousel--services .reel-card,
.service-slide {
    width: clamp(260px, 30vw, 340px);
    height: auto;
    min-height: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--panel);
}

.reel-carousel--services .reel-card video,
.reel-carousel--services .reel-card img {
    display: none;
}

.reel-carousel--services .service-price {
    margin-top: auto;
}

.reel-carousel--services .service-cta {
    margin-top: 8px;
}

@media (max-width: 700px) {
    .reel-card {
        width: clamp(140px, 42vw, 180px);
    }

    .reel-carousel--services .reel-card,
    .service-slide {
        width: min(84vw, 320px);
    }

    .reel-nav {
        display: none;
    }

    .reel-carousel {
        grid-template-columns: 1fr;
    }
}

.portfolio-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 280px));
    justify-content: start;
    gap: 22px;
}

.portfolio-card img,
.portfolio-card video,
.gallery-card img,
.gallery-card video {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #111;
}

.portfolio-content {
    padding: 22px;
}

.portfolio-content h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.portfolio-content p {
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-box {
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.contact-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-box p {
    color: var(--muted);
    max-width: 700px;
}

/* ——— Legacy / shared cards (admin, contact form) ——— */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
}

.media-card img,
.media-card video,
.portfolio-thumb {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.portfolio-thumb,
.media-card img,
.media-card video {
    height: 260px;
}

.btn-dark {
    display: inline-block;
    background: var(--panel2);
    color: var(--text);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.form-control,
.form-select,
.form-textarea {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid var(--line);
    color: var(--text);
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-family: inherit;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* ——— Footer ——— */
.footer {
    padding: 28px 0 36px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    background: #040404;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contact {
    margin-top: 8px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.notice-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #b9f7c8;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.notice-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ffb4b4;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 16px;
}

/* ——— Admin (compact pill buttons) ——— */
.admin-main .btn,
.login-wrap .card .btn {
    display: inline-block;
    background: var(--accent);
    color: #0a0a0a;
    padding: 12px 20px;
    border-radius: 999px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.login-wrap .card .btn-login {
    display: inline-flex;
    width: 100%;
    margin-top: 4px;
    background: var(--accent);
    color: var(--black);
    border: 0;
    box-shadow: 0 10px 24px rgba(255, 207, 13, 0.28);
}

.login-wrap .card .btn-login:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.login-wrap .card .btn-install-app {
    display: flex;
    background: linear-gradient(145deg, #ffcf0d 0%, #e6b800 100%);
    color: #0a0a0a;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-body {
    min-height: 100dvh;
    background: var(--bg);
}

.admin-shell {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100dvh;
}

.admin-sidebar {
    background: #090909;
    border-right: 1px solid var(--line);
    padding: 24px;
    padding-top: max(24px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-sidebar a {
    padding: 12px 14px;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.admin-sidebar a i {
    width: 1.1em;
    text-align: center;
    opacity: 0.85;
}

.admin-sidebar a:hover {
    background: var(--panel);
    color: var(--text);
}

.admin-brand {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--accent);
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.admin-brand-short {
    display: inline-block;
    margin-right: 6px;
    padding: 2px 8px;
    border-radius: 8px;
    background: var(--accent);
    color: #0a0a0a;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
}

.admin-main {
    padding: 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
}

.admin-topbar {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-topbar h1 {
    font-size: 1.45rem;
    line-height: 1.2;
}

.admin-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--text);
    cursor: pointer;
    flex-shrink: 0;
}

.pwa-install-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--panel);
    color: var(--muted);
    font-size: 0.95rem;
}

.pwa-install-bar[hidden] {
    display: none !important;
}

.pwa-install-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.login-wrap {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    background:
        radial-gradient(ellipse 80% 55% at 50% -10%, rgba(255, 207, 13, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 207, 13, 0.08), transparent 50%),
        #0a0a0a;
}

.login-card {
    width: min(460px, 100%);
    text-align: center;
    border: 1px solid rgba(255, 207, 13, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 207, 13, 0.06), rgba(255, 255, 255, 0.02)),
        #121212;
    box-shadow:
        0 0 0 1px rgba(255, 207, 13, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.45);
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
}

.login-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: #0a0a0a;
    font-size: 1.55rem;
    background: var(--accent);
    box-shadow: 0 12px 28px rgba(255, 207, 13, 0.35);
}

.login-header h1 {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
}

.login-subtitle {
    margin-top: 8px;
    color: #d6c57a;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.login-form {
    text-align: left;
}

.login-form .form-control {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.28);
}

.login-form .form-control:focus {
    outline: none;
    border-color: rgba(255, 207, 13, 0.65);
    box-shadow: 0 0 0 3px rgba(255, 207, 13, 0.18);
}

.login-hint {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.9rem;
}

.login-install {
    margin-bottom: 22px;
    text-align: center;
}

.btn-install-app {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 22px 20px !important;
    min-height: 110px;
    border-radius: 18px !important;
    font-size: 1.15rem;
    line-height: 1.25;
    text-align: center;
    background: var(--accent) !important;
    color: #0a0a0a !important;
    border: 0 !important;
    box-shadow: 0 12px 28px rgba(255, 207, 13, 0.35);
}

.btn-install-app i {
    font-size: 1.65rem;
    margin-bottom: 2px;
}

.btn-install-label {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.btn-install-sub {
    font-weight: 500;
    font-size: 0.88rem;
    color: rgba(10, 10, 10, 0.72);
    text-transform: none;
    letter-spacing: 0;
}

.login-install-ios {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 207, 13, 0.28);
    background: rgba(255, 207, 13, 0.08);
    color: #f5e7a1;
    font-size: 0.92rem;
    line-height: 1.45;
    text-align: left;
}

.upload-hint {
    display: block;
    margin: -6px 0 14px;
    color: var(--muted);
    font-size: 0.88rem;
}

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inline-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.full-span {
    grid-column: 1 / -1;
}

.settings-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.settings-nav__btn {
    appearance: none;
    border: 1px solid var(--line);
    background: rgba(255, 207, 13, 0.04);
    color: var(--muted);
    border-radius: 999px;
    padding: 9px 14px;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.settings-nav__btn:hover {
    color: var(--text);
    border-color: rgba(255, 207, 13, 0.35);
}

.settings-nav__btn.is-active {
    background: var(--accent);
    color: #0a0a0a;
    border-color: transparent;
}

.settings-panel {
    display: none;
}

.settings-panel.is-active {
    display: block;
}

.settings-panel__title {
    font-size: 1.2rem;
    margin: 0 0 16px;
    color: var(--accent);
}

.settings-panel__subtitle {
    font-size: 1rem;
    margin: 8px 0 4px;
    color: var(--text);
}

.settings-form > .settings-panel > .inline-form {
    margin: 0;
}

.settings-save {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.small-preview {
    max-width: 130px;
    border-radius: 12px;
    display: block;
}

@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .hero-home {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-grid,
    .services-grid,
    .portfolio-grid,
    .gallery-grid,
    .contact-box,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .service-list-item__top,
    .services-home-list__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .service-list-item__price,
    .services-home-list__price {
        text-align: left;
    }

    .service-list-item--featured {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    /* Showreel / visual first on phones and tablets */
    .hero-grid {
        padding: 12px 0 40px;
        gap: 24px;
    }

    .hero-grid > .hero-card {
        order: 1;
    }

    .hero-grid > .hero-copy {
        order: 2;
    }

    .showreel {
        aspect-ratio: 9 / 16;
        width: min(100%, 360px);
        max-height: none;
    }
}

@media (max-width: 700px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .grid-3,
    .grid-4,
    .inline-form {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .admin-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        width: min(280px, 86vw);
        z-index: 1200;
        border-right: 1px solid var(--line);
        transform: translateX(-105%);
        transition: transform 0.22s ease;
        box-shadow: 16px 0 40px rgba(0, 0, 0, 0.45);
    }

    .admin-shell.nav-open .admin-sidebar {
        transform: translateX(0);
    }

    .admin-shell.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1100;
    }

    .admin-main {
        padding: 18px 16px 28px;
    }

    .admin-topbar {
        position: sticky;
        top: 0;
        z-index: 50;
        margin: -18px -16px 18px;
        padding: 14px 16px;
        padding-top: max(14px, env(safe-area-inset-top));
        background: rgba(5, 5, 5, 0.94);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 820px) {
    .nav-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0;
    }

    .nav-links {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        width: 100%;
        justify-content: center;
    }

    .brand-name {
        display: none;
    }

    .brand-name-short {
        display: inline;
    }

    .section-title {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .hero-home h1 {
        font-size: 2.5rem;
    }

    .cta-row,
    .hero-points {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-card img,
    .portfolio-card video,
    .gallery-card img,
    .gallery-card video {
        aspect-ratio: 9 / 16;
        height: auto;
    }

    .contact-box {
        padding: 24px;
    }
}

/* ——— Web Design page ——— */
.page-web-design {
    --web-teal: #2ec4b6;
    --web-copper: #d4894a;
}

.web-hero {
    position: relative;
    min-height: min(72vh, 680px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 207, 13, 0.12);
    background: #050505;
}

.web-hero__art {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.web-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.75;
    animation: webGlowDrift 14s ease-in-out infinite alternate;
}

.web-hero__glow--gold {
    width: min(55vw, 560px);
    height: min(55vw, 560px);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 207, 13, 0.55), transparent 68%);
}

.web-hero__glow--copper {
    width: min(48vw, 480px);
    height: min(48vw, 480px);
    bottom: -18%;
    left: -10%;
    background: radial-gradient(circle, rgba(212, 137, 74, 0.45), transparent 70%);
    animation-delay: -4s;
}

.web-hero__glow--teal {
    width: min(36vw, 360px);
    height: min(36vw, 360px);
    top: 28%;
    left: 38%;
    background: radial-gradient(circle, rgba(46, 196, 182, 0.28), transparent 70%);
    animation-delay: -7s;
}

.web-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 20%, transparent 75%);
    opacity: 0.7;
}

.web-hero__orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
}

.web-hero__orb--1 {
    width: 160px;
    height: 160px;
    top: 16%;
    right: 12%;
    background: linear-gradient(145deg, rgba(255, 207, 13, 0.22), transparent 60%);
    animation: webOrbFloat 9s ease-in-out infinite;
}

.web-hero__orb--2 {
    width: 96px;
    height: 96px;
    bottom: 22%;
    left: 10%;
    background: linear-gradient(145deg, rgba(46, 196, 182, 0.2), transparent 65%);
    animation: webOrbFloat 11s ease-in-out infinite reverse;
}

.web-hero__frame {
    position: absolute;
    inset: 28px clamp(16px, 4vw, 40px);
    border: 1px solid rgba(255, 207, 13, 0.12);
    border-radius: 28px;
    box-shadow: inset 0 0 80px rgba(255, 207, 13, 0.03);
}

.web-hero__frame::before,
.web-hero__frame::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
}

.web-hero__frame::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    border-top-left-radius: 28px;
}

.web-hero__frame::after {
    right: -1px;
    bottom: -1px;
    border-right: 2px solid var(--web-teal);
    border-bottom: 2px solid var(--web-teal);
    border-bottom-right-radius: 28px;
}

.web-hero__slash {
    position: absolute;
    width: 140%;
    height: 1px;
    left: -20%;
    top: 62%;
    background: linear-gradient(90deg, transparent, rgba(255, 207, 13, 0.55), rgba(46, 196, 182, 0.45), transparent);
    transform: rotate(-7deg);
    animation: webSlashPulse 5s ease-in-out infinite;
}

.web-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.web-hero__inner {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
    width: min(1680px, 92%);
    margin-left: auto;
    margin-right: auto;
}

.web-hero__copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.web-hero__brand {
    font-family: 'Syne', Inter, sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    animation: webHeroIn 0.8s ease both;
}

.web-hero__title {
    font-family: 'Syne', Inter, sans-serif;
    font-size: clamp(1.7rem, 3.6vw, 3.1rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #fff;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 18px;
    text-align: center;
    animation: webHeroIn 0.9s ease both;
    animation-delay: 0.08s;
}

.web-hero__title em {
    font-style: normal;
    background: linear-gradient(120deg, #ffcf0d 10%, #ffe98a 42%, #2ec4b6 95%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.web-hero__lead {
    max-width: 540px;
    margin: 0 auto 30px;
    color: rgba(247, 247, 245, 0.74);
    font-size: 1.08rem;
    line-height: 1.6;
    animation: webHeroIn 1s ease both;
    animation-delay: 0.16s;
}

.web-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    animation: webHeroIn 1.05s ease both;
    animation-delay: 0.22s;
}

.web-hero__spectrum {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr 0.7fr;
    height: 8px;
}

.web-hero__band--bronze { background: linear-gradient(90deg, #6b3f1c, #c4894a); }
.web-hero__band--silver { background: linear-gradient(90deg, #8e99a8, #eef1f5); }
.web-hero__band--gold { background: linear-gradient(90deg, #c9a000, #ffcf0d); }
.web-hero__band--teal { background: linear-gradient(90deg, #1a8f85, #2ec4b6); }

@keyframes webGlowDrift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(3%, -4%, 0) scale(1.08); }
}

@keyframes webOrbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes webSlashPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.9; }
}

@keyframes webHeroIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.web-packages {
    padding-top: 64px;
    background:
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(46, 196, 182, 0.06), transparent 55%),
        radial-gradient(ellipse 40% 35% at 0% 20%, rgba(255, 207, 13, 0.05), transparent 50%),
        var(--bg);
}

.web-section-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.web-section-intro h2 {
    font-family: 'Syne', Inter, sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.04em;
    color: var(--accent);
    margin-bottom: 12px;
}

.web-section-intro p {
    color: var(--muted);
    font-size: 1.02rem;
}

.web-custom-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 24px 28px;
    margin-bottom: 34px;
    border-radius: 22px;
    border: 1px solid rgba(46, 196, 182, 0.28);
    background:
        linear-gradient(115deg, rgba(46, 196, 182, 0.14), transparent 40%),
        linear-gradient(180deg, #151515, #101010);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.web-custom-banner:hover {
    border-color: rgba(255, 207, 13, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.web-custom-banner__label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #041512;
    background: linear-gradient(120deg, #2ec4b6, #7dfff0);
    padding: 8px 12px;
    border-radius: 999px;
}

.web-custom-banner__copy strong {
    display: block;
    font-family: 'Syne', Inter, sans-serif;
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--text);
}

.web-custom-banner__copy span {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.web-custom-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.web-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.web-package {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 26px 24px;
    border-radius: 26px;
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    animation: webPackageIn 0.7s ease both;
    color: #1a120a;
}

.web-package:nth-child(2) { animation-delay: 0.08s; }
.web-package:nth-child(3) { animation-delay: 0.16s; }

@keyframes webPackageIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.web-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    filter: brightness(1.04);
}

.web-package--bronze {
    background:
        radial-gradient(circle at top right, rgba(255, 220, 170, 0.35), transparent 50%),
        linear-gradient(165deg, #c4894a 0%, #8a5528 48%, #6b3f1c 100%);
    border-color: rgba(255, 210, 150, 0.35);
    color: #fff6ea;
    box-shadow: 0 18px 40px rgba(80, 40, 10, 0.35);
}

.web-package--silver {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), transparent 48%),
        linear-gradient(165deg, #eef1f5 0%, #b8c0cc 45%, #8e99a8 100%);
    border-color: rgba(255, 255, 255, 0.55);
    color: #1b222c;
    box-shadow: 0 18px 40px rgba(40, 50, 70, 0.3);
}

.web-package--gold {
    background:
        radial-gradient(circle at top right, rgba(255, 245, 180, 0.55), transparent 48%),
        linear-gradient(165deg, #ffe566 0%, #ffcf0d 42%, #c9a000 100%);
    border-color: rgba(255, 248, 200, 0.65);
    color: #1a1400;
    box-shadow: 0 18px 40px rgba(120, 90, 0, 0.35);
}

.web-package--featured {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(40, 50, 70, 0.4);
}

.web-package--featured:hover {
    transform: translateY(-10px);
}

.web-package__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f2f5f8;
    background: #2a3340;
    padding: 6px 10px;
    border-radius: 999px;
}

.web-package--gold .web-package__badge {
    color: #ffcf0d;
    background: #0a0a0a;
}

.web-package__tier {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.85;
}

.web-package__head h3 {
    font-family: 'Syne', Inter, sans-serif;
    font-size: 1.65rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 14px;
    color: inherit;
}

.web-package__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.web-package__price span {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: inherit;
    line-height: 1;
}

.web-package--bronze .web-package__price span { color: #fff8ee; }
.web-package--silver .web-package__price span { color: #11161d; }
.web-package--gold .web-package__price span { color: #0a0a0a; }

.web-package__price small {
    opacity: 0.75;
    font-size: 0.85rem;
}

.web-package__blurb {
    opacity: 0.88;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    min-height: 4.4em;
}

.web-package__features {
    list-style: none;
    display: grid;
    gap: 11px;
    margin-bottom: 26px;
    flex: 1;
}

.web-package__features li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.92rem;
    color: inherit;
    line-height: 1.4;
}

.web-package__features i {
    font-size: 0.78rem;
    margin-top: 4px;
}

.web-package--bronze .web-package__features i { color: #ffe0b5; }
.web-package--silver .web-package__features i { color: #2a3340; }
.web-package--gold .web-package__features i { color: #0a0a0a; }

.web-package__feature--highlight {
    margin: 4px 0 8px;
    padding: 12px 12px;
    border-radius: 14px;
    align-items: center;
    font-weight: 700;
}

.web-package--silver .web-package__feature--highlight {
    background: rgba(20, 28, 40, 0.12);
    border: 1px solid rgba(20, 28, 40, 0.22);
    box-shadow: 0 8px 18px rgba(20, 28, 40, 0.08);
}

.web-package--gold .web-package__feature--highlight {
    background: rgba(10, 10, 10, 0.14);
    border: 1px solid rgba(10, 10, 10, 0.28);
    box-shadow: 0 8px 20px rgba(80, 60, 0, 0.18);
}

.web-package__feature--highlight i {
    font-size: 0.9rem;
    margin-top: 0;
}

.web-package--silver .web-package__feature--highlight i,
.web-package--gold .web-package__feature--highlight i {
    color: inherit;
}

.web-package__feature-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 3px;
}

.web-package__feature--highlight strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
}

.web-package__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    border: none;
    font-weight: 800;
}

.web-package__cta--bronze {
    background: #2a1608;
    color: #ffe7c2;
}

.web-package__cta--bronze:hover {
    background: #140a04;
    color: #fff;
}

.web-package__cta--silver {
    background: #2a3340;
    color: #f4f7fb;
}

.web-package__cta--silver:hover {
    background: #151b24;
    color: #fff;
}

.web-package__cta--gold {
    background: #0a0a0a;
    color: #ffcf0d;
}

.web-package__cta--gold:hover {
    background: #1a1a1a;
    color: #ffe566;
}

.web-custom-footer {
    margin-top: 40px;
    padding: 32px 34px;
    border-radius: 24px;
    border: 1px dashed rgba(255, 207, 13, 0.35);
    background: rgba(255, 207, 13, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.web-custom-footer h3 {
    font-family: 'Syne', Inter, sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: var(--accent);
}

.web-custom-footer p {
    color: var(--muted);
    max-width: 640px;
    font-size: 0.98rem;
}

@media (max-width: 1000px) {
    .web-hero {
        min-height: auto;
    }

    .web-hero__inner {
        padding: 84px 0 64px;
    }

    .web-hero__frame {
        inset: 16px;
        border-radius: 20px;
    }

    .web-hero__frame::before,
    .web-hero__frame::after {
        width: 48px;
        height: 48px;
        border-radius: 20px;
    }

    .web-hero__orb--1 {
        width: 110px;
        height: 110px;
    }

    .web-package-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .web-custom-banner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .web-custom-footer {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .web-package__blurb {
        min-height: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .web-hero__glow,
    .web-hero__orb,
    .web-hero__slash,
    .web-hero__brand,
    .web-hero__title,
    .web-hero__lead,
    .web-hero__actions,
    .web-package {
        animation: none !important;
    }
}
