/* =========================================================
1) BASE / VARIABLES
========================================================= */
:root {
--bg-dark: #0b0b12;
--bg-soft: #12121c;

--text: #ffffff;
--muted: rgba(255, 255, 255, 0.72);

/* Naranja neón */
--accent: #ff8a3d;
--accent-2: #ff6b1a;

--radius: 24px;

--font-head: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
--font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

--shadow: 0 18px 50px rgba(0, 0, 0, 0.40);
--shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.28);
--border: rgba(255, 255, 255, 0.10);

--nav-h: 80px;

/* Float buttons */
--float-right: 18px;
--float-bottom: 18px;
--float-size: 58px;
--float-gap: 20px;

/* Anchors/sections */
--section-py: 96px;
}

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html { scroll-behavior: smooth; }

body {
background: var(--bg-dark);
color: var(--text);
font-family: var(--font-body);
line-height: 1.6;
overflow-x: hidden;
padding-top: var(--nav-h);
}

h1, h2, h3, h4 {
font-family: var(--font-head);
letter-spacing: -0.02em;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}

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

/* Accesibilidad */
.sr-only {
position: absolute !important;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}

.skip-link {
position: absolute;
left: 16px;
top: 10px;
transform: translateY(-140%);
padding: 10px 14px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.10);
border: 1px solid rgba(255, 255, 255, 0.18);
color: #fff;
text-decoration: none;
z-index: 9999;
}

.skip-link:focus {
transform: translateY(0);
}

/* SEO keywords (sutil pero visible) */
.seo-key {
color: rgba(255, 138, 61, 0.95);
font-weight: 900;
white-space: nowrap;
}

/* =========================================================
2) BACKGROUND (aros + grano)
========================================================= */
body::before {
content: "";
position: fixed;
inset: -20%;
z-index: -2;
pointer-events: none;
background:
radial-gradient(900px 620px at 18% 20%, rgba(255, 138, 61, 0.16), transparent 60%),
radial-gradient(900px 620px at 82% 30%, rgba(50, 220, 255, 0.10), transparent 62%),
radial-gradient(700px 520px at 50% 90%, rgba(255, 138, 61, 0.10), transparent 60%),
linear-gradient(180deg, rgba(18, 18, 28, 0.92), rgba(11, 11, 18, 0.98));
filter: saturate(1.05);
}

body::after {
content: "";
position: fixed;
inset: 0;
z-index: -1;
pointer-events: none;
background:
radial-gradient(circle at 18% 28%, transparent 0 120px, rgba(255, 138, 61, 0.22) 121px 122px, transparent 123px 100%),
radial-gradient(circle at 82% 32%, transparent 0 140px, rgba(255, 138, 61, 0.18) 141px 142px, transparent 143px 100%),
url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
mix-blend-mode: soft-light;
opacity: 0.95;
}

/* =========================================================
3) NAVBAR
========================================================= */
.navbar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: var(--nav-h);
z-index: 100;
background: rgba(11, 11, 18, 0.35);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
transition: background 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
background: rgba(11, 11, 18, 0.86);
border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.nav-inner {
height: var(--nav-h);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}

.logo img {
display: block;
width: 56px;
height: auto;
}

.nav-toggle {
display: none;
border: none;
background: transparent;
color: rgba(255, 255, 255, 0.92);
font-size: 1.55rem;
cursor: pointer;
}

.nav-menu {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 18px;
flex: 1;
}

.nav-links {
list-style: none;
display: flex;
align-items: center;
gap: 16px;
}

.nav-link {
position: relative;
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
font-weight: 800;
padding: 10px 10px;
border-radius: 12px;
transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
color: rgba(255, 255, 255, 0.96);
background: rgba(255, 255, 255, 0.03);
transform: translateY(-1px);
}

.nav-link::after {
content: "";
position: absolute;
left: 10px;
right: 10px;
bottom: 6px;
height: 2px;
background: linear-gradient(90deg, var(--accent), transparent);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.22s ease;
opacity: 0.9;
}

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

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

/* Idioma */
.lang-switch {
display: flex;
gap: 8px;
padding: 6px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-btn {
border: none;
background: transparent;
color: rgba(255, 255, 255, 0.70);
padding: 6px 12px;
border-radius: 999px;
cursor: pointer;
font-weight: 900;
transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover {
transform: translateY(-1px);
color: rgba(255, 255, 255, 0.92);
}

.lang-btn.is-active {
background: rgba(255, 138, 61, 0.18);
color: rgba(255, 255, 255, 0.95);
border: 1px solid rgba(255, 138, 61, 0.35);
}

/* CTA */
.btn-cta {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;

background: linear-gradient(135deg, var(--accent), var(--accent-2));
color: #0b0b12;
text-decoration: none;
font-weight: 900;

padding: 11px 18px;
border-radius: 999px;

box-shadow: 0 16px 40px rgba(255, 138, 61, 0.18);
transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-cta .cta-rocket { color: #fff; }

.btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 22px 55px rgba(255, 138, 61, 0.26);
filter: saturate(1.05) brightness(1.02);
}

.btn-cta:active {
transform: translateY(0);
filter: brightness(0.98);
}

/* =========================================================
4) HERO (cover total + texto controlado)
========================================================= */
.hero {
position: relative;
min-height: calc(100vh - var(--nav-h));
display: flex;
align-items: center;
overflow: hidden;
}

.hero-media {
position: absolute;
inset: 0;
z-index: 0;
background: url("../assets/hero.png");
background-size: cover;
background-repeat: no-repeat;
background-position: 78% center;
filter: saturate(1.12) contrast(1.06);
}

.hero-shade {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background:
linear-gradient(
    90deg,
    rgba(11, 11, 18, 0.90) 0%,
    rgba(11, 11, 18, 0.78) 28%,
    rgba(11, 11, 18, 0.40) 52%,
    rgba(11, 11, 18, 0.14) 70%,
    rgba(11, 11, 18, 0.00) 100%
);
}

.hero-inner {
position: relative;
z-index: 2;
width: 100%;
/* Usamos padding-block para no pisar el padding horizontal del .container */
padding-block: 64px;
}

.hero-copy {
max-width: 30%;
}

.hero-copy h1 {
font-size: clamp(2.2rem, 3.2vw, 3.2rem);
line-height: 1.06;
}

.hero-copy p {
margin-top: 14px;
color: rgba(255, 255, 255, 0.78);
}

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

.hero-note {
margin-top: 18px;
color: rgba(255, 255, 255, 0.62);
font-size: 0.95rem;
}

/* =========================================================
5) BOTONES
========================================================= */
.btn-primary,
.btn-secondary,
.btn-outline {
padding: 14px 22px;
border-radius: 999px;
text-decoration: none;
font-weight: 900;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
user-select: none;
}

.btn-primary {
background: linear-gradient(135deg, var(--accent), var(--accent-2));
color: #0b0b12;
box-shadow: 0 16px 40px rgba(255, 138, 61, 0.18);
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 22px 55px rgba(255, 138, 61, 0.24);
}

.btn-secondary {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 138, 61, 0.55);
color: rgba(255, 255, 255, 0.92);
}

.btn-secondary:hover {
transform: translateY(-2px);
background: rgba(255, 138, 61, 0.10);
border-color: rgba(255, 138, 61, 0.75);
}

.btn-outline {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.16);
color: rgba(255, 255, 255, 0.92);
}

.btn-outline:hover {
transform: translateY(-2px);
border-color: rgba(255, 138, 61, 0.50);
background: rgba(255, 138, 61, 0.08);
}

.btn-request {
margin-top: 18px;
width: 100%;
}

/* =========================================================
6) SECCIONES / TARJETAS
========================================================= */
.section {
padding: var(--section-py) 0;
}

.section-lead {
max-width: 760px;
margin: 16px auto 52px;
color: var(--muted);
}

.soft-bg {
background: rgba(18, 18, 28, 0.62);
border-top: 1px solid rgba(255, 255, 255, 0.06);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.group-head { text-align: center; margin: 40px 0 22px; }
.group-head p { margin-top: 10px; color: var(--muted); }

.divider {
border: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
margin: 54px 0;
}

.cards-3 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}

.card,
.pricing-card,
.work-card {
background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 32px;
box-shadow: var(--shadow-soft);
position: relative;
overflow: hidden;
transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover,
.pricing-card:hover,
.work-card:hover {
transform: translateY(-8px);
border-color: rgba(255, 138, 61, 0.35);
box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
}

.card-icon {
width: 52px;
height: 52px;
border-radius: 16px;
display: grid;
place-items: center;
background: rgba(255, 138, 61, 0.10);
border: 1px solid rgba(255, 138, 61, 0.22);
margin-bottom: 14px;
margin-left: auto;
margin-right: auto;
}

.card-icon i {
font-size: 1.4rem;
color: rgba(255, 138, 61, 0.95);
}


.pricing-top {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 12px;
}

.badge {
display: inline-flex;
width: fit-content;
padding: 8px 12px;
border-radius: 999px;
background: rgba(255, 138, 61, 0.10);
border: 1px solid rgba(255, 138, 61, 0.22);
color: rgba(255, 255, 255, 0.92);
font-weight: 900;
}

.price { font-weight: 900; color: rgba(255, 255, 255, 0.95); }

.mini-note {
margin-top: 14px;
color: rgba(255, 255, 255, 0.60);
font-size: 0.95rem;
}

.pricing-card.featured {
border-color: rgba(255, 138, 61, 0.55);
background: linear-gradient(180deg, rgba(255, 138, 61, 0.10), rgba(255, 255, 255, 0.02));
}

/* Portfolio */
.portfolio-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 22px;
}

.work-tag {
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 900;
color: rgba(255, 255, 255, 0.86);
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.10);
padding: 8px 12px;
border-radius: 999px;
margin-bottom: 14px;
}

/* Contact */
.contact-form {
max-width: 720px;
margin: 0 auto;
display: grid;
gap: 14px;
}

.contact-form input,
.contact-form textarea, .contact-form select {
width: 100%;
padding: 14px 16px;
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.12);
background: rgba(255, 255, 255, 0.03);
color: rgba(255, 255, 255, 0.92);
outline: none;
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: rgba(255, 255, 255, 0.55);
}

.contact-form textarea {
min-height: 120px;
resize: vertical;
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.contact-form select option{
background-color: #444042;
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.contact-form button {
border: none;
cursor: pointer;
}

/* =========================================================
7) FOOTER + COPYLINE + TERMS LINK
========================================================= */
.footer {
background: rgba(10, 10, 16, 0.92);
padding: 70px 0 26px;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
display: grid;
grid-template-columns: 1.15fr 0.85fr;
gap: 48px;
align-items: start;
padding-bottom: 18px;
}

.footer-logo {
width: 100%;
max-width: 320px;
display: block;
opacity: 0.85;
margin-bottom: 18px;
}

.footer-copy {
color: rgba(255, 255, 255, 0.72);
max-width: 62ch;
margin-bottom: 12px;
}

.footer-loc-left {
color: rgba(255, 255, 255, 0.62);
font-weight: 800;
margin-bottom: 14px;
}

.footer-title {
font-size: 1.25rem;
margin-bottom: 12px;
}

.footer-social {
display: flex;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 18px;
}

.footer-social a {
width: 44px;
height: 44px;
border-radius: 999px;
display: grid;
place-items: center;
border: 1px solid rgba(255, 255, 255, 0.14);
background: rgba(255, 255, 255, 0.04);
color: rgba(255, 255, 255, 0.88);
text-decoration: none;
transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
transform: translateY(-2px);
background: rgba(255, 138, 61, 0.12);
border-color: rgba(255, 138, 61, 0.40);
color: #fff;
}

.footer-help {
display: grid;
gap: 8px;
margin-bottom: 6px;
}

.help-label {
color: rgba(255, 255, 255, 0.65);
font-weight: 800;
}

.help-mail {
color: rgba(255, 255, 255, 0.92);
font-weight: 900;
text-decoration: none;
width: fit-content;
}

.help-mail:hover {
color: rgba(255, 138, 61, 0.95);
}

.footer-copyline {
border-top: 1px solid rgba(255, 255, 255, 0.06);
padding-top: 16px;

display: flex;
justify-content: center;
align-items: center;
gap: 10px;

text-align: center;
color: rgba(255, 255, 255, 0.70);
flex-wrap: wrap;
}

.footer-copyline small {
font-size: 0.92rem;
color: rgba(255, 255, 255, 0.70);
}

.footer-sep {
opacity: 0.65;
padding: 0 2px;
}

.footer-terms {
position: relative;
font-size: 0.92rem;
color: rgba(255, 255, 255, 0.70);
font-weight: 800;
text-decoration: none;
}

.footer-terms:visited { color: rgba(255, 255, 255, 0.70); }

.footer-terms::after {
content: "";
position: absolute;
left: 0;
bottom: -6px;
width: 100%;
height: 2px;
background: linear-gradient(90deg, var(--accent), transparent);
transform: scaleX(0.35);
transform-origin: left;
transition: transform 0.2s ease, opacity 0.2s ease;
opacity: 0;
}

.footer-terms:hover {
color: rgba(255, 255, 255, 0.92);
}

.footer-terms:hover::after {
transform: scaleX(1);
opacity: 0.9;
}

/* =========================================================
8) FLOAT BUTTONS
========================================================= */
.btn-to-top {
position: fixed;
right: var(--float-right);
bottom: var(--float-bottom);

width: var(--float-size);
height: var(--float-size);

display: flex;
align-items: center;
justify-content: center;

border-radius: 18px;
border: 1px solid rgba(255, 138, 61, 0.70);
background: rgba(11, 11, 18, 0.75);
backdrop-filter: blur(10px);

color: rgba(255, 138, 61, 1);
box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);

cursor: pointer;
z-index: 999;
transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-to-top i {
font-size: 1.55rem;
line-height: 1;
display: block;
color: inherit;
opacity: 1;
animation: floatIcon 2.2s ease-in-out infinite;
}

.btn-to-top:hover {
transform: translateY(-3px);
background: rgba(255, 138, 61, 0.92);
color: #0b0b12;
border-color: rgba(255, 138, 61, 0.92);
}

.btn-float-wsp {
position: fixed;
right: var(--float-right);
bottom: calc(var(--float-bottom) + var(--float-size) + var(--float-gap));

width: var(--float-size);
height: var(--float-size);

display: flex;
align-items: center;
justify-content: center;

border-radius: 18px;
border: 1px solid rgba(255, 138, 61, 0.92);
background: rgba(255, 138, 61, 0.92);

color: #0b0b12;
box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);

text-decoration: none;
cursor: pointer;
z-index: 998;

transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-float-wsp i {
font-size: 1.55rem;
line-height: 1;
display: block;
color: inherit;
opacity: 1;
}

.btn-float-wsp:hover {
transform: translateY(-3px);
background: rgba(11, 11, 18, 0.78);
color: rgba(255, 138, 61, 1);
border-color: rgba(255, 138, 61, 0.92);
}

@keyframes floatIcon {
0%, 100% { transform: translateY(0) rotate(-8deg); }
50% { transform: translateY(-4px) rotate(8deg); }
}

/* =========================================================
9) RESPONSIVE (Desktop → Mobile 320)
========================================================= */

/* Desktop grande (1440+) */
@media (min-width: 1400px) {
.container { max-width: 1280px; }
.hero-copy { max-width: 28%; }
}

/* Desktop/Notebook */
@media (max-width: 1200px) {
.hero-copy { max-width: 36%; }
.cards-3 { gap: 22px; }
.portfolio-grid { gap: 18px; }
}

/* Notebook chica / tablet grande: 3 columnas → 2 columnas */
@media (max-width: 1024px) {
.cards-3 { grid-template-columns: repeat(2, 1fr); }
.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
.section { padding: 84px 0;}

.hero-inner {
padding-block: 25px;
min-height: calc(100vh - var(--nav-h));
display: flex;
align-items: center;
padding-bottom: 15px;
}

.hero-copy {
max-width: 720px;
margin: 0 auto;
text-align: center;
}

.hero-copy h1 {
font-size: clamp(3.7rem, 4.6vw, 4rem);
line-height: 1.08;
padding-bottom: 15px;
}

.hero-copy p { font-size: 1.5rem; }

.hero-buttons {
gap: 16px;
margin-top: 30px;
justify-content: center;
padding-bottom: 10px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
padding: 16px 26px;
font-size: 1.5rem;
min-height: 54px;
border-radius: 999px;
width: clamp(240px, 36vw, 340px);
min-width: 220px;
}

.hero-shade {
background: linear-gradient(180deg, rgba(11, 11, 18, 0.72), rgba(11, 11, 18, 0.72));
}

.hero-media { background-position: 70% center; }
}

/* Tablet y abajo */
@media (max-width: 992px) {
:root { --nav-h: 76px; }
body { padding-top: var(--nav-h); }

.nav-toggle { display: inline-flex; }

.nav-menu {
position: absolute;
top: var(--nav-h);
left: 16px;
right: 16px;

background: rgba(11, 11, 18, 0.92);
border: 1px solid rgba(255, 255, 255, 0.10);
border-radius: 18px;
padding: 14px 16px;

display: none;
flex-direction: column;
gap: 12px;
}

.nav-menu.is-open { display: flex; }

.nav-links {
flex-direction: column;
gap: 6px;
width: 100%;
}

.nav-link { width: 100%; text-align: center; }

.nav-actions {
flex-direction: column;
width: 100%;
}

.btn-cta { width: 100%; max-width: 340px; }

.hero-copy { max-width: 100%; text-align: center; }

.hero-shade {
background: linear-gradient(180deg, rgba(11, 11, 18, 0.76), rgba(11, 11, 18, 0.76));
}

.hero-buttons {
justify-content: center;
flex-direction: column;
align-items: center;
}
.btn-primary{ margin: auto; }

.btn-primary,
.btn-secondary,
.btn-outline {
width: 100%;
max-width: 360px;
}

.cards-3 { grid-template-columns: 1fr; }
.portfolio-grid { grid-template-columns: 1fr; }

.footer-grid {
grid-template-columns: 1fr;
text-align: center;
}

.footer-logo {
margin-left: auto;
margin-right: auto;
}

.footer-social { justify-content: center; }

.footer-help { align-items: center; }

.help-mail {
margin-left: auto;
margin-right: auto;
}

.footer-copyline { justify-content: center; }
}

/* Mobile 480 */
@media (max-width: 480px) {
:root {
--section-py: 74px;
--float-size: 48px;
--float-gap: 14px;
--float-right: 14px;
--float-bottom: 14px;
}

.container { padding: 0 18px; }

.hero-inner {
padding-block: 15px;
min-height: calc(100vh - var(--nav-h));
display: flex;
align-items: center;
}

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

.hero-copy h1 {
font-size: 2.15rem;
line-height: 1.1;
}

.hero-copy p { font-size: 1.02rem; }

.hero-buttons { gap: 12px; }

.btn-primary,
.btn-secondary {
max-width: 340px;
padding: 13px 18px;
}

.btn-outline {
max-width: 320px;
padding: 13px 18px;
}

.btn-to-top,
.btn-float-wsp {
width: 54px;
height: 54px;
border-radius: 16px;
}

.btn-to-top i,
.btn-float-wsp i {
font-size: 1.45rem;
}

.btn-float-wsp {
background: rgba(11, 11, 18, 0.55);
color: rgba(255, 138, 61, 1);
border-color: rgba(255, 138, 61, 0.70);
backdrop-filter: blur(10px);
}

.btn-float-wsp:hover {
background: rgba(255, 138, 61, 0.92);
color: #0b0b12;
border-color: rgba(255, 138, 61, 0.92);
}

.btn-to-top { display: none !important; }
}

/* Mobile 360/320 */
@media (max-width: 360px) {
:root {
--section-py: 66px;
--float-size: 48px;
--float-gap: 14px;
--float-right: 14px;
--float-bottom: 14px;
}

.hero-inner { padding-block: 15px; }

.hero-copy h1 { font-size: 1.95rem; }

.btn-primary,
.btn-secondary,
.btn-outline { max-width: 300px; }

.hero-copy h1 { font-size: 1.85rem; }
.hero-note { font-size: 0.9rem; }

.btn-float-wsp {
background: rgba(11, 11, 18, 0.55);
color: rgba(255, 138, 61, 1);
border-color: rgba(255, 138, 61, 0.70);
backdrop-filter: blur(10px);
}

.btn-float-wsp:hover {
background: rgba(255, 138, 61, 0.92);
color: #0b0b12;
border-color: rgba(255, 138, 61, 0.92);
}

.btn-to-top { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
.btn-to-top i { animation: none; }
}
