:root {
    --bg: #f3efe8;
    --bg-soft: #fbfaf7;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: rgba(7, 31, 26, 0.82);
    --surface-line: rgba(11, 31, 27, 0.08);
    --surface-line-strong: rgba(11, 31, 27, 0.16);
    --text: #0f1c19;
    --text-soft: #5b6a64;
    --text-inverse: #eefaf4;
    --brand: #18c87d;
    --brand-strong: #0f9d63;
    --brand-deep: #0a3a2b;
    --accent: #ff9c4a;
    --accent-deep: #ff7e33;
    --shadow: 0 24px 60px rgba(9, 23, 20, 0.08);
    --shadow-strong: 0 30px 90px rgba(9, 23, 20, 0.18);
    --radius-sm: 18px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --radius-pill: 999px;
    --container: 1180px;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --qr-decor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cg stroke='%2318c87d' stroke-width='6' opacity='.72'%3E%3Crect x='10' y='10' width='28' height='28' rx='4'/%3E%3Crect x='82' y='10' width='28' height='28' rx='4'/%3E%3Crect x='10' y='82' width='28' height='28' rx='4'/%3E%3C/g%3E%3Cg fill='%23ff9c4a' opacity='.66'%3E%3Crect x='50' y='22' width='10' height='10' rx='2'/%3E%3Crect x='62' y='34' width='10' height='10' rx='2'/%3E%3Crect x='50' y='48' width='18' height='18' rx='3'/%3E%3Crect x='76' y='52' width='10' height='10' rx='2'/%3E%3Crect x='52' y='78' width='12' height='12' rx='2'/%3E%3Crect x='68' y='78' width='20' height='20' rx='3'/%3E%3C/g%3E%3C/svg%3E");
    --nfc-decor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cg stroke='%2318c87d' stroke-width='5' opacity='.76' stroke-linecap='round'%3E%3Cpath d='M24 62c0-22 18-40 40-40'/%3E%3Cpath d='M36 62c0-16 13-29 29-29'/%3E%3Cpath d='M48 62c0-9 7-17 17-17'/%3E%3C/g%3E%3Crect x='72' y='34' width='22' height='52' rx='8' stroke='%230a3a2b' stroke-width='4' opacity='.45'/%3E%3Ccircle cx='65' cy='62' r='6' fill='%23ff9c4a' opacity='.8'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 156, 74, 0.22), transparent 20%),
        radial-gradient(circle at 88% 14%, rgba(24, 200, 125, 0.18), transparent 22%),
        linear-gradient(180deg, #fcfaf4 0%, #f2ecdf 42%, #f6fbf8 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(9, 23, 20, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 23, 20, 0.032) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.32) 0 1.5px, transparent 1.5px);
    background-size: 110px 110px, 110px 110px, 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 72%);
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        var(--qr-decor) 7% 18% / 138px 138px no-repeat,
        var(--nfc-decor) 92% 14% / 158px 158px no-repeat,
        url("menu 2.webp") 103% 82% / 260px no-repeat,
        url("nfc 2.webp") -5% 76% / 220px no-repeat,
        radial-gradient(circle at 18% 30%, rgba(24, 200, 125, 0.08), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(255, 156, 74, 0.08), transparent 25%);
    opacity: 0.18;
    mix-blend-mode: multiply;
    filter: saturate(0.7) contrast(1.04);
}

body.nav-open {
    overflow: hidden;
}

main {
    display: block;
    overflow: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
    margin: 0;
}

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

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

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

button {
    cursor: pointer;
}

input,
textarea,
select {
    border: none;
    background: none;
}

::selection {
    background: rgba(24, 200, 125, 0.18);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--brand-deep);
    color: var(--text-inverse);
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

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

section {
    position: relative;
    padding: 76px 0;
}

.panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    box-shadow: 0 26px 62px rgba(9, 23, 20, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(20px) saturate(1.15);
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 42%),
        linear-gradient(180deg, transparent 50%, rgba(24, 200, 125, 0.06) 100%);
    pointer-events: none;
}

.panel::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: calc(var(--radius-md) - 12px);
    background:
        linear-gradient(90deg, rgba(24, 200, 125, 0.26) 0 42px, transparent 42px calc(100% - 42px), rgba(255, 156, 74, 0.22) calc(100% - 42px) 100%) top / 100% 1px no-repeat,
        linear-gradient(90deg, rgba(24, 200, 125, 0.18) 0 42px, transparent 42px calc(100% - 42px), rgba(255, 156, 74, 0.18) calc(100% - 42px) 100%) bottom / 100% 1px no-repeat,
        linear-gradient(180deg, rgba(24, 200, 125, 0.18) 0 42px, transparent 42px calc(100% - 42px), rgba(255, 156, 74, 0.18) calc(100% - 42px) 100%) left / 1px 100% no-repeat,
        linear-gradient(180deg, rgba(24, 200, 125, 0.18) 0 42px, transparent 42px calc(100% - 42px), rgba(255, 156, 74, 0.18) calc(100% - 42px) 100%) right / 1px 100% no-repeat;
    opacity: 0.44;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0.95rem 0;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
        rgba(8, 26, 23, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(22px) saturate(1.12);
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled::before {
    background: rgba(7, 22, 19, 0.92);
    box-shadow: 0 16px 48px rgba(3, 10, 9, 0.3);
    border-color: rgba(255, 255, 255, 0.12);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.brand img,
.footer-brand img {
    display: block;
    width: 220px;
    max-width: 100%;
    height: auto;
    border-radius: 28px;
    object-fit: cover;
    padding: 0.45rem 0.85rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.brand img {
    width: clamp(158px, 18vw, 220px);
}

.footer-brand img {
    width: min(220px, 100%);
}

.brand:hover img,
.footer-brand:hover img {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.nav-link {
    position: relative;
    padding: 0.7rem 0.1rem;
    color: rgba(238, 250, 244, 0.8);
    font-weight: 800;
    transition: color var(--transition), transform var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.is-active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #f6fffa;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.button,
.contact-link,
.inline-link {
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    overflow: hidden;
    isolation: isolate;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.24), transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    z-index: -1;
}

.button:hover::before {
    transform: translateX(120%);
}

.button:hover,
.inline-link:hover,
.contact-link:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #052118;
    background: linear-gradient(135deg, #31ef9d 0%, #1dd888 42%, #10a96a 100%);
    box-shadow: 0 20px 48px rgba(24, 200, 125, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-primary:hover {
    box-shadow: 0 24px 54px rgba(24, 200, 125, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.button-secondary {
    color: var(--text-inverse);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button-secondary:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.12));
}

.button-row,
.hero-actions,
.form-actions,
.policy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(238, 250, 244, 0.88);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.inner-hero .eyebrow,
.section-heading .eyebrow,
.faq-item .eyebrow,
.policy-content .eyebrow {
    background: rgba(24, 200, 125, 0.1);
    border-color: rgba(24, 200, 125, 0.12);
    color: var(--brand-deep);
}

.hero-title,
.section-title,
.summary-panel h2,
.surface-card h3,
.solution-content h3,
.portfolio-body h3,
.gallery-copy h3,
.form-card h2,
.contact-card h3,
.footer-column h3,
.policy-sidebar h2,
.policy-content h2,
.policy-content h3,
.cta-band h2 {
    font-family: "Sora", "Manrope", sans-serif;
    letter-spacing: -0.04em;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.6rem);
    line-height: 0.98;
    max-width: 12ch;
}

.hero-lead,
.page-copy,
.section-copy,
.summary-panel p,
.surface-card p,
.solution-content p,
.portfolio-body p,
.gallery-copy p,
.contact-card p,
.footer-copy,
.policy-sidebar p,
.policy-content p,
.policy-content li {
    color: var(--text-soft);
}

.page-hero {
    padding-top: 112px;
    padding-bottom: 86px;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 156, 74, 0.18), transparent 20%),
        radial-gradient(circle at 82% 22%, rgba(24, 200, 125, 0.14), transparent 22%),
        linear-gradient(135deg, #071e1a 0%, #0a2b24 42%, #0d3b31 100%);
    overflow: hidden;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::before {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -140px;
    background: radial-gradient(circle, rgba(24, 200, 125, 0.22) 0%, transparent 64%);
}

.page-hero::after {
    width: 420px;
    height: 420px;
    bottom: -150px;
    left: -110px;
    background: radial-gradient(circle, rgba(255, 156, 74, 0.16) 0%, transparent 68%);
}

.page-hero:not(.inner-hero) .hero-title,
.page-hero:not(.inner-hero) .hero-lead {
    color: var(--text-inverse);
}

.page-hero:not(.inner-hero) .hero-lead {
    color: rgba(238, 250, 244, 0.76);
}

.inner-hero {
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 156, 74, 0.14), transparent 18%),
        radial-gradient(circle at 88% 12%, rgba(24, 200, 125, 0.16), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.inner-hero .hero-title {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    max-width: 13ch;
}

.page-hero-grid,
.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 2.25rem;
    align-items: center;
}

.hero-copy,
.hero-showcase,
.summary-panel,
.form-card,
.contact-card,
.policy-content,
.policy-sidebar {
    position: relative;
    z-index: 1;
}

.hero-showcase {
    min-height: 620px;
}

.showcase-main,
.showcase-side {
    position: absolute;
    overflow: hidden;
}

.showcase-main {
    inset: 0 110px 120px 0;
    padding: 1rem;
}

.showcase-side {
    top: 68px;
    right: 0;
    width: 250px;
    padding: 0.85rem;
}

.showcase-main img,
.showcase-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 10px);
}

.showcase-main img {
    aspect-ratio: 16 / 14;
}

.showcase-side img {
    aspect-ratio: 5 / 6;
}

.showcase-caption,
.floating-note {
    position: absolute;
    border-radius: 24px;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-strong);
}

.showcase-caption {
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    padding: 1rem 1.15rem;
    background: rgba(7, 31, 26, 0.72);
    color: var(--text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-caption span,
.note-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.showcase-caption span {
    color: rgba(238, 250, 244, 0.72);
}

.showcase-caption strong,
.floating-note strong {
    font-size: 0.98rem;
    line-height: 1.5;
}

.floating-note {
    max-width: 300px;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-note:not(.accent) {
    background: rgba(255, 255, 255, 0.92);
}

.floating-note.accent {
    background: rgba(231, 255, 245, 0.94);
}

.note-top {
    left: 32px;
    bottom: 48px;
}

.note-bottom {
    right: 24px;
    bottom: -8px;
}

.note-label {
    color: var(--brand-deep);
}

.pill-row,
.trust-list,
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pill,
.trust-list span,
.portfolio-tags span,
.policy-meta span {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
}

.pill {
    color: rgba(238, 250, 244, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip {
    padding-top: 0;
}

.trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
    border: 1px solid rgba(11, 31, 27, 0.08);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.trust-strip-inner p {
    font-weight: 800;
}

.trust-strip-inner::before,
.cta-band-inner::before,
.footer-panel::before {
    content: "";
    position: absolute;
    inset: -18% 38% 58% -8%;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.4), transparent 68%);
    transform: rotate(6deg);
    pointer-events: none;
}

.trust-list span {
    color: var(--brand-deep);
    background: rgba(24, 200, 125, 0.08);
    border: 1px solid rgba(24, 200, 125, 0.1);
}

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

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.align-left {
    text-align: left;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.06;
    margin-bottom: 0.9rem;
}

.section-copy,
.hero-lead,
.page-copy {
    max-width: 42rem;
    font-size: 1.04rem;
}

.dual-grid,
.triple-grid,
.feature-grid,
.solution-grid,
.portfolio-grid,
.gallery-grid,
.contact-grid,
.footer-grid,
.policy-grid {
    display: grid;
    gap: 1.5rem;
}

.dual-grid,
.contact-grid,
.policy-grid,
.solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.triple-grid,
.feature-grid,
.portfolio-grid,
.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-card,
.summary-panel,
.form-card,
.contact-card {
    padding: 1.75rem;
}

.surface-card,
.solution-card,
.portfolio-card,
.gallery-card,
.summary-panel,
.form-card,
.contact-card {
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.surface-card:hover,
.solution-card:hover,
.portfolio-card:hover,
.gallery-card:hover,
.summary-panel:hover,
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.icon-chip,
.process-number,
.response-step,
.summary-list span {
    display: grid;
    place-items: center;
    font-weight: 800;
}

.icon-chip {
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(24, 200, 125, 0.18), rgba(255, 156, 74, 0.18));
    color: var(--brand-deep);
    font-family: "Sora", sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.surface-card h3,
.solution-content h3,
.portfolio-body h3,
.gallery-copy h3,
.summary-panel h2,
.form-card h2,
.contact-card h3,
.policy-sidebar h2,
.policy-content h2,
.policy-content h3 {
    margin: 0.9rem 0 0.6rem;
}

.summary-panel h2,
.form-card h2 {
    font-size: 1.46rem;
}

.summary-list,
.check-list,
.micro-list,
.footer-links,
.response-list,
.policy-links,
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.summary-list li,
.response-list li {
    display: flex;
    gap: 0.82rem;
    align-items: flex-start;
}

.summary-list span {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 14px;
    background: rgba(24, 200, 125, 0.14);
    color: var(--brand-deep);
    font-size: 0.84rem;
    flex: 0 0 auto;
}

.summary-list strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.12rem;
}

.solution-card,
.portfolio-card,
.gallery-card {
    display: flex;
    flex-direction: column;
}

.solution-image,
.portfolio-image {
    padding: 1rem 1rem 0;
}

.solution-image img,
.portfolio-image img {
    width: 100%;
    border-radius: 22px;
    background: #0a201b;
    box-shadow: 0 20px 44px rgba(8, 24, 20, 0.16);
}

.solution-image img {
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.portfolio-image img {
    aspect-ratio: 16 / 12;
    object-fit: cover;
}

.portfolio-image.is-logo img {
    object-fit: contain;
    padding: 1rem;
}

.solution-content,
.portfolio-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.95rem;
    padding: 1.5rem;
}

.check-list li,
.micro-list li,
.policy-list li {
    position: relative;
    padding-left: 1.45rem;
}

.check-list li::before,
.micro-list li::before,
.policy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: var(--brand);
}

.check-list li::before {
    width: 0.72rem;
    height: 0.72rem;
    top: 0.46rem;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 0 0 5px rgba(24, 200, 125, 0.12);
}

.inline-link,
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    color: var(--brand-deep);
}

.contact-card .contact-link {
    display: flex;
    width: fit-content;
}

.contact-card .contact-link + .contact-link {
    margin-top: 0.6rem;
}

.portfolio-actions {
    margin-top: auto;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}

.filter-button {
    padding: 0.78rem 1rem;
    border: 1px solid var(--surface-line-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text-soft);
    font-weight: 800;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.filter-button:hover,
.filter-button.is-active {
    background: linear-gradient(135deg, var(--brand-deep), #0f4d3b);
    color: var(--text-inverse);
    border-color: transparent;
    transform: translateY(-1px);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-top-left-radius: calc(var(--radius-md) - 1px);
    border-top-right-radius: calc(var(--radius-md) - 1px);
}

.gallery-copy {
    padding: 1.15rem 1.2rem 1.25rem;
}

.gallery-item[hidden] {
    display: none !important;
}

.contact-grid {
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 1rem;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

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

.field span {
    font-size: 0.95rem;
    font-weight: 800;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(11, 31, 27, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: rgba(24, 200, 125, 0.72);
    box-shadow: 0 0 0 4px rgba(24, 200, 125, 0.12);
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--text-soft) 50%),
        linear-gradient(135deg, var(--text-soft) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(1.15rem),
        calc(100% - 12px) calc(1.15rem);
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.response-step {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: rgba(24, 200, 125, 0.14);
    color: var(--brand-deep);
    font-size: 0.84rem;
    flex: 0 0 auto;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.35rem 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    font-family: "Sora", "Manrope", sans-serif;
    font-size: 1.04rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--brand-deep);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 0.95rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--surface-line);
}

.quote-section,
.faq-section {
    padding-top: 20px;
}

.quote-grid {
    align-items: stretch;
}

.quote-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 100%;
    padding: 1.7rem;
    background-blend-mode: screen, normal, normal;
}

.quote-card.is-qr {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 82% 20%, rgba(24, 200, 125, 0.16), transparent 28%),
        url("menu 2.webp") center / cover no-repeat;
}

.quote-card.is-nfc {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 84% 24%, rgba(255, 156, 74, 0.16), transparent 30%),
        url("nfc 1.webp") center / cover no-repeat;
}

.quote-card.is-custom {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 80% 22%, rgba(24, 200, 125, 0.12), transparent 26%),
        url("birthday.webp") center / cover no-repeat;
}

.quote-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(8, 36, 29, 0.08);
    border: 1px solid rgba(8, 36, 29, 0.08);
    color: var(--brand-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-card h3 {
    font-size: 1.36rem;
}

.quote-card .inline-link {
    margin-top: auto;
    width: fit-content;
}

.quote-meta,
.quote-note {
    color: var(--brand-deep);
    font-weight: 700;
}

.quote-note {
    margin-top: 1rem;
    max-width: 54rem;
}

.policy-grid {
    align-items: start;
}

.policy-sidebar,
.policy-content {
    padding: 1.7rem;
}

.policy-sidebar {
    position: sticky;
    top: 104px;
}

.policy-note {
    margin-top: 1.2rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(24, 200, 125, 0.1);
    color: var(--text);
    font-size: 0.95rem;
}

.policy-links a {
    font-weight: 700;
    color: var(--text-soft);
}

.policy-links a:hover {
    color: var(--brand-deep);
}

.policy-content {
    line-height: 1.75;
}

.policy-content h2 {
    font-size: 1.46rem;
}

.policy-content h3 {
    font-size: 1.04rem;
}

.policy-block {
    scroll-margin-top: 110px;
}

.policy-block + .policy-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--surface-line);
}

.policy-table-wrap {
    margin-top: 1rem;
    overflow-x: auto;
    border-radius: 20px;
    border: 1px solid var(--surface-line);
    background: rgba(255, 255, 255, 0.7);
}

.policy-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.policy-table th,
.policy-table td {
    padding: 0.95rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--surface-line);
}

.policy-table th {
    background: rgba(11, 31, 27, 0.05);
    font-size: 0.92rem;
}

.policy-meta span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(238, 250, 244, 0.9);
}

.inner-hero .policy-meta span {
    background: rgba(24, 200, 125, 0.08);
    border-color: rgba(24, 200, 125, 0.12);
    color: var(--brand-deep);
}

.cta-band {
    padding-top: 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding: 2.3rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 156, 74, 0.16), transparent 28%),
        radial-gradient(circle at 80% 30%, rgba(24, 200, 125, 0.2), transparent 24%),
        linear-gradient(135deg, #081f1a 0%, #0a3027 46%, #0b4134 100%);
    color: var(--text-inverse);
    box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.cta-band h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.05;
    margin-bottom: 0.55rem;
}

.cta-band p {
    color: rgba(238, 250, 244, 0.78);
    max-width: 38rem;
}

.site-footer {
    padding: 36px 0 48px;
}

.footer-panel {
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(8, 28, 23, 0.98), rgba(11, 48, 39, 0.96));
    color: var(--text-inverse);
    box-shadow: var(--shadow-strong);
}

.footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
}

.footer-copy {
    max-width: 28rem;
    margin-top: 0.95rem;
    color: rgba(238, 250, 244, 0.72);
}

.footer-brand strong {
    color: #ffffff;
}

.footer-brand small {
    color: rgba(238, 250, 244, 0.7);
    font-weight: 700;
}

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

.footer-links {
    gap: 0.56rem;
}

.footer-links a,
.footer-links span {
    color: rgba(238, 250, 244, 0.72);
    font-weight: 700;
}

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

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(238, 250, 244, 0.56);
    font-size: 0.95rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.is-filtering .gallery-item,
.is-filtering .portfolio-card,
.is-filtering .surface-card {
    pointer-events: none;
}

@media (max-width: 1100px) {
    .page-hero-grid,
    .hero-grid,
    .solution-grid,
    .contact-grid,
    .policy-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .triple-grid,
    .feature-grid,
    .portfolio-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-showcase {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .showcase-main,
    .showcase-side,
    .floating-note {
        position: static;
    }

    .showcase-main,
    .showcase-side {
        padding: 0.9rem;
    }

    .showcase-main img,
    .showcase-side img {
        aspect-ratio: 16 / 12;
    }

    .policy-sidebar {
        position: static;
    }

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

@media (max-width: 860px) {
    .site-header {
        padding: 0.8rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-shell {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 1rem;
        border-radius: 28px;
        background: rgba(8, 26, 23, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    }

    .nav-shell.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 0.85rem 0.2rem;
    }

    .nav-cta {
        width: 100%;
        margin-top: 0.4rem;
    }

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

@media (max-width: 640px) {
    section {
        padding: 60px 0;
    }

    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.8rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 9vw, 2.4rem);
    }

    .triple-grid,
    .feature-grid,
    .portfolio-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .surface-card,
    .summary-panel,
    .form-card,
    .contact-card,
    .policy-sidebar,
    .policy-content,
    .cta-band-inner,
    .footer-panel {
        padding: 1.4rem;
    }

    .button-row,
    .hero-actions,
    .form-actions {
        width: 100%;
    }

    .button,
    .button-primary,
    .button-secondary {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
