:root {
    --blue-950: #000a30;
    --blue-925: #00114a;
    --blue-900: #071b5b;
    --blue-800: #00358f;
    --blue-700: #0096ff;
    --cyan: #19a9ff;
    --yellow: #ffc400;
    --yellow-soft: #ffe064;
    --magenta: #ff0f68;
    --white: #ffffff;
    --soft: #f7f8fa;
    --soft-blue: #eef4ff;
    --ink: #111827;
    --muted: #5b6475;
    --line: rgba(7, 27, 91, 0.08);
    --glass-line: rgba(255, 255, 255, 0.12);
    --shadow-premium: 0 24px 64px rgba(0, 10, 48, 0.06);
    --shadow-card: 0 12px 32px rgba(0, 10, 48, 0.04);
    --radius: 24px;
    --radius-lg: 28px;
    --container: 1180px;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 16% 8%, rgba(25, 169, 255, 0.03), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(255, 196, 0, 0.02), transparent 24%),
        var(--white);
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    position: fixed;
    content: "";
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        linear-gradient(90deg, rgba(7, 27, 91, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(7, 27, 91, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
}

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

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

h1,
h2,
h3 {
    margin: 0;
    font-family: "Poppins", Arial, sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.42rem, 3.85vw, 3.72rem);
    font-weight: 600;
    line-height: 1.1;
}

h1 span {
    display: block;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
}

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

p {
    margin: 0;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    max-width: 100vw;
    padding: 16px 0;
    transition: padding 500ms var(--ease), background 500ms var(--ease), border-color 500ms var(--ease);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 56px;
    max-width: 100%;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: min-height 500ms var(--ease), background 500ms var(--ease), border-color 500ms var(--ease), box-shadow 500ms var(--ease);
}

.brand {
    display: inline-flex;
    align-items: center;
    border-radius: 18px;
}

.brand-logo {
    width: auto;
    height: 52px;
    border-radius: 0;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
    transition: height 360ms var(--ease), transform 360ms var(--ease);
}

.brand-logo-light {
    display: none;
}

.brand-logo-dark {
    display: block;
}

.header-scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
}

.header-scrolled .header-shell {
    min-height: 56px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.header-scrolled .brand-logo {
    height: 46px;
    filter: none;
}

.header-scrolled .brand-logo-light {
    display: block;
}

.header-scrolled .brand-logo-dark {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.header-scrolled .site-nav {
    color: var(--blue-900);
}

.site-nav a {
    position: relative;
    padding: 8px 0;
}

.site-nav a::after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--magenta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms var(--ease);
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.btn,
.btn-whatsapp {
    position: relative;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 0 28px;
    cursor: pointer;
    font-size: 0.97rem;
    font-weight: 720;
    text-align: center;
    overflow: hidden;
    transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}

.btn::before,
.btn-whatsapp::before {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.34) 44%, transparent 74%);
    transform: translateX(-125%);
    transition: transform 620ms var(--ease);
}

.btn:hover::before,
.btn-whatsapp:hover::before {
    transform: translateX(125%);
}

.btn-yellow {
    color: var(--blue-900);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
    box-shadow: 0 18px 42px rgba(245, 196, 0, 0.25);
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(245, 196, 0, 0.32);
}

.btn-outline {
    color: var(--blue-900);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(7, 27, 91, 0.18);
    box-shadow: 0 12px 28px rgba(7, 27, 91, 0.06);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--blue-900);
    border-color: var(--blue-900);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(7, 27, 91, 0.2);
}

.menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    background: var(--yellow);
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(245, 196, 0, 0.24);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--blue-900);
    transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: #00071f;
}

.hero::-webkit-scrollbar {
    display: none;
}
.hero {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-media,
.hero-wash,
.hero-texture,
.hero-vignette,
.hero-light-beam,
.hero-foreground,
.hero-glow {
    position: absolute;
    pointer-events: none;
}

.hero-media {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.01);
    filter: saturate(1.02) contrast(1.02);
    background-image: url("../img/hero-background.webp"), url("../img/hero-background.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
    .hero-media {
        background-attachment: fixed;
    }
}

.hero-wash {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 7, 31, 0.84) 0%, rgba(0, 10, 48, 0.66) 43%, rgba(0, 10, 48, 0.28) 100%),
        linear-gradient(180deg, rgba(0, 7, 31, 0.42), rgba(0, 7, 31, 0.72));
}

.hero-texture {
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 80%);
}

.hero-vignette,
.hero-light-beam,
.hero-glow {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 56px;
    padding: 112px 0 54px;
}

.hero-copy {
    max-width: 760px;
    padding-top: 0;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-bottom: 16px;
    padding: 0 14px;
    border: 1px solid rgba(25, 169, 255, 0.28);
    border-radius: 999px;
    color: rgba(255, 224, 100, 0.95);
    background: linear-gradient(90deg, rgba(255, 196, 0, 0.09), rgba(255, 255, 255, 0.055));
    backdrop-filter: blur(14px);
    font-size: 0.72rem;
    font-weight: 740;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-strokes {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.brand-strokes span {
    display: block;
    width: 72px;
    height: 5px;
    border-radius: 999px;
    box-shadow: 0 0 18px currentColor;
}

.brand-strokes span:nth-child(1) {
    color: var(--cyan);
    background: var(--cyan);
}

.brand-strokes span:nth-child(2) {
    color: var(--yellow);
    background: var(--yellow);
}

.brand-strokes span:nth-child(3) {
    color: var(--magenta);
    background: var(--magenta);
}

.hero-copy p {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.05rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    font-weight: 400;
}

.hero-bullets {
    display: grid;
    gap: 7px;
    max-width: 650px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.hero-bullets li {
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 570;
    line-height: 1.34;
}

.hero-bullets li::before {
    position: absolute;
    content: "✓";
    left: 0;
    top: 0;
    color: var(--yellow);
    text-shadow: 0 0 18px rgba(255, 196, 0, 0.5);
    font-weight: 900;
}

.hero-social-proof {
    display: inline-flex;
    width: fit-content;
    margin-top: 14px !important;
    padding: 10px 14px;
    border-left: 3px solid var(--yellow);
    border-radius: 0 16px 16px 0;
    color: rgba(255, 255, 255, 0.9) !important;
    background: linear-gradient(90deg, rgba(255, 196, 0, 0.12), rgba(255, 255, 255, 0.04));
    font-size: 0.96rem !important;
    font-weight: 680 !important;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-note {
    max-width: 270px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.91rem;
    line-height: 1.5;
}

.hero-proof {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-proof::before {
    display: none;
}

.hero-form {
    position: relative;
    z-index: 4;
    right: auto;
    top: auto;
    width: min(400px, 100%);
    margin-left: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-premium);
    transform: none;
}

.hero-form::before {
    display: none;
}

.hero-form h2 {
    color: var(--blue-900);
    font-size: clamp(1.28rem, 1.72vw, 1.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-form > p {
    margin-top: 8px;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.5;
}

.hero-form .field-group {
    margin-bottom: 6px;
}

.hero-form .field-group label {
    margin-bottom: 6px;
    font-size: 0.82rem;
}

.hero-form .field-group input,
.hero-form .field-group select {
    min-height: 44px;
    border-radius: 14px;
}

.hero-form .btn-whatsapp {
    min-height: 46px;
    margin-top: 4px;
}

.floating-seal {
    display: none;
}

.editorial-marquee {
    position: relative;
    z-index: 6;
    overflow: hidden;
    margin-top: -74px;
    padding: 18px 0;
    background:
        linear-gradient(90deg, rgba(25, 169, 255, 0.2), rgba(255, 196, 0, 0.22), rgba(255, 15, 104, 0.18)),
        #00071f;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 46px rgba(0, 10, 48, 0.18);
}

.marquee-fade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, #00071f 0%, rgba(0, 7, 31, 0) 10%, rgba(0, 7, 31, 0) 90%, #00071f 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: none;
}

.editorial-marquee:hover .marquee-track {
    animation-play-state: running;
}

.marquee-line {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 16px;
    padding-right: 16px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-line span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    gap: 12px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

.marquee-line span:nth-child(3n + 1) {
    color: #8fe0ff;
    background: rgba(25, 169, 255, 0.16);
}

.marquee-line span:nth-child(3n + 2) {
    color: #ffe064;
    background: rgba(255, 196, 0, 0.18);
}

.marquee-line span:nth-child(3n) {
    color: #ff8bb8;
    background: rgba(255, 15, 104, 0.18);
}

.marquee-line span::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
}

@keyframes editorialMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.section {
    position: relative;
    padding: 180px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hide scrollbar for sections to keep it clean */
.section::-webkit-scrollbar {
    display: none;
}
.section {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue-700);
    font-size: 0.74rem;
    font-weight: 720;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--magenta));
}

.section-copy p,
.portfolio-heading p,
.quote-copy p,
.about-layout p {
    color: var(--muted);
    font-size: 1.07rem;
    line-height: 1.78;
    font-weight: 430;
}

.section-copy p,
.portfolio-heading p {
    max-width: 640px;
    margin-top: 24px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 120px;
    align-items: center;
}

.section-copy .btn {
    margin-top: 34px;
}

.problem-section {
    background:
        radial-gradient(circle at 8% 20%, rgba(13, 71, 161, 0.1), transparent 28%),
        radial-gradient(circle at 92% 70%, rgba(255, 196, 0, 0.06), transparent 28%),
        linear-gradient(180deg, var(--white), #fbfcff);
}

.problem-section::after {
    position: absolute;
    content: "";
    right: -120px;
    top: 90px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(7, 27, 91, 0.06);
    border-radius: 50%;
}

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

.mini-card,
.benefit-card,
.step-card,
.faq-item {
    position: relative;
    border: 1px solid rgba(7, 27, 91, 0.08);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(252, 253, 255, 0.98)),
        radial-gradient(circle at 100% 0%, rgba(25, 169, 255, 0.05), transparent 30%);
    box-shadow: 
        0 10px 30px rgba(7, 27, 91, 0.04),
        0 24px 64px rgba(7, 27, 91, 0.08);
    transition: all 400ms var(--ease);
}

.mini-card::before,
.benefit-card::before,
.step-card::after {
    position: absolute;
    content: "";
    inset: 14px;
    border-radius: calc(var(--radius) - 10px);
    border: 1px solid rgba(7, 27, 91, 0.035);
    pointer-events: none;
}

.mini-card:hover,
.benefit-card:hover,
.step-card:hover,
.faq-item:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 71, 161, 0.2);
    box-shadow: 0 26px 70px rgba(7, 27, 91, 0.16);
}

.mini-card {
    min-height: 180px;
    padding: 24px;
    overflow: hidden;
}

.mini-card h3 {
    color: var(--blue-900);
}

.mini-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.mini-card:nth-child(even) {
    transform: translateY(28px);
}

.mini-card:nth-child(even):hover {
    transform: translateY(20px);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 34px;
    border-radius: 16px;
    color: var(--blue-900);
    background: linear-gradient(135deg, rgba(245, 196, 0, 0.34), rgba(245, 196, 0, 0.12));
    font-size: 0.86rem;
    font-weight: 760;
}

.solution-section {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(255, 45, 122, 0.08), transparent 35%),
        radial-gradient(circle at 16% 84%, rgba(25, 169, 255, 0.08), transparent 34%),
        linear-gradient(180deg, #04113d 0%, #071b5b 100%);
}

.solution-section::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
}

/* Orbit removed for minimalism */

.solution-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
    gap: clamp(70px, 9vw, 132px);
    align-items: center;
}

.solution-panel {
    position: relative;
    max-width: 720px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.solution-panel::before {
    display: none;
}

.solution-kicker {
    display: block;
    margin-bottom: 28px;
    color: rgba(255, 224, 100, 0.86);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.solution-panel h2 {
    max-width: 680px;
    font-size: clamp(2.1rem, 4.2vw, 4.1rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.solution-panel p {
    max-width: 620px;
    margin: 32px 0 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
}

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

.production-marks li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.96rem;
    line-height: 1.5;
}

.production-marks li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 1px;
    background: rgba(255, 224, 100, 0.78);
}

.link-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: rgba(255, 224, 100, 0.95);
    background: transparent;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0;
    transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.link-cta::after {
    content: "→";
    transition: transform 260ms var(--ease);
}

.link-cta:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.link-cta:hover::after {
    transform: translateX(4px);
}

.differentials {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.diff-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    min-height: 132px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: color 280ms var(--ease), transform 280ms var(--ease);
}

.diff-item:hover {
    transform: translateY(-2px);
}

.diff-item strong,
.diff-item span {
    display: block;
}

.diff-item strong {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.18rem, 1.9vw, 1.65rem);
    font-weight: 560;
    letter-spacing: -0.02em;
    line-height: 1.18;
}

.diff-item span {
    color: rgba(255, 224, 100, 0.78);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.4;
}

.benefits-section,
.process-section,
.faq-section {
    background:
        radial-gradient(circle at 85% 12%, rgba(13, 71, 161, 0.04), transparent 30%),
        var(--white);
}

.section-heading {
    max-width: 860px;
    margin-bottom: 54px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.benefit-card {
    position: relative;
    min-height: 208px;
    padding: 34px;
    overflow: hidden;
}

/* Straight grid, no offsets */

.benefit-card::after {
    position: absolute;
    content: "";
    width: 92px;
    height: 92px;
    right: -30px;
    top: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 196, 0, 0.2), transparent 68%);
}

.benefit-card h3 {
    margin-bottom: 13px;
    color: var(--blue-900);
}

.benefit-card p,
.step-card p {
    color: var(--muted);
    line-height: 1.68;
}

/* ==========================================================================
   Editorial Portfolio Showcase
   ========================================================================== */

.editorial-portfolio-section {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(13, 71, 161, 0.08), transparent 34%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.editorial-portfolio-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.editorial-portfolio-content {
    max-width: 480px;
}

.editorial-portfolio-content h2 {
    margin-bottom: 24px;
}

.editorial-portfolio-hero {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(7, 27, 91, 0.12);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

.editorial-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.editorial-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.editorial-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(7, 27, 91, 0.06);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.editorial-card:hover .editorial-card-image {
    box-shadow: 0 20px 48px rgba(7, 27, 91, 0.12);
    transform: translateY(-4px);
}

.editorial-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-card:hover .editorial-card-image img {
    transform: scale(1.05);
}

.editorial-card-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--blue-900);
    letter-spacing: -0.01em;
}

@media (max-width: 991px) {
    .editorial-portfolio-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .editorial-portfolio-content {
        max-width: 100%;
    }
    
    .editorial-portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .editorial-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-image-wrapper {
        border-radius: 16px;
    }
    
    .editorial-card-image {
        aspect-ratio: 4/3;
    }
}


.sublimation-showcase {
    position: relative;
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    width: min(calc(100% - 44px), var(--container));
    margin: 110px auto 0;
    overflow: hidden;
    border-radius: 8px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 18%, rgba(25, 169, 255, 0.16), transparent 28%),
        #010b24;
    box-shadow: 0 34px 96px rgba(0, 10, 48, 0.18);
}

.sublimation-showcase::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(1, 11, 36, 0.98) 0%, rgba(1, 11, 36, 0.84) 34%, rgba(1, 11, 36, 0.08) 68%, rgba(1, 11, 36, 0.18) 100%),
        linear-gradient(180deg, rgba(1, 11, 36, 0.08), rgba(1, 11, 36, 0.58));
}

.sublimation-copy {
    position: relative;
    z-index: 3;
    align-self: center;
    max-width: 520px;
    padding: clamp(44px, 5.6vw, 78px);
    padding-left: clamp(52px, 6.4vw, 88px);
}

.sublimation-copy span {
    display: block;
    margin-bottom: 24px;
    color: rgba(255, 224, 100, 0.86);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sublimation-copy h3 {
    color: var(--white);
    font-size: clamp(2rem, 4.2vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.sublimation-copy p {
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.74;
}

.sublimation-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    color: rgba(255, 224, 100, 0.95);
    font-size: 0.98rem;
    font-weight: 600;
    transition: color 260ms var(--ease), transform 260ms var(--ease);
}

.sublimation-link::after {
    content: "→";
    transition: transform 260ms var(--ease);
}

.sublimation-link:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.sublimation-link:hover::after {
    transform: translateX(4px);
}

.sublimation-media {
    position: absolute;
    inset: 0;
    margin: 0;
}

.sublimation-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: saturate(1.02) contrast(1.02);
}

.link-minimal {
    display: inline-flex;
    align-items: center;
    color: var(--blue-900);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 300ms var(--ease);
}

.link-minimal:hover {
    color: var(--blue-700);
}

/* Removed old portfolio-grid and portfolio-card */

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    position: relative;
}

.steps::before {
    position: absolute;
    content: "";
    left: 8%;
    right: 8%;
    top: 57px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(7, 27, 91, 0.16), rgba(255, 196, 0, 0.42), rgba(7, 27, 91, 0.16), transparent);
}

.step-card {
    position: relative;
    min-height: 230px;
    padding: 32px;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 196, 0, 0.11), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.92));
}

.step-card::before {
    display: none;
}

.step-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    border-radius: 18px;
    color: var(--blue-900);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(245, 196, 0, 0.22);
}

.step-card h3 {
    margin-bottom: 10px;
    color: var(--blue-900);
}

.about-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 196, 0, 0.13), transparent 24%),
        radial-gradient(circle at 88% 60%, rgba(25, 169, 255, 0.18), transparent 30%),
        linear-gradient(135deg, #00071f, var(--blue-925) 54%, #00358f);
}

.about-section::-webkit-scrollbar {
    display: none;
}
.about-section {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.about-section::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 104px 104px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, transparent 88%);
}

.about-section::after {
    position: absolute;
    content: "";
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.about-section .section-kicker {
    color: var(--yellow);
}

.about-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(300px, 1fr);
    gap: 88px;
    align-items: center;
}

.about-copy {
    display: grid;
    gap: 30px;
}

.about-layout p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.identity-values {
    display: grid;
    gap: 14px;
}

.identity-values span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.07);
    font-weight: 680;
    text-transform: uppercase;
    letter-spacing: 0;
    backdrop-filter: blur(12px);
}

.identity-values span::before {
    content: "";
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 3px solid currentColor;
    border-radius: 8px;
    box-shadow: 0 0 18px currentColor;
}

.identity-values .value-cyan {
    color: #27b5ff;
}

.identity-values .value-yellow {
    color: var(--yellow);
}

.identity-values .value-magenta {
    color: var(--magenta);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1.18fr);
    gap: 82px;
}

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

.faq-item {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 252, 255, 0.93));
}

.faq-question {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    color: var(--blue-900);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-weight: 650;
}

.faq-question span {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 45, 122, 0.08);
    transition: transform 280ms var(--ease), background 280ms var(--ease);
}

.faq-question span::before,
.faq-question span::after {
    position: absolute;
    content: "";
    left: 8px;
    right: 8px;
    top: 13px;
    height: 2px;
    border-radius: 99px;
    background: var(--magenta);
}

.faq-question span::after {
    transform: rotate(90deg);
    transition: transform 280ms var(--ease);
}

.faq-item.is-open .faq-question span {
    transform: rotate(180deg);
    background: rgba(245, 196, 0, 0.16);
}

.faq-item.is-open .faq-question span::after {
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 360ms var(--ease);
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--muted);
}

.quote-section {
    position: relative;
    overflow: hidden;
    padding: 146px 0;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 24%, rgba(255, 196, 0, 0.2), transparent 28%),
        radial-gradient(circle at 12% 78%, rgba(255, 15, 104, 0.14), transparent 26%),
        radial-gradient(circle at 80% 72%, rgba(25, 169, 255, 0.2), transparent 26%),
        linear-gradient(135deg, #00071f 0%, var(--blue-925) 52%, #00358f 100%);
}

.quote-section::-webkit-scrollbar {
    display: none;
}
.quote-section {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.quote-section::before {
    position: absolute;
    content: "";
    inset: 0;
    opacity: 0.17;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 86px 86px;
}

.quote-section::after {
    position: absolute;
    content: "";
    right: -18%;
    bottom: -32%;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 196, 0, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(25, 169, 255, 0.13);
}

.quote-accent {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.78;
}

.quote-accent-yellow {
    width: 230px;
    height: 230px;
    right: 8%;
    top: 70px;
    background: rgba(245, 196, 0, 0.16);
}

.quote-accent-magenta {
    width: 170px;
    height: 170px;
    left: 7%;
    bottom: 80px;
    background: rgba(255, 45, 122, 0.15);
}

.quote-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.72fr);
    gap: 48px;
    align-items: center;
}

.quote-copy {
    color: var(--white);
}

.quote-copy .section-kicker {
    color: var(--yellow);
}

.quote-copy p {
    max-width: 650px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.78);
}

.quote-form {
    position: relative;
    padding: clamp(34px, 4.4vw, 58px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 36px;
    background:
        radial-gradient(circle at 96% 0%, rgba(25, 169, 255, 0.13), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(250, 252, 255, 0.94));
    box-shadow: 0 46px 126px rgba(0, 0, 0, 0.36), 0 0 52px rgba(25, 169, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.quote-form::before {
    position: absolute;
    content: "";
    inset: 16px;
    border: 1px solid rgba(7, 27, 91, 0.055);
    border-radius: 24px;
    pointer-events: none;
}

.field-group {
    margin-bottom: 18px;
}

.field-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--blue-900);
    font-size: 0.92rem;
    font-weight: 640;
}

.field-group input,
.field-group select {
    width: 100%;
    min-height: 62px;
    padding: 0 18px;
    border: 1px solid rgba(7, 27, 91, 0.16);
    border-radius: 19px;
    color: var(--ink);
    background: #fbfcff;
    transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease), transform 260ms var(--ease);
}

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

.field-group input:focus,
.field-group select:focus {
    border-color: var(--blue-700);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(13, 71, 161, 0.12), 0 16px 32px rgba(7, 27, 91, 0.08);
    outline: none;
    transform: translateY(-1px);
}

.field-group input.is-invalid,
.field-group select.is-invalid {
    border-color: var(--magenta);
}

.field-error {
    display: block;
    min-height: 20px;
    margin-top: 6px;
    color: #b5124c;
    font-size: 0.88rem;
}

.btn-whatsapp {
    width: 100%;
    min-height: 62px;
    color: var(--white);
    background: linear-gradient(135deg, #1fb85a, #25d366 54%, #5ee487);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:disabled {
    cursor: wait;
    opacity: 0.72;
}

.form-status {
    min-height: 22px;
    margin-top: 14px;
    color: var(--blue-900);
    font-weight: 650;
    text-align: center;
}

.form-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
}

.site-footer {
    padding: 58px 0;
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(90deg, rgba(25, 169, 255, 0.06), transparent 28%, rgba(255, 196, 0, 0.035)),
        #00071f;
}

.footer-layout {
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr) minmax(240px, 0.56fr);
    gap: 36px;
    align-items: center;
}

.footer-logo {
    width: 190px;
    border-radius: 0;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
}

.site-footer strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 750;
}

.footer-copy {
    justify-self: end;
    max-width: 285px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.reveal,
.hero-sequence {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 860ms var(--ease), transform 860ms var(--ease);
}

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

.hero-form.hero-sequence {
    transform: translateY(30px);
}

.hero-form.hero-sequence.is-visible {
    transform: translateY(0);
}

.benefit-card.reveal.is-visible:nth-child(2),
.benefit-card.reveal.is-visible:nth-child(5) {
    transform: translateY(26px);
}

.benefit-card.reveal.is-visible:nth-child(2):hover,
.benefit-card.reveal.is-visible:nth-child(5):hover {
    transform: translateY(18px);
}

.hero-sequence:nth-child(1) {
    transition-delay: 80ms;
}

.hero-sequence:nth-child(2) {
    transition-delay: 180ms;
}

.hero-sequence:nth-child(3) {
    transition-delay: 280ms;
}

.hero-sequence:nth-child(4) {
    transition-delay: 380ms;
}

.hero-sequence:nth-child(5) {
    transition-delay: 480ms;
}

.hero-sequence:nth-child(6) {
    transition-delay: 580ms;
}

.hero-sequence:nth-child(7) {
    transition-delay: 680ms;
}

.stagger-group .reveal:nth-child(1) {
    transition-delay: 60ms;
}

.stagger-group .reveal:nth-child(2) {
    transition-delay: 130ms;
}

.stagger-group .reveal:nth-child(3) {
    transition-delay: 200ms;
}

.stagger-group .reveal:nth-child(4) {
    transition-delay: 270ms;
}

.stagger-group .reveal:nth-child(5) {
    transition-delay: 340ms;
}

.stagger-group .reveal:nth-child(6) {
    transition-delay: 410ms;
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .hero-sequence {
        opacity: 1;
        transform: none !important;
    }

    .marquee-track {
        animation: editorialMarquee 16s linear infinite;
    }
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
    .hero-light-beam {
        animation: lightBeamDrift 9s ease-in-out infinite alternate;
    }

    .seal-one,
    .seal-three {
        animation: sealFloat 5.4s ease-in-out infinite alternate;
    }

    .seal-two {
        animation: sealFloat 5.8s 420ms ease-in-out infinite alternate;
    }
}

@keyframes sealFloat {
    to {
        transform: translateY(-13px);
    }
}

@keyframes lightBeamDrift {
    to {
        opacity: 0.25;
        transform: rotate(7deg) translateX(-18px);
    }
}

@media (max-width: 1050px) {
    .header-cta {
        display: none;
    }

    .hero-content,
    .split-section,
    .solution-layout,
    .portfolio-heading,
    .portfolio-editorial-board,
    .about-layout,
    .faq-layout,
    .quote-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 36px;
    }

    .solution-layout {
        gap: 64px;
    }

    .hero-proof {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .hero-proof::before {
        display: none;
    }

    .hero-form,
    .floating-seal {
        position: static;
        width: 100%;
        transform: none;
    }

    .hero-form.hero-sequence,
    .hero-form.hero-sequence.is-visible {
        transform: none;
    }

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

    .portfolio-editorial-board {
        grid-template-rows: auto;
    }

    .portfolio-frame-large,
    .portfolio-frame-tall {
        grid-row: auto;
    }

    .portfolio-frame {
        min-height: 420px;
    }

    .portfolio-context {
        min-height: 220px;
    }

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

    .sublimation-showcase {
        grid-template-columns: 1fr;
        min-height: 680px;
    }

    .sublimation-copy {
        align-self: end;
        max-width: 560px;
        padding-top: 220px;
        padding-left: clamp(42px, 7vw, 72px);
    }

    .sublimation-showcase::before {
        background:
            linear-gradient(180deg, rgba(1, 11, 36, 0.08) 0%, rgba(1, 11, 36, 0.38) 42%, rgba(1, 11, 36, 0.96) 100%);
    }

    .benefit-card:nth-child(2),
    .benefit-card:nth-child(5),
    .benefit-card.reveal.is-visible:nth-child(2),
    .benefit-card.reveal.is-visible:nth-child(5) {
        transform: none;
    }

    .footer-layout {
        grid-template-columns: 1fr;
    }

    .footer-copy {
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .site-nav {
        position: fixed;
        top: 84px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 4px;
        padding: 16px;
        border: 1px solid rgba(7, 27, 91, 0.12);
        border-radius: 24px;
        color: var(--blue-900);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: var(--shadow-premium);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 260ms var(--ease), transform 260ms var(--ease);
        backdrop-filter: blur(18px);
    }

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

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

    .site-nav a:hover {
        background: var(--soft-blue);
    }

    .site-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .brand-logo,
    .header-scrolled .brand-logo {
        height: 54px;
    }

    .section {
        padding: 86px 0;
    }

    .hero-content {
        padding-top: 122px;
        padding-bottom: 50px;
    }

    .hero-copy {
        padding-top: 18px;
    }

    .brand-strokes {
        margin-bottom: 26px;
    }

    .brand-strokes span {
        width: 54px;
        height: 4px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-note {
        max-width: none;
    }

    .marquee-line {
        gap: 12px;
        padding-right: 12px;
        font-size: 11px;
    }

    .marquee-line span {
        min-height: 34px;
        padding: 0 14px;
    }

    .pain-grid,
    .benefits-grid,
    .steps,
    .application-notes {
        grid-template-columns: 1fr;
    }

    .mini-card:nth-child(even),
    .mini-card:nth-child(even):hover,
    .benefit-card.reveal.is-visible:nth-child(2):hover,
    .benefit-card.reveal.is-visible:nth-child(5):hover {
        transform: none;
    }

    .portfolio-frame {
        min-height: auto;
        aspect-ratio: 4 / 5;
    }

    .portfolio-context {
        min-height: auto;
        padding: 28px 0 4px;
    }

    .application-notes {
        gap: 30px;
        margin-top: 52px;
        padding-top: 38px;
    }

    .sublimation-showcase {
        min-height: 720px;
        margin-top: 72px;
        width: min(calc(100% - 32px), var(--container));
    }

    .sublimation-copy {
        padding: 320px 28px 42px;
    }

    .sublimation-media img {
        object-position: 62% center;
    }

    .technical-note,
    .subtle-note {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: clamp(2.26rem, 11vw, 3.35rem);
    }

    .hero {
        min-height: 96vh;
    }

    .hero-content {
        min-height: 96vh;
        gap: 28px;
    }

    .hero-proof {
        display: flex;
        min-height: auto;
        gap: 10px;
        flex-wrap: wrap;
    }

    .floating-seal {
        position: static;
        min-width: 0;
        width: 100%;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .mini-card,
    .benefit-card,
    .step-card {
        min-height: auto;
        padding: 26px;
    }

    .solution-panel,
    .quote-form {
        border-radius: 26px;
    }

    .quote-section {
        padding: 90px 0;
    }
}
