:root {
    --bg: #f5f1eb;
    --surface: #ffffff;
    --surface-soft: #fbf8f3;
    --surface-dark: #111a2f;
    --text: #16233d;
    --muted: #75819a;
    --line: rgba(22, 35, 61, 0.08);
    --accent: #f7a600;
    --accent-strong: #ec9600;
    --success: #22c55e;
    --shadow: 0 20px 40px rgba(17, 26, 47, 0.08);
    --radius: 20px;
    --page-gutter: 24px;
    --container: min(1120px, calc(100vw - (var(--page-gutter) * 2)));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.narrow {
    width: min(var(--container), 100%);
    max-width: 760px;
}

.text-center {
    text-align: center;
}

.align-left {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.section {
    padding: 72px 0;
}

.surface-tint {
    background: rgba(255, 255, 255, 0.38);
}

.spacing-top-lg {
    margin-top: 48px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(22, 35, 61, 0.05);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    max-width: min(260px, 45vw);
}

.brand-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
}

.brand-footer {
    max-width: 240px;
}

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

.nav-link {
    position: relative;
    font-size: 0.95rem;
    color: var(--muted);
    transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--text);
}

.nav-link.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.nav-link-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.nav-toggle {
    display: none;
    border: 0;
    padding: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero-home::before {
    background-image: linear-gradient(180deg, rgba(9, 14, 30, 0.78), rgba(9, 14, 30, 0.44) 62%, rgba(245, 241, 235, 0.96) 100%), linear-gradient(90deg, rgba(9, 14, 30, 0.84) 0%, rgba(9, 14, 30, 0.52) 34%, rgba(9, 14, 30, 0.12) 62%, rgba(9, 14, 30, 0.52) 100%), radial-gradient(circle at 78% 18%, rgba(255, 190, 92, 0.16), rgba(255, 190, 92, 0) 24%);
    background-position: center, center, center;
}

.hero-services::before {
    background-image: linear-gradient(180deg, rgba(9, 14, 30, 0.82), rgba(9, 14, 30, 0.48) 62%, rgba(245, 241, 235, 1) 100%), linear-gradient(90deg, rgba(9, 14, 30, 0.72), rgba(9, 14, 30, 0.1)), url('../images/futuristic-presentation-by-businesswoman-white.jpg');
    background-position: center, center, center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(245, 241, 235, 0.28));
}

.page-home .hero-overlay {
    background: linear-gradient(180deg, rgba(4, 8, 18, 0.08), rgba(4, 8, 18, 0.04) 48%, rgba(245, 241, 235, 0.12) 100%);
}

.page-home h1,
.page-home .hero-copy {
    color: #ffffff;
}

.page-home .eyebrow {
    color: rgba(255, 255, 255, 0.92);
    background: rgba(247, 166, 0, 0.2);
}

.hero-overlay.dark {
    background: linear-gradient(180deg, rgba(4, 8, 18, 0.1), rgba(245, 241, 235, 0.2));
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(var(--container), 100%);
    max-width: 760px;
    padding: 120px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(247, 166, 0, 0.14);
    color: rgba(22, 35, 61, 0.88);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-dark .eyebrow {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(247, 166, 0, 0.18);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.05em;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 0.98;
    margin-top: 18px;
}

.hero h1,
.hero-simple h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
}

h3 {
    font-size: 1.15rem;
    line-height: 1.15;
}

.hero-dark h1,
.hero-dark p,
.hero-dark .hero-copy {
    color: #ffffff;
}

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

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

.hero-copy {
    max-width: 640px;
    margin-top: 18px;
    font-size: 1.02rem;
}

.hero-actions,
.footer-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.94rem;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: linear-gradient(180deg, #ffb21e, #f6a200);
    color: #fff;
    box-shadow: 0 12px 24px rgba(246, 162, 0, 0.22);
}

.button-primary:hover {
    box-shadow: 0 16px 28px rgba(246, 162, 0, 0.28);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(22, 35, 61, 0.08);
    color: var(--text);
}

.button-secondary.is-on-dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.button-landing-link {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(18, 28, 48, 0.62);
    color: #ffffff;
}

.button-landing-link:hover {
    background: rgba(18, 28, 48, 0.78);
}

.button-icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.button-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.button-block {
    width: 100%;
}

.intro-section p {
    margin-top: 18px;
}

.card-grid {
    display: grid;
    gap: 24px;
}

.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.portfolio-card,
.testimonial-card,
.pricing-card,
.form-card,
.contact-cta-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(22, 35, 61, 0.06);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 28px;
}

.feature-card-soft {
    min-height: 220px;
    background: rgba(255, 255, 255, 0.76);
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(247, 166, 0, 0.12);
    color: var(--accent);
    margin-bottom: 18px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.feature-card p,
.portfolio-body p,
.testimonial-quote,
.pricing-header p,
.contact-panel p,
.contact-cta-card p {
    margin-top: 12px;
}

.hero-simple {
    position: relative;
    padding-top: 104px;
    padding-bottom: 56px;
    overflow: hidden;
}

.hero-simple::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

.hero-simple > .container {
    position: relative;
    z-index: 1;
}

.page-portfolio .hero-simple::before {
    background-image: linear-gradient(180deg, rgba(9, 14, 30, 0.76), rgba(9, 14, 30, 0.42) 62%, rgba(245, 241, 235, 0.96) 100%), linear-gradient(90deg, rgba(9, 14, 30, 0.84), rgba(9, 14, 30, 0.16)), url('../images/3d-network-communications-background-with-plexus-design.jpg');
}

.page-pricing .hero-simple::before {
    background-image: linear-gradient(180deg, rgba(9, 14, 30, 0.76), rgba(9, 14, 30, 0.42) 62%, rgba(245, 241, 235, 0.96) 100%), linear-gradient(90deg, rgba(9, 14, 30, 0.84), rgba(9, 14, 30, 0.14)), url('../images/man-using-digital-tablet-psd-mockup-smart-technology.jpg');
}

.page-contact .hero-simple::before {
    background-image: linear-gradient(180deg, rgba(9, 14, 30, 0.76), rgba(9, 14, 30, 0.42) 62%, rgba(245, 241, 235, 0.96) 100%), linear-gradient(90deg, rgba(9, 14, 30, 0.84), rgba(9, 14, 30, 0.16)), url('../images/teleworking-admin-using-laptop-filter-malicious-traffic-from-cybercriminals.jpg');
    background-position: center, center, center top;
}

.page-testimonials .hero-simple::before {
    background-image: linear-gradient(180deg, rgba(9, 14, 30, 0.76), rgba(9, 14, 30, 0.42) 62%, rgba(245, 241, 235, 0.96) 100%), linear-gradient(90deg, rgba(9, 14, 30, 0.84), rgba(9, 14, 30, 0.14)), url('../images/futuristic-presentation-by-businesswoman-white.jpg');
}

.page-portfolio .hero-simple h1,
.page-portfolio .hero-simple p,
.page-pricing .hero-simple h1,
.page-pricing .hero-simple p,
.page-contact .hero-simple h1,
.page-contact .hero-simple p,
.page-testimonials .hero-simple h1,
.page-testimonials .hero-simple p {
    color: #ffffff;
}

.portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 540px;
}

.portfolio-cover {
    aspect-ratio: 16 / 10;
    position: relative;
}

.portfolio-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.06));
}

.portfolio-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.portfolio-body p {
    flex: 1;
}

.card-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.access-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    margin-bottom: 12px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(22, 35, 61, 0.08);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.access-badge.is-granted {
    background: rgba(38, 128, 87, 0.14);
    color: #1d5d40;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: start;
}

.contact-panel {
    padding: 8px 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 32px;
    display: grid;
    gap: 20px;
}

.contact-list li {
    display: grid;
    gap: 4px;
}

.contact-list span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.contact-cta-card,
.form-card {
    padding: 28px;
}

.access-card {
    display: grid;
    gap: 18px;
}

.access-form {
    margin-top: 0;
}

.access-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.backend-shell {
    padding: 10px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.backend-utility {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.backend-menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px 12px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.backend-menu-toggle-lines {
    display: grid;
    gap: 4px;
}

.backend-menu-toggle-lines span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
}

.backend-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    display: grid;
    gap: 14px;
    min-width: 260px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(21, 27, 35, 0.16);
}

.backend-menu[hidden] {
    display: none;
}

.backend-brand {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.backend-session {
    display: grid;
    gap: 10px;
    margin: 0;
}

.backend-session span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.backend-page-title {
    display: grid;
    gap: 8px;
    max-width: 760px;
    padding: 32px 0 14px;
}

.backend-page-title h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.backend-page-title p {
    margin: 0;
    color: var(--muted);
}

.backend-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.backend-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.backend-resources-block {
    margin-top: 22px;
}

.backend-main {
    display: grid;
    gap: 20px;
}

.backend-editor {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 104px;
}

.backend-editor-full {
    position: static;
    top: auto;
}

.backend-form {
    margin-top: 0;
}

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

.backend-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.backend-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

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

.backend-dashboard-card {
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.backend-dashboard-card:hover {
    transform: translateY(-2px);
    border-color: rgba(247, 166, 0, 0.55);
    box-shadow: 0 16px 34px rgba(21, 27, 35, 0.1);
}

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

.backend-dashboard-card > span:last-child {
    align-self: end;
    color: var(--accent-strong);
    font-weight: 800;
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.backend-table-wrap {
    overflow-x: auto;
    padding: 0;
}

.backend-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.backend-table th,
.backend-table td {
    text-align: left;
    vertical-align: top;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
}

.backend-table th {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-strong);
    background: rgba(247, 166, 0, 0.06);
}

.backend-row-summary td {
    background: #fff;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.backend-row-summary.is-highlighted td {
    background: rgba(247, 166, 0, 0.18);
    box-shadow: inset 0 2px 0 rgba(247, 166, 0, 0.55), inset 0 -2px 0 rgba(247, 166, 0, 0.55);
}

.backend-row-detail td {
    background: rgba(247, 166, 0, 0.08);
}

.backend-detail-panel {
    display: grid;
    gap: 14px;
}

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

.backend-gear-toggle {
    min-width: 48px;
    font-size: 1.15rem;
    line-height: 1;
    padding: 10px 12px;
}

.backend-card {
    display: grid;
    gap: 18px;
}

.backend-card-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.backend-meta {
    margin: 0;
    display: grid;
    gap: 14px;
}

.backend-meta div {
    display: grid;
    gap: 4px;
}

.backend-meta dt {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.backend-meta dd {
    margin: 0;
    color: var(--text);
    overflow-wrap: anywhere;
}

.backend-target {
    font-size: 0.94rem;
}

.backend-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.backend-inline-form {
    margin: 0;
}

.backend-inline-note {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(247, 166, 0, 0.12);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
}

.backend-sidebar {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 104px;
}

.backend-checklist {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    display: grid;
    gap: 10px;
}

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.form-alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-top: 18px;
    font-weight: 600;
}

.form-alert-success {
    background: rgba(38, 128, 87, 0.14);
    border: 1px solid rgba(38, 128, 87, 0.24);
    color: #1d5d40;
}

.form-alert-error {
    background: rgba(173, 63, 63, 0.12);
    border: 1px solid rgba(173, 63, 63, 0.2);
    color: #8a2626;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(22, 35, 61, 0.12);
    background: #fff;
    padding: 14px 16px;
    color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(247, 166, 0, 0.7);
    box-shadow: 0 0 0 4px rgba(247, 166, 0, 0.14);
}

.privacy-copy p,
.privacy-copy a {
    color: var(--text);
}

.privacy-hero::before {
    background-image:
        linear-gradient(180deg, rgba(9, 14, 30, 0.82), rgba(9, 14, 30, 0.5) 62%, rgba(245, 241, 235, 0.96) 100%),
        linear-gradient(90deg, rgba(9, 14, 30, 0.72), rgba(9, 14, 30, 0.18)),
        url('../images/man-using-digital-tablet-psd-mockup-smart-technology.jpg');
    background-position: center, center, center;
}

.privacy-hero h1,
.privacy-hero p,
.privacy-hero .hero-copy {
    color: #ffffff;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.field-error {
    margin: -2px 0 0;
    color: #8a2626;
    font-size: 0.88rem;
    font-weight: 600;
}

.cta-panel {
    background: var(--surface-dark);
    color: #fff;
}

.cta-shell p,
.cta-shell h2 {
    color: #fff;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-benefits span::before {
    content: '○';
    color: var(--accent);
    margin-right: 8px;
}

.testimonial-card,
.pricing-card {
    padding: 28px;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text);
}

.testimonial-meta {
    display: grid;
    gap: 4px;
    margin-top: 18px;
}

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

.pricing-market-section {
    padding-bottom: 0;
}

.market-callout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 30px;
    border: 1px solid rgba(22, 35, 61, 0.08);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 166, 0, 0.12));
    box-shadow: var(--shadow);
}

.market-callout p {
    margin-top: 12px;
    max-width: 720px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
}

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

.restaurant-setup-card {
    min-height: 100%;
}

.restaurant-summary {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--surface-dark);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.restaurant-summary h2,
.restaurant-summary p {
    color: #ffffff;
}

.restaurant-summary-list {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.restaurant-summary-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.restaurant-summary-list span::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
}

.renewal-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
}

.pricing-card.is-featured {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(247, 166, 0, 0.2), rgba(255, 255, 255, 0.99) 38%);
    border: 2px solid rgba(247, 166, 0, 0.45);
    transform: translateY(-18px) scale(1.04);
    box-shadow: 0 34px 70px rgba(17, 26, 47, 0.18), 0 16px 32px rgba(247, 166, 0, 0.15);
}

.pricing-card.is-featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 22px;
    left: 22px;
    height: 5px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, #ffb21e, #f6a200);
}

.pricing-card.is-featured .price-tag {
    font-size: 2.25rem;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-bottom: 16px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffb21e, #f6a200);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.price-tag {
    margin-top: 16px;
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
    display: grid;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex: 0 0 auto;
}

.pricing-actions {
    display: grid;
    gap: 12px;
}

.pricing-notes-section {
    padding-top: 48px;
}

.pricing-notes {
    max-width: 860px;
}

.pricing-notes h2 {
    font-size: 1.5rem;
}

.pricing-notes ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.pricing-notes li {
    padding-left: 4px;
}

.site-footer {
    padding: 56px 0 36px;
    background: rgba(255, 255, 255, 0.65);
    border-top: 1px solid rgba(22, 35, 61, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr) minmax(160px, 0.6fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

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

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(22, 35, 61, 0.08);
    color: var(--muted);
}

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

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.92rem;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #2bd666, #18b24d);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 16px 28px rgba(34, 197, 94, 0.28);
    z-index: 40;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (min-width: 761px) {
    .nav-toggle {
        display: none !important;
    }

    .site-nav {
        position: static;
        display: flex !important;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 980px) {
    .three-up,
    .portfolio-grid,
    .pricing-grid,
    .restaurant-offer-grid,
    .backend-card-grid,
    .backend-dashboard-grid,
    .footer-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .backend-top-grid {
        grid-template-columns: 1fr;
    }

    .backend-form-grid {
        grid-template-columns: 1fr;
    }

    .backend-editor {
        position: static;
        top: auto;
    }

    .backend-sidebar {
        position: static;
    }

    .backend-meta-inline {
        grid-template-columns: 1fr;
    }

    .footer-grid,
    .contact-grid {
        gap: 28px;
    }

    .market-callout {
        grid-template-columns: 1fr;
    }

    .portfolio-card {
        min-height: 520px;
    }
}

@media (max-width: 760px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: var(--page-gutter);
        left: var(--page-gutter);
        display: grid;
        gap: 4px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(22, 35, 61, 0.08);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .nav-link.is-active::after {
        display: none;
    }

    .nav-link.is-active {
        background: rgba(247, 166, 0, 0.12);
    }

    .hero {
        min-height: auto;
    }

    .section {
        padding: 56px 0;
    }

    .hero-content,
    .hero-simple {
        padding-top: 88px;
        padding-bottom: 48px;
    }

    h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
        line-height: 1.02;
    }

    .hero-copy,
    .intro-section p,
    .portfolio-body p,
    .pricing-header p,
    .contact-panel p,
    .contact-cta-card p,
    .cta-shell p,
    .footer-column p {
        max-width: 32ch;
    }

    .three-up,
    .portfolio-grid,
    .pricing-grid,
    .renewal-pricing-grid,
    .restaurant-offer-grid,
    .backend-card-grid,
    .backend-dashboard-grid,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .access-actions,
    .backend-actions {
        width: 100%;
    }

    .backend-card-header,
    .backend-toolbar {
        align-items: start;
    }

    .portfolio-card {
        min-height: auto;
    }

    .brand {
        font-size: 1.7rem;
    }

    .button,
    .footer-actions .button {
        width: 100%;
        max-width: 100%;
    }

    .market-callout {
        padding: 22px;
    }

    .hero-actions,
    .footer-actions {
        width: 100%;
    }

    .feature-card,
    .testimonial-card,
    .pricing-card,
    .form-card,
    .contact-cta-card,
    .restaurant-summary,
    .portfolio-body {
        padding: 20px;
    }

    .pricing-card.is-featured {
        transform: none;
    }

    .whatsapp-float {
        right: var(--page-gutter);
        bottom: 20px;
    }
}
