:root {
    --ink: #202a3a;
    --muted: #687386;
    --blue: #1976d2;
    --blue-soft: #eaf4ff;
    --line: #dfe4eb;
    --wash: #f4f5f7;
    --footer: #101929;
    --white: #ffffff;
    --page-bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f4f5f7;
    --header-bg: rgba(255, 255, 255, 0.92);
    --card-bg: #ffffff;
    --card-gradient: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    --shadow-soft: 0 18px 44px rgba(16, 25, 41, 0.06);
}

:root[data-theme="dark"] {
    --ink: #eef5ff;
    --muted: #a8b4c6;
    --blue: #58a6ff;
    --blue-soft: rgba(88, 166, 255, 0.14);
    --line: rgba(220, 230, 244, 0.14);
    --wash: #111a2a;
    --footer: #08111f;
    --white: #121c2d;
    --page-bg: #0b1320;
    --surface: #101a2a;
    --surface-soft: #111a2a;
    --header-bg: rgba(11, 19, 32, 0.9);
    --card-bg: #101a2a;
    --card-gradient: linear-gradient(180deg, #121d30 0%, #0f1828 100%);
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

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

.container-wide {
    width: min(1090px, calc(100% - 48px));
    margin: 0 auto;
}

.container-narrow {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav-shell {
    width: min(1240px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.brand span:last-child,
.footer-brand span:last-child {
    white-space: nowrap;
}

.brand-mark {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1557a8, #4897e8);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    font-weight: 700;
}

.nav-menu a,
.social-links a {
    transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.social-links a:hover {
    color: var(--blue);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.social-links a {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #dce4ee;
    border-radius: 50%;
    background: #ffffff;
    color: var(--ink);
}

.social-links a:hover {
    border-color: rgba(25, 118, 210, 0.25);
    background: var(--blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.social-links span,
.footer-socials span {
    font-size: 12px;
    font-weight: 850;
}

.theme-toggle {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #dce4ee;
    border-radius: 50%;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.theme-toggle:hover {
    border-color: rgba(25, 118, 210, 0.25);
    background: var(--blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.theme-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.moon-icon,
:root[data-theme="dark"] .sun-icon {
    display: none;
}

:root[data-theme="dark"] .moon-icon {
    display: block;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    min-height: 575px;
    display: flex;
    align-items: center;
}

.hero-grid,
.about-grid,
.split-page,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 72px;
}

.hero-copy h1 {
    max-width: 520px;
    margin: 0 0 24px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
    font-weight: 800;
}

.hero-copy h1 span {
    color: var(--blue);
}

.hero-copy p {
    margin: 0 0 30px;
    color: var(--muted);
    font-weight: 500;
}

.btn-primary-soft,
.package-card a,
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(25, 118, 210, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-primary-soft:hover,
.package-card a:hover,
.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(25, 118, 210, 0.28);
}

.hero-media img {
    width: 100%;
    aspect-ratio: 1.44;
    object-fit: cover;
    border-radius: 8px;
    filter: saturate(1.05);
}

.about-band,
.stories-band {
    background: var(--wash);
}

.section-title,
.section-heading h2,
.center-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
}

.section-title {
    margin-bottom: 54px;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1.58;
    object-fit: cover;
    border-radius: 6px;
}

.about-copy span,
.section-heading span,
.center-heading span,
.eyebrow,
.service-item span,
.package-card span {
    display: block;
    margin-bottom: 12px;
    color: #818c9b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-copy p {
    max-width: 520px;
    margin: 0;
    color: #2f3948;
    font-weight: 500;
}

.founder-section {
    background: var(--page-bg);
}

.cofounder-section {
    background: var(--surface-soft);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 72px;
}

.founder-photo {
    position: relative;
}

.founder-photo::before {
    content: "";
    position: absolute;
    inset: 28px -22px -22px 28px;
    z-index: 0;
    border-radius: 18px;
    background: var(--blue-soft);
}

.cofounder-section .founder-photo::before {
    inset: 28px 28px -22px -22px;
}

.founder-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.founder-copy span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.founder-copy h2 {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    font-weight: 850;
}

.founder-copy p {
    max-width: 620px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.section-heading {
    margin-bottom: 68px;
}

.section-heading p,
.center-heading p,
.split-page p,
.contact-grid p {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--muted);
    font-weight: 500;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 74px 180px;
    width: min(760px, 100%);
    margin: 0 auto;
}

.story-card {
    display: grid;
    justify-items: center;
    text-align: center;
}

.story-card img {
    width: 210px;
    height: 210px;
    object-fit: cover;
    border-radius: 50%;
}

.story-card h3 {
    margin: 16px 0 44px;
    font-size: 15px;
    font-weight: 800;
}

.metric-row {
    width: 225px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
}

.metric-row span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
}

.metric-row strong {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 3px solid #4e9dff;
    border-radius: 50%;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.services {
    background: var(--white);
}

.service-list {
    border-top: 1px solid var(--line);
}

.service-item {
    max-width: 620px;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
}

.service-item h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 800;
}

.service-item p {
    margin: 0;
    color: #394454;
}

.clients {
    background: var(--white);
}

.center-heading {
    margin: 0 auto 54px;
    text-align: center;
}

.center-heading p {
    margin-left: auto;
    margin-right: auto;
}

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

.client-tile {
    min-height: 132px;
    display: grid;
    place-items: center;
    padding: 22px;
    border: 1px solid #e0e6ef;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 14px 38px rgba(16, 25, 41, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.client-tile:hover {
    border-color: rgba(25, 118, 210, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(16, 25, 41, 0.1);
}

.client-tile img {
    width: 100%;
    max-width: 150px;
    height: 78px;
    object-fit: contain;
}

.testimonials {
    background: var(--white);
    padding-bottom: 140px;
}

.testimonial-list {
    border-top: 1px solid var(--line);
}

.testimonial-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 64px;
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
}

.testimonial-row h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
}

.testimonial-row p {
    max-width: 650px;
    margin: 0;
    color: #344050;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(31, 107, 215, 0.14), transparent 32%),
        #0d1524;
    color: #dce6f4;
    padding: 76px 0 28px;
}

.footer-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, 1fr));
    gap: 48px;
}

.footer-brand {
    color: var(--white);
    font-size: 16px;
    letter-spacing: 0;
}

.footer-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-about p {
    max-width: 390px;
    margin: 22px 0 26px;
    color: #aeb9c9;
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(220, 230, 244, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 107, 215, 0.75);
    background: #1f6bd7;
}

.footer-socials svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-column h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 850;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: #a8b4c6;
    line-height: 1.5;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-contact-card {
    padding: 22px;
    border: 1px solid rgba(220, 230, 244, 0.14);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
}

.footer-cta {
    width: fit-content;
    margin-top: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    background: #1f6bd7;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 850;
}

.footer-cta:hover {
    transform: translateY(-2px) !important;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 58px;
    padding-top: 24px;
    border-top: 1px solid rgba(220, 230, 244, 0.14);
    color: #8f9caf;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
}

.footer-bottom a,
.footer-bottom small {
    color: #8f9caf;
    font-size: 12px;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.subpage-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.split-page h1,
.contact-grid h1,
.center-heading h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 850;
}

.split-page img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
    border-radius: 8px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 58px;
}

.package-card {
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.package-card.featured {
    border-color: rgba(25, 118, 210, 0.35);
    background: var(--blue-soft);
}

.package-card h2 {
    margin: 0 0 18px;
    font-size: 26px;
    font-weight: 800;
}

.package-card p {
    min-height: 110px;
    color: var(--muted);
}

.packages-page {
    min-height: calc(100vh - 72px);
    padding: 6px 0 38px;
    background: #ffffff;
    color: #06162d;
}

.packages-shell {
    width: min(1275px, calc(100% - 80px));
    margin: 0 auto;
}

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

.packages-heading h1 {
    margin: 0 0 8px;
    color: #06162d;
    font-size: clamp(42px, 4.2vw, 58px);
    line-height: 1.08;
    font-weight: 850;
}

.packages-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #142944;
    font-size: 18px;
    line-height: 1.55;
}

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

.pricing-card {
    min-height: 504px;
    padding: 31px 32px 32px;
    border: 1px solid #cfd6df;
    border-radius: 15px;
    background: #ffffff;
}

.pricing-card.highlighted {
    border-color: #0d6bff;
    box-shadow: 0 10px 28px rgba(13, 107, 255, 0.08);
}

.pricing-card h2 {
    margin: 0 0 30px;
    color: #06162d;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 850;
}

.plan-button {
    width: 100%;
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
    border-radius: 999px;
    background: #1f6bd7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.plan-button:hover {
    background: #155dc4;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(31, 107, 215, 0.22);
}

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

.feature-list li {
    position: relative;
    padding-left: 22px;
    color: #071a36;
    font-size: 16px;
    line-height: 1.45;
}

.feature-list.included li::before,
.feature-list.excluded li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
}

.feature-list.included li::before {
    content: "✓";
    color: #00bc40;
}

.feature-list.excluded li {
    color: #8390a3;
}

.feature-list.excluded li::before {
    content: "×";
    color: #ff5b66;
    font-size: 20px;
    line-height: 1;
}

.not-included {
    margin-top: 27px;
    padding-top: 24px;
    border-top: 1px solid #d9dee6;
}

.not-included h3 {
    margin: 0 0 14px;
    color: #536174;
    font-size: 13px;
    font-weight: 850;
}

.premium-list {
    gap: 14px;
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 34px;
    color: var(--ink);
    font-weight: 800;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--wash);
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    resize: vertical;
}

.inner-page {
    padding: 86px 0 110px;
    background: #ffffff;
}

.inner-heading {
    max-width: 760px;
    margin-bottom: 54px;
}

.inner-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.inner-heading span {
    display: block;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.inner-heading h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 850;
}

.inner-heading p {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.service-card-grid,
.testimonial-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.detail-card,
.quote-card {
    min-height: 270px;
    padding: 30px;
    border: 1px solid #e0e6ef;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 18px 44px rgba(16, 25, 41, 0.06);
}

.detail-card span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    font-weight: 850;
}

.detail-card h2,
.quote-card h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 850;
}

.detail-card p,
.quote-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.client-page-grid {
    margin-top: 20px;
}

.quote-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-card::before {
    content: "“";
    color: rgba(31, 107, 215, 0.2);
    font-size: 72px;
    font-weight: 900;
    line-height: 0.8;
}

.quote-card h2 {
    margin-top: 28px;
    margin-bottom: 4px;
    font-size: 17px;
}

.quote-card span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.gallery-card,
.team-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card-gradient);
    box-shadow: var(--shadow-soft);
}

.gallery-card img,
.team-card img {
    width: 100%;
    aspect-ratio: 1.18;
    object-fit: cover;
}

.gallery-card div,
.team-card div {
    padding: 24px;
}

.gallery-card span,
.team-card span {
    display: block;
    margin-bottom: 9px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.gallery-card h2,
.team-card h2 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: 22px;
    font-weight: 850;
}

.gallery-card p,
.team-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.team-socials {
    display: flex;
    gap: 12px;
    padding: 18px 0 0 !important;
}

.team-socials a {
    color: var(--blue);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.empty-card {
    min-height: 220px;
    display: grid;
    place-items: center;
}

.admin-body {
    min-height: 100vh;
    background: #eef3f8;
    color: #142033;
    font-family: "Inter", Arial, sans-serif;
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    background:
        radial-gradient(circle at top left, rgba(31, 107, 215, 0.18), transparent 34%),
        #eef3f8;
}

.admin-login-card {
    width: min(430px, 100%);
    padding: 34px;
    border: 1px solid #dfe7f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(16, 25, 41, 0.12);
}

.admin-login-brand,
.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-login-brand img,
.admin-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.admin-login-brand span,
.admin-topbar span,
.admin-panel-card span,
.admin-stat-card span {
    color: #1f6bd7;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.admin-login-brand h1 {
    margin: 2px 0 0;
    color: #142033;
    font-size: 21px;
    font-weight: 850;
}

.admin-form {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.admin-form label {
    display: grid;
    gap: 8px;
    color: #142033;
    font-size: 13px;
    font-weight: 800;
}

.admin-form input {
    width: 100%;
    border: 1px solid #d8e1ec;
    border-radius: 10px;
    padding: 13px 14px;
    color: #142033;
    font: inherit;
}

.admin-form button,
.admin-topbar a,
.admin-panel-card a,
.admin-table-row a {
    width: fit-content;
    border: 0;
    border-radius: 999px;
    background: #1f6bd7;
    color: #ffffff;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.admin-form button {
    width: 100%;
    min-height: 46px;
}

.admin-alerts {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
}

.admin-alert {
    margin: 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #edf6ff;
    color: #174b85;
    font-weight: 700;
}

.admin-alert.error {
    background: #fff0f0;
    color: #b42318;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 270px 1fr;
}

.admin-sidebar {
    padding: 28px;
    background: #0d1524;
    color: #ffffff;
}

.admin-brand {
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
    margin-top: 38px;
}

.admin-sidebar nav a {
    padding: 12px 14px;
    border-radius: 10px;
    color: #aeb9c9;
    font-weight: 750;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.admin-main {
    padding: 34px;
}

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

.admin-topbar h1 {
    margin: 2px 0 0;
    color: #142033;
    font-size: 38px;
    font-weight: 850;
}

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

.admin-stat-card,
.admin-panel-card,
.admin-table-card {
    border: 1px solid #dfe7f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(16, 25, 41, 0.06);
}

.admin-stat-card {
    padding: 24px;
}

.admin-stat-card strong {
    display: block;
    margin-top: 10px;
    color: #142033;
    font-size: 38px;
    line-height: 1;
}

.admin-panel-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 28px;
}

.admin-panel-card h2 {
    margin: 4px 0 10px;
    color: #142033;
    font-size: 26px;
    font-weight: 850;
}

.admin-panel-card p {
    max-width: 650px;
    margin: 0;
    color: #65748a;
}

.admin-table-card {
    overflow: hidden;
}

.admin-table {
    display: grid;
}

.admin-table-row {
    display: grid;
    grid-template-columns: 1fr 1.7fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-bottom: 1px solid #e7edf4;
}

.admin-table-row:last-child {
    border-bottom: 0;
}

.admin-table-head {
    background: #f7f9fc;
    color: #526174;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.admin-table-row code {
    color: #526174;
    font-size: 13px;
}

.admin-form-card {
    margin-bottom: 24px;
    padding: 28px;
    border: 1px solid #dfe7f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(16, 25, 41, 0.06);
}

.admin-form-card h2 {
    margin: 0 0 20px;
    color: #142033;
    font-size: 24px;
    font-weight: 850;
}

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

.admin-grid-form label {
    display: grid;
    gap: 8px;
    color: #142033;
    font-size: 13px;
    font-weight: 800;
}

.admin-grid-form input,
.admin-grid-form textarea {
    width: 100%;
    border: 1px solid #d8e1ec;
    border-radius: 10px;
    padding: 12px 13px;
    color: #142033;
    font: inherit;
}

.admin-grid-form input[type="file"] {
    padding: 10px;
    background: #f7f9fc;
}

.admin-grid-form textarea {
    resize: vertical;
}

.admin-grid-form .full {
    grid-column: 1 / -1;
}

.admin-check {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
}

.admin-check input {
    width: auto;
}

.admin-grid-form button,
.admin-row-actions button {
    width: fit-content;
    border: 0;
    border-radius: 999px;
    background: #1f6bd7;
    color: #ffffff;
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.admin-row-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-row-actions form {
    margin: 0;
}

.admin-row-actions button {
    background: #f04438;
}

.admin-thumb {
    width: 70px;
    height: 44px;
    object-fit: contain;
    border: 1px solid #e7edf4;
    border-radius: 8px;
    background: #ffffff;
}

.admin-table-logos .admin-table-row {
    grid-template-columns: 90px 1fr 1.6fr 90px auto;
}

.admin-table-packages .admin-table-row {
    grid-template-columns: 1fr 100px 100px auto;
}

.admin-table-services .admin-table-row {
    grid-template-columns: 90px 1.4fr 1fr 90px auto;
}

.admin-table-social .admin-table-row {
    grid-template-columns: 90px 1fr 1.7fr 90px auto;
}

.admin-table-messages .admin-table-row {
    grid-template-columns: 1fr 1.2fr 1.3fr 90px auto;
}

.admin-table-gallery .admin-table-row,
.admin-table-team .admin-table-row {
    grid-template-columns: 90px 1.2fr 1fr 90px auto;
}

.admin-edit-page {
    min-height: 100vh;
    padding: 34px;
}

.admin-message-detail {
    display: grid;
    gap: 14px;
    color: #526174;
}

.admin-message-detail p {
    margin: 0;
}

.admin-message-detail strong {
    color: #142033;
}

.form-alerts {
    display: grid;
    gap: 10px;
    margin-bottom: 8px;
}

.form-alert {
    margin: 0;
    padding: 12px 14px;
    border-radius: 10px;
    background: #edf6ff;
    color: #174b85;
    font-weight: 700;
}

.form-alert.error {
    background: #fff0f0;
    color: #b42318;
}

.policy-page {
    padding: 84px 0 110px;
    background: var(--page-bg);
}

.policy-shell {
    width: min(880px, calc(100% - 48px));
    margin: 0 auto;
}

.policy-heading {
    margin-bottom: 38px;
}

.policy-heading span {
    display: block;
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.policy-heading h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 850;
}

.policy-heading p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.policy-content {
    display: grid;
    gap: 18px;
}

.policy-content section {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card-gradient);
    box-shadow: var(--shadow-soft);
}

.policy-content h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 850;
}

.policy-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.policy-content a {
    color: var(--blue);
    font-weight: 800;
}

:root[data-theme="dark"] .about-band,
:root[data-theme="dark"] .founder-section,
:root[data-theme="dark"] .stories-band,
:root[data-theme="dark"] .services,
:root[data-theme="dark"] .clients,
:root[data-theme="dark"] .testimonials,
:root[data-theme="dark"] .subpage-hero,
:root[data-theme="dark"] .inner-page,
:root[data-theme="dark"] .packages-page {
    background: var(--page-bg);
}

:root[data-theme="dark"] .about-copy p,
:root[data-theme="dark"] .service-item p,
:root[data-theme="dark"] .testimonial-row p,
:root[data-theme="dark"] .section-heading p,
:root[data-theme="dark"] .center-heading p,
:root[data-theme="dark"] .split-page p,
:root[data-theme="dark"] .contact-grid p,
:root[data-theme="dark"] .packages-heading p,
:root[data-theme="dark"] .feature-list li {
    color: var(--muted);
}

:root[data-theme="dark"] .client-tile,
:root[data-theme="dark"] .detail-card,
:root[data-theme="dark"] .quote-card,
:root[data-theme="dark"] .gallery-card,
:root[data-theme="dark"] .team-card,
:root[data-theme="dark"] .pricing-card,
:root[data-theme="dark"] .contact-form {
    border-color: var(--line);
    background: var(--card-gradient);
    box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .pricing-card h2,
:root[data-theme="dark"] .packages-heading h1,
:root[data-theme="dark"] .detail-card h2,
:root[data-theme="dark"] .quote-card h2,
:root[data-theme="dark"] .contact-form label {
    color: var(--ink);
}

:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .social-links a,
:root[data-theme="dark"] .nav-toggle {
    border-color: var(--line);
    background: var(--surface);
    color: var(--ink);
}

:root[data-theme="dark"] .nav-menu.is-open {
    background: var(--surface);
    border-color: var(--line);
}

:root[data-theme="dark"] .brand {
    padding: 4px 10px 4px 4px;
    border-radius: 10px;
    background: #ffffff;
    color: #101929;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 650ms ease, transform 650ms ease;
}

.delay-1.is-visible {
    transition-delay: 110ms;
}

.delay-2.is-visible {
    transition-delay: 220ms;
}

@media (max-width: 900px) {
    .section-pad {
        padding: 66px 0;
    }

    .nav-shell {
        grid-template-columns: 1fr auto auto;
    }

    .brand {
        font-size: 13px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu,
    .social-links {
        display: none;
    }

    .nav-actions {
        grid-column: 2;
    }

    .nav-menu.is-open {
        position: absolute;
        top: 78px;
        left: 24px;
        right: 24px;
        display: grid;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 24px 50px rgba(16, 25, 41, 0.12);
    }

    .nav-menu.is-open a {
        padding: 12px;
    }

    .hero,
    .subpage-hero {
        min-height: auto;
    }

    .hero-grid,
    .about-grid,
    .founder-grid,
    .split-page,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .founder-photo {
        max-width: 520px;
    }

    .story-grid,
    .package-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .packages-shell {
        width: min(100% - 48px, 760px);
    }

    .packages-page {
        padding: 34px 0 58px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        min-height: 0;
    }

    .service-card-grid,
    .testimonial-card-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

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

    .admin-sidebar {
        padding: 20px 24px;
    }

    .admin-sidebar nav {
        display: flex;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .admin-main {
        padding: 24px;
    }

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

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

    .admin-table-row {
        grid-template-columns: 1fr;
    }

    .admin-table-logos .admin-table-row,
    .admin-table-packages .admin-table-row,
    .admin-table-services .admin-table-row,
    .admin-table-social .admin-table-row,
    .admin-table-messages .admin-table-row,
    .admin-table-gallery .admin-table-row,
    .admin-table-team .admin-table-row,
    .admin-grid-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .container-wide,
    .container-narrow,
    .nav-shell,
    .footer-shell {
        width: min(100% - 32px, 1090px);
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .client-logo-grid {
        grid-template-columns: 1fr;
    }

    .client-tile {
        min-height: 118px;
    }

    .site-footer {
        padding-top: 58px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 14px;
    }

    .admin-login-page {
        padding: 18px;
    }

    .admin-login-card {
        padding: 26px;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar h1 {
        font-size: 32px;
    }

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

    .hero-copy h1,
    .split-page h1,
    .contact-grid h1,
    .center-heading h1 {
        font-size: 34px;
    }

    .packages-shell {
        width: min(100% - 32px, 760px);
    }

    .packages-heading {
        margin-bottom: 34px;
    }

    .packages-heading h1 {
        font-size: 38px;
    }

    .packages-heading p {
        font-size: 16px;
    }

    .pricing-card {
        padding: 26px 24px 28px;
    }

    .inner-page {
        padding: 64px 0 82px;
    }

    .inner-heading {
        margin-bottom: 36px;
    }

    .inner-heading h1 {
        font-size: 36px;
    }

    .inner-heading p {
        font-size: 16px;
    }

    .policy-page {
        padding: 62px 0 82px;
    }

    .policy-shell {
        width: min(100% - 32px, 880px);
    }

    .policy-content section {
        padding: 22px;
    }

    .feature-list li {
        font-size: 15px;
    }

    .story-card img {
        width: 178px;
        height: 178px;
    }

    .metric-row {
        width: 210px;
    }

    .service-item {
        padding: 46px 0;
    }

    .testimonials {
        padding-bottom: 80px;
    }
}
