:root {
    --color-primary: #1e3a8a;
    --color-primary-bright: #2563eb;
    --color-background: #f8fafc;
    --color-text: #1f2937;
    --color-muted: #5b6474;
    --color-success: #10b981;
    --color-gold: #daa520;
    --color-white: #ffffff;
    --color-border: rgba(30, 58, 138, 0.12);
    --shadow-soft: 0 24px 60px rgba(30, 58, 138, 0.12);
    --shadow-card: 0 18px 40px rgba(17, 24, 39, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Onest", sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent 30%),
        var(--color-background);
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.page-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(248, 250, 252, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(37, 99, 235, 0.95), rgba(16, 185, 129, 0.9));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 16px;
}

.brand strong,
.footer-title,
.hero-card strong,
.service-card h3,
.info-card h2,
.faq-item h3,
.contact-card h2,
.admin-panel h1,
.admin-panel h2,
.admin-login-card h1 {
    font-family: "Prata", serif;
    font-weight: 400;
}

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

.brand small {
    display: block;
    color: var(--color-muted);
    font-size: 0.8rem;
}

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

.site-nav > a,
.dropdown-toggle {
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--color-muted);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: 0.25s ease;
}

.site-nav > a:hover,
.site-nav > a.active,
.dropdown-toggle:hover {
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.08);
}

.dropdown {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 280px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    display: none;
    flex-direction: column;
    gap: 6px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    padding: 12px 14px;
    border-radius: 16px;
    transition: 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 14px 22px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary-bright), var(--color-primary));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.button-secondary {
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.08);
    box-shadow: inset 0 0 0 1px rgba(30, 58, 138, 0.08);
}

.button-block {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 0;
    background: rgba(37, 99, 235, 0.08);
    padding: 12px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--color-primary);
}

.hero-section {
    padding: 56px 0 32px;
}

.hero-grid,
.inner-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-card,
.glass-card,
.service-card,
.info-card,
.faq-item,
.cta-card,
.contact-card,
.service-body-card,
.admin-login-card,
.admin-panel {
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-soft);
}

.hero-copy {
    position: relative;
    overflow: hidden;
    padding: 44px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(218, 165, 32, 0.18), transparent 30%),
        linear-gradient(140deg, rgba(30, 58, 138, 0.98), rgba(37, 99, 235, 0.94));
    color: var(--color-white);
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hero-copy h1,
.cta-card h2,
.admin-login-card h1,
.admin-panel h1,
.admin-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
}

.hero-section-inner .hero-copy h1 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.hero-text,
.hero-copy p,
.info-card p,
.faq-item p,
.contact-card p,
.service-body-card p,
.admin-panel p,
.admin-login-card p {
    margin: 0;
    line-height: 1.7;
    color: inherit;
}

.hero-actions,
.tag-list,
.hero-stats,
.section-heading,
.service-grid,
.info-grid,
.faq-list,
.contact-grid,
.service-detail-grid,
.footer-grid,
.admin-links,
.admin-sidebar-actions,
.admin-actions {
    display: flex;
    gap: 16px;
}

.hero-actions,
.tag-list {
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-section-inner .hero-text + .button {
    margin-top: 30px;
}

.contact-card p + .button {
    margin-top: 24px;
}

.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.hero-trust-item {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-trust-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.hero-trust-item span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
    font-size: 0.92rem;
}

.hero-copy .button-secondary {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero-copy .button-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tag-list span,
.eyebrow,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--color-primary);
    background: rgba(37, 99, 235, 0.08);
}

.hero-copy .eyebrow,
.hero-badge {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.14);
}

.tag-list span {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
}

.hero-card,
.glass-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
}

.hero-visual-stack {
    display: grid;
    gap: 18px;
}

.hero-main-card {
    min-height: 380px;
    padding: 0;
}

.hero-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: auto 18px 18px 18px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.16), rgba(30, 58, 138, 0.88));
    color: var(--color-white);
}

.hero-image-overlay h3,
.focus-card h3 {
    margin: 12px 0 10px;
    font-family: "Prata", serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.2;
}

.hero-image-overlay p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}

.hero-summary-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.98));
}

.hero-card::before,
.glass-card::before,
.admin-panel::before,
.service-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 70%);
    pointer-events: none;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.hero-slogans {
    margin: 28px 0;
}

.hero-slogans p {
    margin: 0 0 12px;
    padding-left: 18px;
    border-left: 3px solid rgba(37, 99, 235, 0.2);
    color: var(--color-text);
}

.hero-stats {
    flex-wrap: wrap;
}

.hero-stats div {
    flex: 1 1 120px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.88);
}

.hero-stats strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.section {
    padding: 32px 0 42px;
}

.section-soft {
    position: relative;
}

.section-heading {
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.section-heading h2 {
    margin: 0;
    font-family: "Prata", serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 400;
}

.section-heading p {
    max-width: 560px;
    color: var(--color-muted);
    line-height: 1.7;
}

.service-grid,
.faq-list,
.contact-grid {
    flex-wrap: wrap;
}

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

.focus-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.focus-card-media,
.info-card-media {
    overflow: hidden;
    border-radius: 22px;
}

.focus-card-media {
    border-radius: 0;
}

.focus-card-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.focus-card-body {
    padding: 24px;
}

.focus-card-body p {
    color: var(--color-muted);
    line-height: 1.7;
}

.service-card,
.faq-item,
.contact-card {
    position: relative;
    flex: 1 1 280px;
    min-width: 0;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--color-border);
}

.service-card h3,
.faq-item h3,
.contact-card h2,
.service-body-card h2 {
    margin: 12px 0;
    font-size: 1.45rem;
    line-height: 1.25;
}

.service-card p,
.faq-item p,
.contact-card p,
.service-body-card p {
    color: var(--color-muted);
}

.service-card a,
.footer-link,
.admin-actions a {
    color: var(--color-primary);
    font-weight: 600;
}

.service-index {
    color: var(--color-success);
    font-size: 0.9rem;
    font-weight: 700;
}

.info-grid,
.service-detail-grid,
.footer-grid {
    flex-wrap: wrap;
}

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

.content-grid-spaced {
    gap: 28px;
}

.about-shell {
    display: grid;
    gap: 28px;
}

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

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

.about-metric-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(30, 58, 138, 0.1);
    box-shadow: var(--shadow-card);
}

.about-metric-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-family: "Prata", serif;
    font-size: 1.4rem;
    font-weight: 400;
}

.about-metric-card span {
    color: var(--color-muted);
    line-height: 1.6;
}

.about-section-card {
    height: 100%;
}

.info-card,
.service-body-card,
.cta-card {
    position: relative;
    flex: 1 1 340px;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
}

.info-card-media {
    margin-bottom: 22px;
}

.info-card-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 22px;
}

.accent-card {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(37, 99, 235, 0.1));
}

.feature-list,
.process-list {
    margin: 24px 0 0;
    padding-left: 20px;
    line-height: 1.85;
    color: var(--color-muted);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background-image:
        radial-gradient(circle at top right, rgba(218, 165, 32, 0.14), transparent 28%),
        linear-gradient(145deg, rgba(30, 58, 138, 0.92), rgba(37, 99, 235, 0.88)),
        var(--cta-photo);
    background-size: auto, auto, cover;
    background-position: top right, center, center;
    background-repeat: no-repeat;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-copy {
    max-width: 680px;
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.cta-benefits span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92rem;
}

.cta-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.cta-note strong {
    color: var(--color-white);
}

.cta-actions-panel {
    width: min(100%, 340px);
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.cta-secondary {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-microcopy {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    line-height: 1.6;
    font-size: 0.9rem;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.icon svg {
    width: 18px;
    height: 18px;
}

.icon-whatsapp {
    color: #25d366;
}

.button .icon-whatsapp {
    color: currentColor;
}

.footer-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.testimonials-slider {
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    max-width: 720px;
    margin: 0 auto;
}

.testimonials-track::-webkit-scrollbar {
    height: 0;
}

.testimonial-slide {
    scroll-snap-align: start;
    flex: 0 0 100%;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.slider-button {
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    transition: 0.2s ease;
}

.slider-button:hover {
    background: rgba(37, 99, 235, 0.08);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(30, 58, 138, 0.22);
    background: rgba(30, 58, 138, 0.08);
    cursor: pointer;
}

.slider-dot[data-active="true"] {
    background: rgba(37, 99, 235, 0.9);
    border-color: rgba(37, 99, 235, 0.9);
}

.testimonial-card {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(30, 58, 138, 0.12);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.testimonial-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.12);
    background: rgba(248, 250, 252, 0.9);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    display: grid;
    gap: 8px;
}

.testimonial-text {
    margin: 0;
    color: var(--color-text);
    line-height: 1.75;
}

.testimonial-result {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    color: #047857;
    background: rgba(16, 185, 129, 0.12);
    font-size: 0.88rem;
    font-weight: 600;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-family: "Prata", serif;
    font-weight: 400;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--color-muted);
}

.site-footer {
    padding: 24px 0 40px;
}

.footer-grid {
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--color-border);
}

.footer-grid > div {
    flex: 1 1 220px;
}

.footer-link {
    display: inline-block;
    margin-right: 16px;
    margin-top: 8px;
}

.flash {
    margin: 18px 0 0;
    padding: 14px 18px;
    border-radius: 18px;
}

.flash-success {
    background: rgba(16, 185, 129, 0.12);
    color: #066b4d;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    color: #9b1c1c;
}

.contact-card-accent {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.98), rgba(37, 99, 235, 0.94));
    color: var(--color-white);
}

.contact-card-accent p {
    color: rgba(255, 255, 255, 0.86);
}

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.12), transparent 25%),
        #eef4ff;
}

.admin-login-shell,
.admin-edit-shell {
    width: min(calc(100% - 32px), 760px);
    margin: 0 auto;
    padding: 40px 0;
}

.admin-login-card {
    padding: 36px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
}

.admin-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.98), rgba(24, 43, 105, 0.98));
    color: var(--color-white);
    overflow: hidden;
}

.admin-sidebar h1 {
    margin: 0 0 14px;
    font-family: "Prata", serif;
    font-weight: 400;
    font-size: 2rem;
}

.admin-links,
.admin-sidebar-actions {
    flex-direction: column;
    gap: 10px;
}

.admin-links a {
    padding: 11px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar-actions {
    margin-top: auto;
}

.admin-sidebar .button {
    width: 100%;
}

.admin-sidebar .button-secondary {
    color: #10214d;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(7, 15, 43, 0.18);
}

.admin-sidebar .button-secondary:hover {
    background: #ffffff;
}

.admin-main {
    height: 100vh;
    overflow: auto;
    padding: 32px;
}

.admin-main .flash {
    position: sticky;
    top: 16px;
    z-index: 5;
    margin-top: 0;
    margin-bottom: 18px;
}

.admin-panel {
    overflow: hidden;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

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

.admin-form,
.admin-form-grid {
    display: grid;
    gap: 18px;
}

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

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

.admin-form label,
.admin-form-grid label {
    display: grid;
    gap: 8px;
    color: var(--color-muted);
}

.admin-form input,
.admin-form textarea,
.admin-form-grid input,
.admin-form-grid textarea {
    width: 100%;
    border: 1px solid rgba(30, 58, 138, 0.16);
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(248, 250, 252, 0.9);
}

.checkbox-field {
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    align-self: end;
}

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

.admin-preview {
    padding: 12px;
    border-radius: 20px;
    background: rgba(248, 250, 252, 0.9);
}

.admin-preview img {
    max-height: 220px;
    border-radius: 16px;
    object-fit: cover;
}

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

.admin-table-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 150px 220px;
    gap: 16px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.9);
}

.admin-table-head {
    font-weight: 700;
}

.admin-actions {
    align-items: center;
}

.admin-actions form {
    margin: 0;
}

.admin-actions button {
    border: 0;
    padding: 0;
    background: transparent;
    color: #b91c1c;
    cursor: pointer;
}

.admin-back-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--color-primary);
    font-weight: 600;
}

.illustration-card,
.hero-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-media img,
.image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.service-detail-grid .service-benefits-card {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(255, 255, 255, 0.92));
}

@media (max-width: 980px) {
    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open,
    .site-nav[data-open="true"] {
        display: flex;
    }

    .site-nav > a,
    .dropdown,
    .dropdown-toggle,
    .nav-cta {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: flex;
        min-width: 0;
        margin-top: 10px;
        box-shadow: none;
        background: rgba(248, 250, 252, 0.92);
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .inner-hero,
    .admin-shell,
    .about-intro,
    .about-metrics,
    .content-grid,
    .accounting-focus-grid,
    .hero-trust-row,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slide {
        flex-basis: min(520px, 100%);
    }

    .admin-sidebar {
        position: static;
        height: auto;
        overflow: visible;
        padding-bottom: 18px;
    }

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

    .admin-main {
        height: auto;
        overflow: visible;
    }
}

@media (max-width: 720px) {
    .hero-copy,
    .hero-card,
    .glass-card,
    .service-card,
    .info-card,
    .faq-item,
    .contact-card,
    .service-body-card,
    .admin-panel,
    .admin-login-card,
    .cta-card {
        padding: 24px;
        border-radius: 24px;
    }

    .cta-card,
    .section-heading,
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions-panel {
        width: 100%;
    }

    .nav-wrap {
        gap: 14px;
    }

    .brand small {
        display: none;
    }

    .testimonial-slide {
        flex-basis: 100%;
    }
}
