/* Estilos externos de la vista; tokens y comportamiento compartido: ../public-pages.css */
/* =========================================================
           BASE Y COMPONENTES
           ========================================================= */

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--gd-ink);
            background: var(--gd-bg);
            font-family: var(--font-family-primary);
            line-height: 1.62;
            text-rendering: optimizeLegibility;
        }

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

        a {
            color: inherit;
        }

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

        h1,
        h2,
        h3,
        p {
            margin-top: 0;
        }

        h1,
        h2,
        h3 {
            color: var(--gd-primary-strong);
            line-height: 1.08;
            text-wrap: balance;
        }

        p {
            text-wrap: pretty;
        }

        :focus-visible {
            outline: 3px solid rgba(30, 55, 103, 0.78);
            outline-offset: 4px;
        }

        .gd-shell {
            width: min(calc(100% - 40px), var(--gd-max));
            margin-inline: auto;
        }

        .gd-section {
            position: relative;
            padding: 102px 0;
        }

        .gd-section--soft {
            background: var(--gd-bg-soft);
        }

        .gd-section-heading {
            max-width: 790px;
            margin-bottom: 44px;
        }

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

        .gd-eyebrow,
        .gd-section-heading__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 17px;
            color: var(--gd-primary);
            font-size: 0.76rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .gd-eyebrow::before,
        .gd-section-heading__eyebrow::before {
            width: 26px;
            height: 3px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-accent);
            content: "";
        }

        .gd-section-heading h2 {
            margin-bottom: 18px;
            font-size: clamp(2.1rem, 4.4vw, 3.65rem);
            letter-spacing: -0.035em;
        }

        .gd-section-heading p {
            margin-bottom: 0;
            color: var(--gd-copy);
            font-size: clamp(1rem, 1.75vw, 1.13rem);
        }

        .gd-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
        }

        .gd-btn {
            display: inline-flex;
            min-height: 50px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 13px 23px;
            border: 1px solid transparent;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-primary);
            color: var(--gd-white);
            text-decoration: none;
            font-weight: 850;
            line-height: 1.2;
            transition:
                transform var(--gd-transition),
                background-color var(--gd-transition),
                border-color var(--gd-transition),
                color var(--gd-transition),
                box-shadow var(--gd-transition);
        }

        .gd-btn::after,
        .gd-link::after {
            content: "→";
            transition: transform var(--gd-transition);
        }

        .gd-btn:hover,
        .gd-link:hover {
            transform: translateY(-2px);
        }

        .gd-btn:hover::after,
        .gd-link:hover::after {
            transform: translateX(4px);
        }

        .gd-btn:hover {
            background: var(--gd-primary-strong);
            box-shadow: 0 12px 30px rgba(30, 55, 103, 0.2);
        }

        .gd-btn--accent {
            background: var(--gd-accent);
            color: var(--gd-primary-strong);
        }

        .gd-btn--accent:hover {
            background: var(--gd-accent-strong);
            color: var(--gd-white);
        }

        .gd-btn--outline {
            border-color: var(--gd-primary);
            background: transparent;
            color: var(--gd-primary);
        }

        .gd-btn--outline:hover {
            background: var(--gd-primary);
            color: var(--gd-white);
        }

        .gd-btn--light {
            border-color: rgba(255, 255, 255, 0.44);
            background: transparent;
            color: var(--gd-white);
        }

        .gd-btn--light:hover {
            border-color: var(--gd-white);
            background: var(--gd-white);
            color: var(--gd-primary-strong);
        }

        .gd-btn--block {
            width: 100%;
        }

        .gd-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gd-primary);
            text-decoration: none;
            font-weight: 850;
            transition:
                transform var(--gd-transition),
                color var(--gd-transition);
        }

        .gd-card {
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-md);
            background: var(--gd-white);
            box-shadow: var(--gd-shadow-soft);
        }

        .gd-badge {
            display: inline-flex;
            min-height: 32px;
            align-items: center;
            gap: 8px;
            padding: 7px 13px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-success-soft);
            color: var(--gd-success);
            font-size: 0.73rem;
            font-weight: 900;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }

        .gd-badge::before {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
            content: "";
        }

        .gd-neum-icon {
            display: grid;
            width: 66px;
            height: 66px;
            flex: 0 0 auto;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.84);
            border-radius: 20px;
            background: #ffffff;
            box-shadow: var(--gd-neum-out);
            color: var(--gd-primary);
            transition:
                transform var(--gd-transition),
                box-shadow var(--gd-transition),
                color var(--gd-transition);
        }

        .gd-neum-icon svg {
            width: 29px;
            height: 29px;
            fill: none;
            stroke: currentColor;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-width: 1.8;
        }

        .gd-card:hover .gd-neum-icon,
        .gd-neum-icon:hover {
            transform: translateY(-2px);
            box-shadow: var(--gd-neum-in);
            color: var(--gd-accent-strong);
        }

        .gd-parallax {
            transform: translate3d(0, var(--gd-parallax-y, 0), 0);
            will-change: transform;
        }

        .gd-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 30px;
            color: var(--gd-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 850;
        }

        .gd-back-link::before {
            content: "←";
            transition: transform var(--gd-transition);
        }

        .gd-back-link:hover::before {
            transform: translateX(-4px);
        }


        /* =========================================================
           3. HERO DEL PRODUCTO
           ========================================================= */

        .gd-tool-hero {
            position: relative;
            overflow: hidden;
            padding: 64px 0 98px;
            background:
                linear-gradient(
                    112deg,
                    rgba(255, 255, 255, 0.98),
                    rgba(255, 255, 255, 0.98) 63%
                );
        }

        .gd-tool-hero__orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }

        .gd-tool-hero__orb--one {
            width: 550px;
            height: 550px;
            top: -355px;
            right: -165px;
            background: rgba(30, 55, 103, 0.16);
        }

        .gd-tool-hero__orb--two {
            width: 270px;
            height: 270px;
            bottom: -170px;
            left: -95px;
            border: 1px solid rgba(30, 55, 103, 0.1);
        }

        .gd-tool-hero__grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
            gap: 66px;
            align-items: center;
        }

        .gd-tool-hero__content {
            max-width: 730px;
        }

        .gd-tool-hero h1 {
            margin: 20px 0 24px;
            font-size: clamp(3rem, 6vw, 5.7rem);
            letter-spacing: -0.055em;
        }

        .gd-tool-hero__lead {
            max-width: 690px;
            margin-bottom: 30px;
            color: var(--gd-copy);
            font-size: clamp(1.08rem, 2vw, 1.3rem);
        }

        .gd-tool-hero__signals {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin: 34px 0 0;
            padding: 0;
            list-style: none;
        }

        .gd-tool-hero__signals li {
            padding: 15px 16px;
            border-left: 3px solid var(--gd-accent);
            background: rgba(255, 255, 255, 0.76);
            color: var(--gd-copy);
            font-size: 0.84rem;
        }

        .gd-tool-hero__signals strong {
            display: block;
            margin-bottom: 3px;
            color: var(--gd-primary-strong);
            font-size: 0.9rem;
        }

        .gd-tool-hero__visual {
            position: relative;
            overflow: hidden;
            min-height: 540px;
            border-radius: var(--gd-radius-lg);
            background: var(--gd-primary-strong);
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-tool-hero__image {
            position: absolute;
            width: 100%;
            height: 100%;
            inset: 0;
            object-fit: cover;
            object-position: center;
            transition: transform 700ms ease;
        }

        .gd-tool-hero__visual::after {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(
                    180deg,
                    rgba(30, 55, 103, 0.02) 48%,
                    rgba(30, 55, 103, 0.3) 100%
                );
            content: "";
            pointer-events: none;
        }

        .gd-tool-hero__visual:hover .gd-tool-hero__image {
            transform: scale(1.025);
        }

        .gd-tool-hero__floating {
            position: absolute;
            z-index: 2;
            right: 24px;
            bottom: 24px;
            width: min(290px, 76%);
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.78);
            border-radius: var(--gd-radius-md);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--gd-shadow-strong);
            backdrop-filter: blur(12px);
        }

        .gd-tool-hero__floating span {
            display: block;
            margin-bottom: 4px;
            color: var(--gd-muted);
            font-size: 0.74rem;
            font-weight: 850;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .gd-tool-hero__floating strong {
            color: var(--gd-primary-strong);
            line-height: 1.4;
        }


        /* =========================================================
           4. BENEFICIOS
           ========================================================= */

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

        .gd-tool-benefit {
            min-height: 100%;
            padding: 34px 30px;
        }

        .gd-tool-benefit h3 {
            margin: 25px 0 12px;
            font-size: 1.35rem;
        }

        .gd-tool-benefit p {
            margin-bottom: 0;
            color: var(--gd-copy);
        }


        /* =========================================================
           5. CÓMO FUNCIONA
           ========================================================= */

        .gd-tool-process {
            color: var(--gd-white);
            background: var(--gd-primary-strong);
        }

        .gd-tool-process .gd-eyebrow {
            color: var(--gd-accent);
        }

        .gd-tool-process h2 {
            color: var(--gd-white);
        }

        .gd-tool-process__intro {
            color: rgba(255, 255, 255, 0.76);
        }

        .gd-tool-process__grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 42px;
        }

        .gd-tool-process__step {
            min-height: 100%;
            padding: 30px 26px;
            border: 1px solid rgba(255, 255, 255, 0.13);
            border-radius: var(--gd-radius-md);
            background: rgba(255, 255, 255, 0.05);
        }

        .gd-tool-process__number {
            display: grid;
            width: 44px;
            height: 44px;
            margin-bottom: 24px;
            place-items: center;
            border-radius: 14px;
            background: var(--gd-accent);
            color: var(--gd-primary-strong);
            font-weight: 900;
        }

        .gd-tool-process__step h3 {
            margin-bottom: 11px;
            color: var(--gd-white);
            font-size: 1.25rem;
        }

        .gd-tool-process__step p {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.94rem;
        }


        /* =========================================================
           6. PANEL Y SEGUIMIENTO MENSUAL
           ========================================================= */

        .gd-tool-dashboard__grid {
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
            gap: 64px;
            align-items: center;
        }

        .gd-tool-dashboard__copy > p:last-of-type {
            color: var(--gd-copy);
        }

        .gd-tool-dashboard__list {
            display: grid;
            gap: 13px;
            margin: 28px 0 0;
            padding: 0;
            list-style: none;
        }

        .gd-tool-dashboard__list li {
            position: relative;
            padding-left: 28px;
            color: var(--gd-copy);
        }

        .gd-tool-dashboard__list li::before {
            position: absolute;
            width: 10px;
            height: 10px;
            top: 0.5em;
            left: 0;
            border-radius: 50%;
            background: var(--gd-accent);
            box-shadow: 0 0 0 6px rgba(30, 55, 103, 0.14);
            content: "";
        }

        .gd-tool-dashboard__panel {
            overflow: hidden;
            padding: 22px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-lg);
            background: var(--gd-white);
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-tool-dashboard__panel-head {
            display: flex;
            gap: 18px;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--gd-border);
        }

        .gd-tool-dashboard__panel-head strong {
            color: var(--gd-primary-strong);
        }

        .gd-tool-dashboard__panel-head span {
            color: var(--gd-muted);
            font-size: 0.78rem;
            font-weight: 800;
            text-transform: uppercase;
        }

        .gd-tool-dashboard__metrics {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .gd-tool-dashboard__metric {
            min-height: 124px;
            padding: 18px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-sm);
            background: var(--gd-bg-soft);
        }

        .gd-tool-dashboard__metric small {
            display: block;
            margin-bottom: 8px;
            color: var(--gd-muted);
            font-size: 0.72rem;
            font-weight: 850;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .gd-tool-dashboard__metric strong {
            display: block;
            margin-bottom: 13px;
            color: var(--gd-primary-strong);
            font-size: 1.12rem;
        }

        .gd-tool-dashboard__bar {
            display: block;
            overflow: hidden;
            height: 8px;
            border-radius: var(--gd-radius-pill);
            background: #8c8c8c;
        }

        .gd-tool-dashboard__bar::after {
            display: block;
            width: var(--metric-width, 68%);
            height: 100%;
            border-radius: inherit;
            background: var(--metric-color, var(--gd-primary));
            content: "";
        }

        .gd-tool-dashboard__history {
            margin-top: 14px;
            padding: 18px;
            border: 1px solid var(--gd-border);
            border-radius: var(--gd-radius-sm);
        }

        .gd-tool-dashboard__history-head,
        .gd-tool-dashboard__history-row {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(90px, 0.7fr) auto;
            gap: 12px;
            align-items: center;
        }

        .gd-tool-dashboard__history-head {
            padding-bottom: 11px;
            color: var(--gd-muted);
            font-size: 0.69rem;
            font-weight: 850;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .gd-tool-dashboard__history-row {
            padding: 12px 0;
            border-top: 1px solid var(--gd-border);
            color: var(--gd-copy);
            font-size: 0.84rem;
        }

        .gd-tool-dashboard__status {
            display: inline-flex;
            min-height: 26px;
            align-items: center;
            justify-content: center;
            padding: 5px 9px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-success-soft);
            color: var(--gd-success);
            font-size: 0.67rem;
            font-weight: 850;
            text-transform: uppercase;
        }


        /* =========================================================
           7. PLANES Y COMPRA
           ========================================================= */

        .gd-tool-pricing__grid {
            display: grid;
            max-width: 940px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
            margin-inline: auto;
        }

        .gd-price-card {
            position: relative;
            display: flex;
            min-height: 100%;
            flex-direction: column;
            padding: 34px;
            transition:
                transform var(--gd-transition),
                box-shadow var(--gd-transition),
                border-color var(--gd-transition);
        }

        .gd-price-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-price-card--featured {
            border: 2px solid var(--gd-primary);
            background:
                linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0.78),
                    var(--gd-white) 42%
                );
        }

        .gd-price-card__flag {
            position: absolute;
            top: 18px;
            right: 18px;
            padding: 7px 11px;
            border-radius: var(--gd-radius-pill);
            background: var(--gd-accent);
            color: var(--gd-primary-strong);
            font-size: 0.7rem;
            font-weight: 900;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .gd-price-card__label {
            margin-bottom: 18px;
            color: var(--gd-primary);
            font-size: 0.84rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .gd-price-card__price {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: baseline;
            margin-bottom: 9px;
        }

        .gd-price-card__amount {
            color: var(--gd-primary-strong);
            font-size: clamp(2.7rem, 6vw, 4.25rem);
            font-weight: 900;
            letter-spacing: -0.055em;
            line-height: 1;
        }

        .gd-price-card__currency {
            color: var(--gd-copy);
            font-size: 0.9rem;
            font-weight: 800;
        }

        .gd-price-card__period {
            margin-bottom: 24px;
            color: var(--gd-copy);
        }

        .gd-price-card__tax {
            margin-bottom: 24px;
            padding: 12px 14px;
            border-radius: var(--gd-radius-sm);
            background: var(--gd-bg-soft);
            color: var(--gd-copy);
            font-size: 0.86rem;
        }

        .gd-price-card__saving {
            margin: -8px 0 24px;
            color: var(--gd-success);
            font-size: 0.9rem;
            font-weight: 850;
        }

        .gd-price-card__features {
            display: grid;
            gap: 12px;
            margin: 0 0 30px;
            padding: 0;
            list-style: none;
        }

        .gd-price-card__features li {
            position: relative;
            padding-left: 27px;
            color: var(--gd-copy);
        }

        .gd-price-card__features li::before {
            position: absolute;
            width: 10px;
            height: 10px;
            top: 0.5em;
            left: 0;
            border-radius: 50%;
            background: var(--gd-accent);
            box-shadow: 0 0 0 5px rgba(30, 55, 103, 0.14);
            content: "";
        }

        .gd-price-card__action {
            margin-top: auto;
        }

        .gd-tool-pricing__note {
            max-width: 760px;
            margin: 30px auto 0;
            color: var(--gd-copy);
            font-size: 0.88rem;
            text-align: center;
        }


        /* =========================================================
           8. PORTAL DE HERRAMIENTAS
           ========================================================= */

        .gd-tool-access__grid {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 66px;
            align-items: center;
        }

        .gd-tool-access__visual {
            position: relative;
            display: grid;
            overflow: hidden;
            min-height: 500px;
            place-items: center;
            border-radius: var(--gd-radius-lg);
            background:
                radial-gradient(
                    circle at 22% 18%,
                    rgba(30, 55, 103, 0.44),
                    transparent 27%
                ),
                linear-gradient(
                    138deg,
                    var(--gd-primary-strong),
                    var(--gd-primary)
                );
            box-shadow: var(--gd-shadow-strong);
        }

        .gd-tool-access__panel {
            position: relative;
            z-index: 1;
            width: min(82%, 420px);
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--gd-radius-md);
            background: rgba(255, 255, 255, 0.11);
            backdrop-filter: blur(14px);
        }

        .gd-tool-access__panel-head {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 18px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.16);
            color: var(--gd-white);
            font-weight: 850;
        }

        .gd-tool-access__panel-head span {
            display: grid;
            width: 38px;
            height: 38px;
            place-items: center;
            border-radius: 12px;
            background: var(--gd-accent);
            color: var(--gd-primary-strong);
        }

        .gd-tool-access__item {
            display: flex;
            gap: 12px;
            align-items: center;
            padding: 14px 0;
            color: rgba(255, 255, 255, 0.82);
        }

        .gd-tool-access__item + .gd-tool-access__item {
            border-top: 1px solid rgba(255, 255, 255, 0.11);
        }

        .gd-tool-access__item::before {
            width: 9px;
            height: 9px;
            flex: 0 0 auto;
            border-radius: 50%;
            background: var(--gd-accent);
            content: "";
        }

        .gd-tool-access__copy > p:last-of-type {
            color: var(--gd-copy);
        }

        .gd-tool-access__list {
            display: grid;
            gap: 13px;
            margin: 28px 0 32px;
            padding: 0;
            list-style: none;
        }

        .gd-tool-access__list li {
            position: relative;
            padding-left: 28px;
            color: var(--gd-copy);
        }

        .gd-tool-access__list li::before {
            position: absolute;
            width: 10px;
            height: 10px;
            top: 0.5em;
            left: 0;
            border-radius: 50%;
            background: var(--gd-accent);
            box-shadow: 0 0 0 6px rgba(30, 55, 103, 0.14);
            content: "";
        }


        /* =========================================================
           9. CTA FINAL
           ========================================================= */

        .gd-tool-final {
            position: relative;
            overflow: hidden;
            padding: 90px 0;
            background:
                radial-gradient(
                    circle at 14% 22%,
                    rgba(30, 55, 103, 0.26),
                    transparent 28%
                ),
                linear-gradient(
                    120deg,
                    var(--gd-primary-strong),
                    var(--gd-primary)
                );
            color: var(--gd-white);
        }

        .gd-tool-final::after {
            position: absolute;
            width: 350px;
            height: 350px;
            right: -110px;
            bottom: -190px;
            border: 1px solid rgba(255, 255, 255, 0.17);
            border-radius: 50%;
            content: "";
        }

        .gd-tool-final__grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 54px;
            align-items: center;
        }

        .gd-tool-final h2 {
            max-width: 790px;
            margin-bottom: 16px;
            color: var(--gd-white);
            font-size: clamp(2.25rem, 4.7vw, 4.15rem);
            letter-spacing: -0.04em;
        }

        .gd-tool-final p {
            max-width: 760px;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.06rem;
        }

        .gd-tool-final__actions {
            justify-content: flex-end;
        }


        /* =========================================================
           10. RESPONSIVE
           ========================================================= */

        @media (max-width: 1040px) {
            .gd-tool-hero__grid,
            .gd-tool-dashboard__grid,
            .gd-tool-access__grid {
                grid-template-columns: 1fr;
            }

            .gd-tool-hero__content {
                max-width: 820px;
            }

            .gd-tool-hero__visual,
            .gd-tool-dashboard__panel,
            .gd-tool-access__visual {
                width: min(100%, 790px);
            }

            .gd-tool-final__grid {
                grid-template-columns: 1fr;
            }

            .gd-tool-final__actions {
                justify-content: flex-start;
            }
        }

        @media (max-width: 840px) {
            .gd-section {
                padding: 76px 0;
            }

            .gd-tool-hero {
                padding: 48px 0 78px;
            }

            .gd-tool-hero__grid {
                gap: 44px;
            }

            .gd-tool-hero__signals,
            .gd-tool-benefits__grid,
            .gd-tool-process__grid {
                grid-template-columns: 1fr;
            }

            .gd-tool-dashboard__metrics {
                grid-template-columns: 1fr;
            }

            .gd-parallax {
                transform: none;
            }
        }

        @media (max-width: 700px) {
            .gd-tool-pricing__grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 620px) {
            .gd-shell {
                width: min(calc(100% - 28px), var(--gd-max));
            }

            .gd-actions {
                align-items: stretch;
                flex-direction: column;
            }

            .gd-btn {
                width: 100%;
            }

            .gd-tool-hero h1 {
                font-size: clamp(3rem, 15vw, 4.3rem);
            }

            .gd-tool-hero__visual {
                min-height: 430px;
            }

            .gd-tool-hero__floating {
                right: 14px;
                bottom: 14px;
                width: calc(100% - 28px);
            }

            .gd-tool-dashboard__history-head,
            .gd-tool-dashboard__history-row {
                grid-template-columns: 1fr;
            }

            .gd-tool-access__visual {
                min-height: 410px;
            }

            .gd-price-card {
                padding: 28px 23px;
            }
        }

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

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

            .gd-parallax {
                transform: none !important;
            }
        }
