/* ===== NODYX DESIGN SYSTEM ===== */
:root {
    --orange: #E8913A;
    --orange-light: #F0A050;
    --orange-dark: #D07A28;
    --orange-glow: rgba(232, 145, 58, 0.25);

    --teal: #2DD4A8;
    --teal-light: #3EECBA;
    --teal-dark: #1CA882;
    --teal-glow: rgba(45, 212, 168, 0.15);

    --bg: #0B1315;
    --bg-secondary: #0E1A1D;
    --bg-card: #121F23;
    --bg-card-hover: #162A2F;
    --bg-input: #0D1719;

    --text: #E8ECF0;
    --text-secondary: #94A3B0;
    --text-muted: #5A6B75;

    --border: rgba(45, 212, 168, 0.08);
    --border-hover: rgba(232, 145, 58, 0.3);
    --border-teal: rgba(45, 212, 168, 0.2);

    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 50px;

    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 70px;
    --container: 1180px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    color: var(--orange);
}

.teal-text { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    border: 1.5px solid transparent;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.btn--primary:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--orange-glow);
}

.btn--outline {
    border-color: rgba(255,255,255,0.2);
    color: var(--text);
    background: transparent;
}

.btn--outline:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.btn--teal {
    background: var(--teal);
    color: var(--bg);
    border-color: var(--teal);
}

.btn--teal:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
}

.btn--ghost {
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
}

.btn--ghost:hover { color: var(--text); }

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(11, 19, 21, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
}

.nav__logo svg,
.nav__logo-img {
    height: 42px;
    width: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--text);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__close { display: none; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 3rem) 0 5rem;
    overflow: hidden;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__canvas canvas {
    width: 100%;
    height: 100%;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(45, 212, 168, 0.08);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal);
    margin-bottom: 2rem;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(45, 212, 168, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(45, 212, 168, 0); }
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero__checks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.hero__check svg {
    width: 18px;
    height: 18px;
    color: var(--teal);
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: rgba(45, 212, 168, 0.06);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.section__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section__description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-glow);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    color: var(--teal);
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card__text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.service-card__features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 1.1rem;
    position: relative;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--teal);
    border-radius: 50%;
}

/* ===== PROCESS ===== */
.process { background: var(--bg-secondary); }

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process__grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-teal), var(--border-teal), transparent);
}

.process__step {
    text-align: center;
    position: relative;
}

.process__number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1.5px solid var(--border-teal);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--teal);
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}

.process__step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.process__step-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== PLANS ===== */
.plans { background: var(--bg); }

.plans__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.plans__toggle-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.plans__toggle-label.active {
    color: var(--text);
    font-weight: 600;
}

.plans__discount {
    padding: 0.15rem 0.5rem;
    background: rgba(232, 145, 58, 0.15);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 2px;
    bottom: 2px;
    background: var(--teal);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-4px);
}

.plan-card--featured {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(232, 145, 58, 0.06) 0%, var(--bg-card) 50%);
}

.plan-card__ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1.25rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.plan-card__name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.plan-card__subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.plan-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    margin: 1.5rem 0 2rem;
}

.plan-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.plan-card__price {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.plan-card__period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.plan-card__pricing--custom {
    justify-content: center;
    min-height: 60px;
    align-items: center;
}

.plan-card__custom-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--orange);
    text-align: center;
}

.plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
}

.plan-card__features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.plan-card__features li.included svg { color: var(--teal); }
.plan-card__features li.excluded { color: var(--text-muted); }
.plan-card__features li.excluded svg { color: var(--text-muted); }

/* ===== ABOUT ===== */
.about { background: var(--bg-secondary); }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-glow);
    border-radius: var(--radius);
    color: var(--teal);
    flex-shrink: 0;
}

.value__icon svg { width: 20px; height: 20px; }
.value__title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; }
.value__text { font-size: 0.85rem; color: var(--text-secondary); }

/* Terminal */
.terminal {
    background: #0A1012;
    border: 1px solid rgba(45, 212, 168, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.terminal__header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.7rem 1rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal__dot { width: 11px; height: 11px; border-radius: 50%; }
.terminal__dot--red { background: #FF5F57; }
.terminal__dot--yellow { background: #FEBC2E; }
.terminal__dot--green { background: #28C840; }
.terminal__title { margin-left: auto; font-size: 0.75rem; color: var(--text-muted); }

.terminal__body {
    padding: 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
}

.terminal__line { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.terminal__line--output { padding-left: 1.5rem; color: var(--text-secondary); }
.terminal__prompt { color: var(--teal); font-weight: 700; }
.terminal__command { color: var(--text); }
.terminal__success { color: var(--teal); }

.terminal__cursor {
    color: var(--orange);
    animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ===== FAQ ===== */
.faq { background: var(--bg); }

.faq__grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item.active { border-color: var(--border-teal); }

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
}

.faq__question:hover { color: var(--orange); }

.faq__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq__item.active .faq__icon { transform: rotate(180deg); color: var(--teal); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq__answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, rgba(232, 145, 58, 0.08), rgba(45, 212, 168, 0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta__content { text-align: center; }

.cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-secondary); }

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-glow);
    border-radius: var(--radius);
    color: var(--teal);
    flex-shrink: 0;
}

.contact__icon svg { width: 18px; height: 18px; }
.contact__item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; }
.contact__item p { font-size: 0.88rem; color: var(--text-secondary); }

.contact__form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.form__group { margin-bottom: 1.15rem; }

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text);
}

.form__input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.92rem;
    transition: var(--transition);
}

.form__input::placeholder { color: var(--text-muted); }

.form__input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6B75' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__textarea { resize: vertical; min-height: 110px; }

.form__status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    text-align: center;
    display: none;
}

.form__status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--success);
}

.form__status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--error);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__description {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer__links h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }

.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__links a {
    color: var(--text-secondary);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer__links a:hover { color: var(--teal); }

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg { width: 26px; height: 26px; color: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid::before { display: none; }
}

@media (max-width: 768px) {
    :root { --header-h: 62px; }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border);
        padding: 5rem 2rem 2rem;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav__menu.show { right: 0; }

    .nav__list { flex-direction: column; gap: 0.5rem; }

    .nav__link { display: block; padding: 0.7rem 1rem; font-size: 1rem; }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        font-size: 1.8rem;
        color: var(--text);
    }

    .nav__toggle { display: flex; }
    .nav__actions .btn { display: none; }

    .hero { padding-top: calc(var(--header-h) + 2rem); min-height: auto; padding-bottom: 3rem; }
    .hero__checks { gap: 1rem; }

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

    .plans__grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact__grid { grid-template-columns: 1fr; }
    .contact__form { padding: 1.5rem; }
    .footer__grid { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .process__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; }
    .hero__checks { flex-direction: column; gap: 0.6rem; }
    .cta__buttons { flex-direction: column; align-items: center; }
    .process__grid { grid-template-columns: 1fr; }
}
