:root {
    --cyan: #47afc0;
    --cyan-dark: #247b88;
    --mint: #66b69a;
    --green: #82c167;
    --lime: #c2d72d;
    --graphite: #25272a;
    --gray: #636466;
    --silver: #e7e8e9;
    --paper: #ffffff;
    --paper-soft: #f7f8f8;
    --paper-warm: #fbfbfa;
    --ink: #17191b;
    --muted: #5f666b;
    --muted-soft: #80888e;
    --line: rgba(23, 25, 27, 0.11);
    --line-strong: rgba(23, 25, 27, 0.18);
    --shadow-soft: 0 12px 32px rgba(23, 25, 27, 0.05);
    --shadow-strong: 0 24px 64px rgba(23, 25, 27, 0.12);
    --radius: 12px;
    --content: 1180px;
}

@font-face {
    font-family: "Maven Pro";
    src: url("logos/fonts/MavenPro-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Maven Pro";
    src: url("logos/fonts/MavenPro-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Maven Pro";
    src: url("logos/fonts/MavenPro-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Maven Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button {
    border: 0;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
    margin: 0;
}

.topbar {
    position: sticky;
    top: 16px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(calc(100% - 32px), var(--content));
    margin-inline: auto;
    padding: 10px 18px;
    border: 1px solid rgba(23, 25, 27, 0.08);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(18px);
    box-shadow: 0 8px 32px rgba(23, 25, 27, 0.06);
    transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

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

.brand-logo {
    width: 142px;
    height: auto;
}

.brand-line {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding-left: 14px;
    border-left: 1px solid var(--line);
    color: var(--gray);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    min-width: 0;
}

.nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 16px;
    border-radius: 100px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.1;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    background: var(--paper-soft);
    color: var(--ink);
    outline: none;
}

.nav .nav-cta {
    margin-left: 8px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
    background: var(--graphite);
    color: var(--paper);
    box-shadow: 0 8px 18px rgba(23, 25, 27, 0.16);
}

.menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 160ms ease, top 160ms ease;
}

.menu-toggle span:first-child {
    top: 16px;
}

.menu-toggle span:last-child {
    top: 25px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 720px;
    padding: 112px max(18px, calc((100% - var(--content)) / 2)) 76px;
    background:
        radial-gradient(circle at 15% 50%, rgba(71, 175, 192, 0.12), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(130, 193, 103, 0.12), transparent 40%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 42%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(180deg, #ffffff 0%, #f4f7f7 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(23, 25, 27, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 25, 27, 0.05) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: 0.36;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 96px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--paper));
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero-shot {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: var(--paper);
    object-fit: cover;
    box-shadow: var(--shadow-strong);
    opacity: 0.34;
}

.hero-shot-one {
    top: 98px;
    right: 5%;
    width: 530px;
    height: 360px;
    object-position: 50% 0;
}

.hero-shot-two {
    right: 21%;
    bottom: 132px;
    width: 380px;
    height: 260px;
    object-position: 50% 0;
}

.hero-shot-three {
    top: 246px;
    right: -54px;
    width: 330px;
    height: 430px;
    object-position: 50% 0;
}

.hero-inner,
.section,
.footer {
    width: min(calc(100% - 36px), var(--content));
    margin-inline: auto;
}

.hero-inner {
    width: min(100%, var(--content));
    margin: 0;
}

.hero-inner {
    position: relative;
    max-width: 780px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--cyan-dark);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 720px;
    color: var(--ink);
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: break-word;
}

h2 {
    max-width: 900px;
    color: var(--ink);
    font-size: 2.85rem;
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
    overflow-wrap: break-word;
}

h3 {
    color: var(--ink);
    font-size: 1.34rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
}

p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.hero-lead {
    width: 100%;
    max-width: 620px;
    margin-top: 30px;
    color: #3e464b;
    font-size: 1.23rem;
    line-height: 1.55;
    overflow-wrap: break-word;
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button-primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--ink) 0%, var(--graphite) 100%);
    color: var(--paper);
    box-shadow: 0 12px 24px rgba(23, 25, 27, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: linear-gradient(135deg, #000000 0%, var(--ink) 100%);
    box-shadow: 0 16px 32px rgba(23, 25, 27, 0.24);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--paper);
    border-color: rgba(23, 25, 27, 0.28);
    box-shadow: 0 10px 22px rgba(23, 25, 27, 0.08);
}

.proof-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 760px;
    margin-top: 58px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.proof-strip div {
    padding: 18px 20px 18px 0;
}

.proof-strip div + div {
    padding-left: 20px;
    border-left: 1px solid var(--line);
}

.proof-strip dt {
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.proof-strip dd {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.4;
}

.section {
    padding: 118px 0;
    scroll-margin-top: 92px;
}

.section-intro {
    display: grid;
    gap: 20px;
    max-width: 920px;
    margin-bottom: 58px;
}

.section-intro p:not(.eyebrow),
.solution-copy p,
.pricing-main p,
.contact-copy p {
    max-width: 760px;
}

.problem-section {
    padding-top: 104px;
}

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

.problem-item,
.usecase-card,
.work-card,
.method-list li,
.budget-grid article,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease;
}

.problem-item:hover,
.usecase-card:hover,
.method-list li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(23, 25, 27, 0.22);
}

.problem-item {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.problem-item span,
.method-list span,
.usecase-kicker {
    color: var(--cyan-dark);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
}

.solution-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 74px;
    align-items: start;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.solution-copy {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 22px;
}

.solution-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
}

.solution-list article {
    position: relative;
    display: grid;
    gap: 14px;
    padding: 0 0 32px 26px;
    border-bottom: 1px solid var(--line);
}

.solution-list article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 8px;
    height: 44px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--cyan), var(--green));
}

.usecases-section {
    background: var(--paper-soft);
    box-shadow: 50vw 0 0 var(--paper-soft), -50vw 0 0 var(--paper-soft);
}

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

.usecase-card {
    display: grid;
    gap: 18px;
    align-content: start;
    min-height: 100%;
    padding: 34px;
    background: var(--paper);
}

.usecase-card strong {
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.45;
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.work-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    min-height: 100%;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.work-card:hover,
.work-card:focus-within {
    border-color: rgba(23, 25, 27, 0.22);
    box-shadow: var(--shadow-strong);
    transform: translateY(-4px);
}

.work-media {
    overflow: hidden;
    min-height: 100%;
    border-right: 1px solid var(--line);
    background: var(--silver);
}

.work-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 50% 0;
    transition: transform 220ms ease, filter 220ms ease;
}

.work-card:hover .work-media img,
.work-card:focus-within .work-media img {
    filter: saturate(1.03) contrast(1.02);
    transform: scale(1.025);
}

.work-media-tall {
    align-self: center;
    height: 320px;
    min-height: 0;
}

.work-media-tall img {
    object-position: 50% 0;
}

.work-content {
    display: grid;
    align-content: start;
    gap: 22px;
    padding: 42px;
}

.work-type {
    color: var(--cyan-dark);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.work-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px 18px;
}

.work-price {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 7px 10px;
    border: 1px solid rgba(71, 175, 192, 0.24);
    border-radius: var(--radius);
    background: rgba(71, 175, 192, 0.07);
    color: var(--cyan-dark);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
}

.work-points {
    display: grid;
    gap: 18px;
    margin-top: 4px;
}

.work-points div {
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.work-points dt {
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.work-points dd {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.52;
}

.method-section {
    background: var(--paper-warm);
    box-shadow: 50vw 0 0 var(--paper-warm), -50vw 0 0 var(--paper-warm);
}

.method-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: method;
}

.method-list li {
    display: grid;
    gap: 18px;
    align-content: start;
    min-height: 210px;
    padding: 32px;
}

.pricing-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: start;
}

.pricing-main {
    display: grid;
    gap: 24px;
}

.rate-box {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    max-width: 420px;
    margin-top: 8px;
    padding: 28px;
    border: 1px solid rgba(71, 175, 192, 0.25);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff, #f5faf9);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.rate-box::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--cyan), var(--green));
}

.rate-box strong {
    color: var(--ink);
    font-size: 2.55rem;
    line-height: 1;
}

.rate-box span {
    color: var(--muted);
    line-height: 1.45;
}

.rate-box small {
    width: fit-content;
    padding: 8px 10px;
    border: 1px solid rgba(71, 175, 192, 0.26);
    border-radius: var(--radius);
    background: rgba(71, 175, 192, 0.08);
    color: var(--cyan-dark);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
}

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

.pricing-rules li {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.45;
}

.pricing-rules li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--cyan);
}

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

.budget-grid article {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 248px;
    padding: 26px;
    border-color: rgba(23, 25, 27, 0.1);
    background: linear-gradient(180deg, #ffffff, #fbfcfc);
    box-shadow: 0 14px 38px rgba(23, 25, 27, 0.07);
}

.budget-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: rgba(71, 175, 192, 0.14);
}

.budget-grid .budget-wide {
    grid-column: 1 / -1;
    min-height: 0;
}

.budget-grid .budget-featured {
    gap: 16px;
    padding: 30px;
    border-color: rgba(23, 25, 27, 0.18);
    background: linear-gradient(135deg, #17191b, #223235 62%, #2f3c31);
    color: var(--paper);
    box-shadow: 0 22px 54px rgba(23, 25, 27, 0.18);
}

.budget-grid .budget-featured::before {
    height: 5px;
    background: linear-gradient(90deg, var(--cyan), var(--green), var(--lime));
}

.package-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: var(--paper);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.package-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 34px;
}

.budget-price {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.budget-featured .budget-price,
.budget-featured h3 {
    color: var(--paper);
}

.budget-featured p,
.budget-featured .package-list li {
    color: rgba(255, 255, 255, 0.78);
}

.budget-grid article p {
    color: var(--muted);
    line-height: 1.5;
}

.budget-grid .budget-featured p {
    color: rgba(255, 255, 255, 0.78);
}

.package-list {
    display: grid;
    gap: 8px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.package-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.package-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--green);
}

.budget-featured .package-list li::before {
    background: var(--lime);
}

.faq-section {
    border-top: 1px solid var(--line);
    background: var(--paper-warm);
    box-shadow: 50vw 0 0 var(--paper-warm), -50vw 0 0 var(--paper-warm);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 20px 0;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--cyan-dark);
    font-size: 1.2rem;
    line-height: 1;
}

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

.faq-item p {
    max-width: 860px;
    padding: 0 48px 24px 0;
}

.contact-section {
    padding-bottom: 132px;
    border-top: 1px solid var(--line);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 76px;
    align-items: start;
}

.contact-copy {
    display: grid;
    gap: 22px;
}

.contact-copy a {
    color: var(--cyan-dark);
    font-weight: 700;
}

.contact-reassurance {
    display: grid;
    gap: 10px;
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
}

.contact-reassurance li {
    position: relative;
    padding-left: 20px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.45;
}

.contact-reassurance li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--green);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 38px;
}

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

.contact-form span {
    color: var(--gray);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f6f8f8;
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
    min-height: 158px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(71, 175, 192, 0.66);
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(71, 175, 192, 0.15);
}

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

.form-actions {
    margin-top: 4px;
}

.form-note {
    color: var(--muted-soft);
    font-size: 0.86rem;
    line-height: 1.45;
}

.consent-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    width: min(calc(100% - 36px), 680px);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--paper);
    box-shadow: var(--shadow-strong);
}

.consent-banner p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
}

.consent-actions {
    display: flex;
    gap: 10px;
}

.consent-banner .button {
    min-height: 42px;
    padding: 10px 14px;
    white-space: nowrap;
}

.footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 34px max(18px, calc((100% - var(--content)) / 2)) 42px;
    background: var(--ink);
    color: var(--paper);
}

.footer-brand img {
    width: 160px;
    height: auto;
}

.footer-contact {
    display: grid;
    gap: 8px;
    max-width: 680px;
    font-style: normal;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.45;
}

.footer-contact a {
    width: max-content;
    color: var(--paper);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.footer > a:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    color: var(--paper);
    font-weight: 700;
}

.reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 1180px) {
    .topbar {
        gap: 14px;
    }

    .brand-line {
        display: none;
    }

    .nav a {
        padding-inline: 9px;
        font-size: 0.82rem;
    }

    .hero-shot-one {
        right: -40px;
    }

    .hero-shot-two {
        right: 16%;
    }

    .usecase-grid,
    .method-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-card {
        grid-template-columns: 1fr;
    }

    .work-media {
        height: 240px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .work-media img {
        min-height: 240px;
    }
}

@media (max-width: 940px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 69px;
        right: 14px;
        left: 14px;
        display: grid;
        gap: 4px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-strong);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

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

    .nav a {
        justify-content: flex-start;
        min-height: 44px;
        padding: 12px;
        font-size: 0.96rem;
    }

    .nav .nav-cta {
        margin-left: 0;
        justify-content: center;
    }

    .hero {
        min-height: 0;
        padding-top: 62px;
        padding-bottom: 42px;
    }

    h1 {
        font-size: 3.15rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .hero-shot-one {
        top: 132px;
        right: -140px;
        width: 520px;
        height: 330px;
        opacity: 0.16;
    }

    .hero-shot-two,
    .hero-shot-three {
        display: none;
    }

    .problem-grid,
    .solution-section,
    .pricing-section,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .solution-copy {
        position: static;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip div {
        padding: 14px 0;
    }

    .proof-strip div + div {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

@media (max-width: 720px) {
    .topbar {
        padding-inline: 12px;
    }

    .brand-logo {
        width: 128px;
    }

    .hero {
        min-height: 0;
        padding: 44px 0 30px;
    }

    .hero::before {
        background-size: 38px 38px;
        opacity: 0.28;
    }

    .section {
        width: min(calc(100% - 24px), var(--content));
    }

    .hero-inner {
        width: min(calc(100% - 24px), var(--content));
        margin-inline: auto;
    }

    .hero-media {
        display: none;
    }

    h1 {
        font-size: 2.12rem;
        line-height: 1.08;
        text-wrap: auto;
    }

    h2 {
        font-size: 1.82rem;
        line-height: 1.08;
        text-wrap: auto;
    }

    h3 {
        font-size: 1.18rem;
    }

    .hero-lead {
        margin-top: 16px;
        font-size: 1rem;
    }

    .hero-actions,
    .form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
        min-height: 50px;
    }

    .section {
        padding: 54px 0;
        scroll-margin-top: 84px;
    }

    .section-intro {
        margin-bottom: 26px;
    }

    .problem-grid,
    .solution-list,
    .usecase-grid,
    .work-grid,
    .method-list,
    .budget-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .problem-item,
    .usecase-card,
    .method-list li,
    .budget-grid article {
        padding: 20px;
    }

    .budget-grid .budget-featured {
        padding: 22px;
    }

    .package-heading {
        align-items: flex-start;
    }

    .faq-item summary {
        min-height: 62px;
        font-size: 1rem;
    }

    .faq-item p {
        padding-right: 0;
    }

    .work-media {
        height: 178px;
    }

    .work-media img {
        min-height: 178px;
    }

    .work-content {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .rate-box strong {
        font-size: 1.9rem;
    }

    .footer {
        grid-template-columns: 1fr;
        align-items: start;
        padding-inline: 18px;
    }

    .footer-brand img {
        width: 145px;
    }

    .footer > a:last-child {
        width: 100%;
    }

    .consent-banner {
        right: 10px;
        bottom: 10px;
        grid-template-columns: 1fr;
        width: calc(100% - 20px);
    }

    .consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 1.82rem;
        line-height: 1.12;
    }

    .hero-lead {
        font-size: 0.96rem;
    }

    .eyebrow {
        font-size: 0.72rem;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 1.76rem;
    }

    h2 {
        font-size: 1.68rem;
    }

    .hero {
        padding-top: 38px;
    }

    .hero-shot-one {
        display: none;
    }

    .proof-strip dt {
        font-size: 1rem;
    }
}

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

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

.success-message {
    padding: 24px;
    background: rgba(130, 193, 103, 0.1);
    border: 1px solid var(--green);
    border-radius: var(--radius);
    text-align: center;
}

.success-message h3 {
    color: var(--green);
    margin-bottom: 8px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --paper: #121315;
        --paper-soft: #1a1c1e;
        --paper-warm: #17181a;
        --ink: #eaeced;
        --muted: #9ea5aa;
        --muted-soft: #70787e;
        --line: rgba(234, 236, 237, 0.12);
        --line-strong: rgba(234, 236, 237, 0.22);
        --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.4);
        --shadow-strong: 0 26px 70px rgba(0, 0, 0, 0.6);
        --silver: #2a2c2e;
        --graphite: #eaeced;
    }
    
    .hero {
        background:
            radial-gradient(circle at 15% 50%, rgba(71, 175, 192, 0.15), transparent 40%),
            radial-gradient(circle at 85% 30%, rgba(130, 193, 103, 0.15), transparent 40%),
            linear-gradient(90deg, rgba(18, 19, 21, 0.98) 0%, rgba(18, 19, 21, 0.94) 42%, rgba(18, 19, 21, 0.75) 100%),
            linear-gradient(180deg, #121315 0%, #17181a 100%);
    }

    .hero::before {
        background-image:
            linear-gradient(rgba(234, 236, 237, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(234, 236, 237, 0.05) 1px, transparent 1px);
        opacity: 0.15;
    }
    
    .hero::after {
        background: linear-gradient(180deg, rgba(18, 19, 21, 0), var(--paper));
    }
    
    .topbar {
        background: rgba(18, 19, 21, 0.88);
    }

    .proof-strip {
        background: rgba(18, 19, 21, 0.9);
    }
    
    .rate-box {
        background: linear-gradient(180deg, #1a1c1e, #17181a);
    }

    .button-secondary {
        background: rgba(18, 19, 21, 0.78);
    }

    .button-secondary:hover {
        background: var(--paper-soft);
    }

    .solution-list article::before {
        background: linear-gradient(180deg, var(--cyan-dark), var(--green));
    }

    .contact-card::before {
        background: linear-gradient(180deg, var(--cyan-dark), var(--green));
    }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

