:root {
            --brand-dark: #232323;
            --brand-shadow: #3a3a3a;
            --brand-lime: #c6d94d;
            --brand-lime-deep: #a6bc33;
            --brand-silver: #e5e7e8;
            --brand-mist: #f6f7f2;
            --brand-white: #ffffff;
            --text-soft: #666a6d;
            --line: rgba(35, 35, 35, 0.1);
            --panel: rgba(255, 255, 255, 0.72);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            min-height: 100vh;
            font-family: "Century Gothic", "Gill Sans", "Trebuchet MS", sans-serif;
            color: var(--brand-dark);
            background:
                radial-gradient(circle at top left, rgba(198, 217, 77, 0.26), transparent 28%),
                radial-gradient(circle at 82% 18%, rgba(35, 35, 35, 0.1), transparent 20%),
                linear-gradient(135deg, #fcfcfb 0%, #f4f5ef 52%, #ffffff 100%);
            overflow-x: hidden;
        }

        body::before,
        body::after {
            content: "";
            position: fixed;
            inset: auto;
            pointer-events: none;
            z-index: 0;
        }

        body::before {
            top: -9rem;
            right: -7rem;
            width: 24rem;
            height: 24rem;
            border: 2.5rem solid rgba(35, 35, 35, 0.08);
            border-left-color: transparent;
            border-bottom-color: transparent;
            border-radius: 50%;
            transform: rotate(22deg);
        }

        body::after {
            left: -10rem;
            bottom: -8rem;
            width: 34rem;
            height: 16rem;
            border-top: 1.8rem solid rgba(198, 217, 77, 0.92);
            border-radius: 50%;
            transform: rotate(8deg);
        }

        .page-shell {
            position: relative;
            z-index: 1;
            width: min(1180px, calc(100% - 2rem));
            margin: 0 auto;
            padding: 1.25rem 0 2.5rem;
        }

        .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.6rem 0;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            text-decoration: none;
            color: inherit;
        }

        .brand img {
            width: clamp(130px, 18vw, 190px);
            height: auto;
            display: block;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(35, 35, 35, 0.08);
            box-shadow: 0 10px 35px rgba(35, 35, 35, 0.06);
            color: var(--brand-dark);
            font-size: 0.9rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .status-pill i {
            width: 0.65rem;
            height: 0.65rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-lime), var(--brand-lime-deep));
            box-shadow: 0 0 0 0.45rem rgba(198, 217, 77, 0.14);
            animation: pulse 1.8s infinite;
        }

        .hero {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
            gap: 2rem;
            align-items: center;
            padding: 3rem 0 2rem;
        }

        .hero-copy {
            max-width: 640px;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.55rem 0.9rem;
            border-radius: 999px;
            background: rgba(198, 217, 77, 0.16);
            border: 1px solid rgba(198, 217, 77, 0.42);
            color: var(--brand-dark);
            font-size: 0.86rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background: var(--brand-lime-deep);
        }

        h1 {
            margin: 1.25rem 0 1rem;
            font-weight: 400;
            font-size: clamp(2.8rem, 7vw, 5.8rem);
            line-height: 0.94;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        h1 span {
            color: var(--brand-lime-deep);
        }

        .lead {
            margin: 0;
            max-width: 38rem;
            color: var(--text-soft);
            font-size: clamp(1rem, 1.5vw, 1.15rem);
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-top: 2rem;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            min-width: 180px;
            padding: 0.95rem 1.35rem;
            border-radius: 999px;
            text-decoration: none;
            font-size: 0.94rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

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

        .button-primary {
            background: linear-gradient(135deg, var(--brand-dark), var(--brand-shadow));
            color: var(--brand-white);
            box-shadow: 0 18px 40px rgba(35, 35, 35, 0.16);
        }

        .button-secondary {
            background: rgba(255, 255, 255, 0.72);
            color: var(--brand-dark);
            border: 1px solid rgba(35, 35, 35, 0.12);
            box-shadow: 0 14px 30px rgba(35, 35, 35, 0.08);
        }

        .hero-panel {
            position: relative;
            overflow: hidden;
            border-radius: 2rem;
            padding: 1.4rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
            border: 1px solid rgba(255, 255, 255, 0.74);
            box-shadow: 0 35px 80px rgba(35, 35, 35, 0.12);
            backdrop-filter: blur(12px);
        }

        .hero-panel::before {
            content: "";
            position: absolute;
            inset: auto -15% -28% auto;
            width: 18rem;
            height: 18rem;
            border-top: 1.2rem solid rgba(198, 217, 77, 0.85);
            border-radius: 50%;
            transform: rotate(16deg);
        }

        .panel-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.4rem;
        }

        .panel-top strong {
            display: block;
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .panel-top span {
            display: block;
            margin-top: 0.25rem;
            color: var(--text-soft);
            font-size: 0.92rem;
        }

        .panel-tag {
            padding: 0.65rem 0.9rem;
            border-radius: 999px;
            background: rgba(198, 217, 77, 0.18);
            color: var(--brand-dark);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .visual-stage {
            position: relative;
            min-height: 430px;
            border-radius: 1.5rem;
            padding: 2rem;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(229, 231, 232, 0.7)),
                linear-gradient(135deg, rgba(198, 217, 77, 0.1), transparent 40%);
            overflow: hidden;
        }

        .visual-stage::before {
            content: "";
            position: absolute;
            top: -5.6rem;
            right: -4.4rem;
            width: 18rem;
            height: 18rem;
            border: 1.9rem solid rgba(35, 35, 35, 0.11);
            border-left-color: transparent;
            border-bottom-color: transparent;
            border-radius: 50%;
            transform: rotate(18deg);
        }

        .visual-stage::after {
            content: "";
            position: absolute;
            left: -5rem;
            bottom: -5.6rem;
            width: 23rem;
            height: 12rem;
            border-top: 1.3rem solid rgba(198, 217, 77, 0.95);
            border-radius: 50%;
            transform: rotate(9deg);
        }

        .mini-brand {
            width: clamp(180px, 18vw, 250px);
            max-width: 100%;
            display: block;
            position: relative;
            z-index: 2;
        }

        .preview-copy {
            position: absolute;
            left: 2rem;
            right: 2rem;
            bottom: 2rem;
            z-index: 2;
        }

        .preview-copy strong {
            display: block;
            font-size: clamp(1.25rem, 2vw, 1.6rem);
            font-weight: 400;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .preview-copy p {
            margin: 0.75rem 0 0;
            max-width: 20rem;
            color: var(--text-soft);
            line-height: 1.7;
        }

        .panel-float {
            position: absolute;
            right: 1.1rem;
            bottom: 1.3rem;
            width: min(260px, calc(100% - 2rem));
            padding: 1.1rem;
            border-radius: 1.2rem;
            background: rgba(35, 35, 35, 0.92);
            color: var(--brand-white);
            box-shadow: 0 22px 50px rgba(35, 35, 35, 0.22);
            animation: float 4.2s ease-in-out infinite;
        }

        .panel-float small {
            display: block;
            margin-bottom: 0.7rem;
            color: rgba(255, 255, 255, 0.72);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .panel-float ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 0.6rem;
        }

        .panel-float li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
        }

        .panel-float li::before {
            content: "";
            width: 0.55rem;
            height: 0.55rem;
            flex: 0 0 auto;
            border-radius: 50%;
            background: var(--brand-lime);
            box-shadow: 0 0 0 0.35rem rgba(198, 217, 77, 0.18);
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .metric-card,
        .feature-card,
        .timeline-card,
        .signature {
            background: var(--panel);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 1.5rem;
            box-shadow: 0 24px 55px rgba(35, 35, 35, 0.08);
            backdrop-filter: blur(12px);
        }

        .metric-card {
            padding: 1.3rem 1.2rem;
        }

        .metric-card strong {
            display: block;
            font-size: clamp(1.6rem, 3vw, 2.25rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .metric-card span {
            display: block;
            margin-top: 0.4rem;
            color: var(--text-soft);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        .section {
            padding: 1.5rem 0 0;
        }

        .section-heading {
            display: flex;
            flex-wrap: wrap;
            align-items: end;
            justify-content: space-between;
            gap: 1rem;
            margin: 3rem 0 1.4rem;
        }

        .section-heading h2 {
            margin: 0;
            font-weight: 400;
            font-size: clamp(2rem, 4vw, 3.2rem);
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .section-heading p {
            margin: 0;
            max-width: 34rem;
            color: var(--text-soft);
            line-height: 1.75;
        }

        .feature-grid,
        .timeline-grid {
            display: grid;
            gap: 1rem;
        }

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

        .feature-card {
            position: relative;
            overflow: hidden;
            padding: 1.6rem;
        }

        .feature-card::before {
            content: "";
            position: absolute;
            inset: auto auto -2.7rem -1.8rem;
            width: 8rem;
            height: 8rem;
            border-top: 0.8rem solid rgba(198, 217, 77, 0.32);
            border-radius: 50%;
            transform: rotate(12deg);
        }

        .feature-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 3rem;
            height: 3rem;
            border-radius: 0.95rem;
            background: linear-gradient(145deg, rgba(35, 35, 35, 0.96), rgba(58, 58, 58, 0.9));
            color: var(--brand-white);
            font-size: 0.92rem;
            letter-spacing: 0.08em;
        }

        .feature-card h3 {
            margin: 1.1rem 0 0.7rem;
            font-size: 1.15rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .feature-card p {
            margin: 0;
            color: var(--text-soft);
            line-height: 1.75;
        }

        .timeline-grid {
            grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
            align-items: stretch;
        }

        .timeline-card {
            padding: 1.7rem;
        }

        .timeline-list {
            display: grid;
            gap: 1rem;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .timeline-list li {
            display: grid;
            grid-template-columns: 78px minmax(0, 1fr);
            gap: 1rem;
            align-items: start;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--line);
        }

        .timeline-list li:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .timeline-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 2.6rem;
            padding: 0.4rem 0.65rem;
            border-radius: 999px;
            background: rgba(198, 217, 77, 0.18);
            color: var(--brand-dark);
            font-size: 0.78rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .timeline-content strong {
            display: block;
            font-size: 1rem;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .timeline-content p {
            margin: 0.45rem 0 0;
            color: var(--text-soft);
            line-height: 1.7;
        }

        .progress-shell {
            margin-top: 1.3rem;
        }

        .progress-meta {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 0.7rem;
            color: var(--text-soft);
            font-size: 0.9rem;
        }

        .progress-bar {
            height: 0.95rem;
            border-radius: 999px;
            background: rgba(35, 35, 35, 0.08);
            overflow: hidden;
        }

        .progress-bar span {
            display: block;
            width: 78%;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--brand-lime), var(--brand-lime-deep));
            box-shadow: inset -18px 0 24px rgba(255, 255, 255, 0.2);
        }

        .signature {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 1rem;
            align-items: center;
            margin-top: 1rem;
            padding: 1.4rem 1.5rem;
        }

        .signature h3 {
            margin: 0;
            font-size: 1.1rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .signature p {
            margin: 0.45rem 0 0;
            color: var(--text-soft);
            line-height: 1.7;
        }

        .signature a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 190px;
            padding: 0.95rem 1.25rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(198, 217, 77, 0.92), rgba(166, 188, 51, 0.94));
            color: var(--brand-dark);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            box-shadow: 0 18px 35px rgba(166, 188, 51, 0.28);
        }

        footer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 2.5rem 0 1rem;
            color: rgba(35, 35, 35, 0.62);
            font-size: 0.88rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .footer-mark {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
        }

        .footer-mark::before {
            content: "";
            width: 1.8rem;
            height: 0.32rem;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--brand-lime), var(--brand-lime-deep));
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(198, 217, 77, 0.18);
            }
            70% {
                box-shadow: 0 0 0 0.65rem rgba(198, 217, 77, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(198, 217, 77, 0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @media (max-width: 980px) {
            .hero,
            .feature-grid,
            .timeline-grid,
            .signature {
                grid-template-columns: 1fr;
            }

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

            .panel-float {
                position: static;
                width: auto;
                margin-top: 1.2rem;
                animation: none;
            }

            .visual-stage {
                min-height: 360px;
            }
        }

        @media (max-width: 720px) {
            .page-shell {
                width: min(100% - 1.25rem, 1180px);
            }

            .topbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero {
                padding-top: 2rem;
            }

            h1 {
                font-size: clamp(2.5rem, 16vw, 4.3rem);
            }

            .hero-panel,
            .metric-card,
            .feature-card,
            .timeline-card,
            .signature {
                border-radius: 1.25rem;
            }

            .visual-stage {
                padding: 1.4rem;
                min-height: 320px;
            }

            .preview-copy {
                left: 1.4rem;
                right: 1.4rem;
                bottom: 1.4rem;
            }

            .button,
            .signature a {
                width: 100%;
            }

            .timeline-list li {
                grid-template-columns: 1fr;
            }
        }

        body.modal-open {
            overflow: hidden;
        }

        button.button {
            border: 0;
            cursor: pointer;
            font-family: inherit;
        }

        .whatsapp-float {
            position: fixed;
            right: 1.25rem;
            bottom: 1.25rem;
            z-index: 35;
            display: inline-flex;
            align-items: center;
            gap: 0.85rem;
            padding: 0.95rem 1.15rem;
            border-radius: 999px;
            text-decoration: none;
            color: #ffffff;
            background: linear-gradient(135deg, #25d366, #179c4a);
            box-shadow: 0 22px 45px rgba(37, 211, 102, 0.34);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .whatsapp-float:hover {
            transform: translateY(-3px);
            box-shadow: 0 28px 50px rgba(37, 211, 102, 0.38);
        }

        .whatsapp-float svg {
            width: 1.65rem;
            height: 1.65rem;
            fill: currentColor;
            flex: 0 0 auto;
        }

        .whatsapp-float__label {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.1rem;
            line-height: 1.2;
        }

        .whatsapp-float__label strong {
            font-size: 0.86rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 700;
        }

        .whatsapp-float__label small {
            font-size: 0.78rem;
            opacity: 0.92;
        }

        .whatsapp-modal {
            position: fixed;
            inset: 0;
            z-index: 45;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            background: rgba(18, 18, 18, 0.62);
            backdrop-filter: blur(8px);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.28s ease, visibility 0.28s ease;
        }

        .whatsapp-modal.is-visible {
            opacity: 1;
            visibility: visible;
        }

        .whatsapp-dialog {
            width: min(560px, 100%);
            border-radius: 1.7rem;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.82);
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.24);
            overflow: hidden;
            transform: translateY(20px) scale(0.98);
            transition: transform 0.28s ease;
        }

        .whatsapp-modal.is-visible .whatsapp-dialog {
            transform: translateY(0) scale(1);
        }

        .whatsapp-dialog__header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.35rem 1.4rem 1.1rem;
            background: linear-gradient(135deg, rgba(198, 217, 77, 0.22), rgba(255, 255, 255, 0.88));
        }

        .whatsapp-dialog__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            margin-bottom: 0.7rem;
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
            background: rgba(37, 211, 102, 0.12);
            color: #14663a;
            font-size: 0.75rem;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .whatsapp-dialog__eyebrow::before {
            content: "";
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 50%;
            background: #25d366;
        }

        .whatsapp-dialog__header strong {
            display: block;
            font-size: clamp(1.2rem, 3vw, 1.45rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .whatsapp-dialog__header p {
            margin: 0.6rem 0 0;
            color: var(--text-soft);
            line-height: 1.7;
        }

        .whatsapp-close {
            width: 2.8rem;
            height: 2.8rem;
            border: 0;
            border-radius: 999px;
            background: rgba(35, 35, 35, 0.08);
            color: var(--brand-dark);
            font-size: 1.2rem;
            cursor: pointer;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .whatsapp-close:hover {
            background: rgba(35, 35, 35, 0.14);
            transform: rotate(90deg);
        }

        .whatsapp-form {
            display: grid;
            gap: 1rem;
            padding: 1.35rem 1.4rem 1.5rem;
        }

        .whatsapp-form__grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

        .field {
            display: grid;
            gap: 0.45rem;
        }

        .field label {
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--brand-dark);
        }

        .field input,
        .field textarea {
            width: 100%;
            border: 1px solid rgba(35, 35, 35, 0.12);
            border-radius: 1rem;
            padding: 0.95rem 1rem;
            font: inherit;
            color: var(--brand-dark);
            background: rgba(255, 255, 255, 0.94);
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        .field input:focus,
        .field textarea:focus {
            border-color: rgba(37, 211, 102, 0.58);
            box-shadow: 0 0 0 0.28rem rgba(37, 211, 102, 0.14);
            transform: translateY(-1px);
        }

        .field textarea {
            min-height: 148px;
            resize: vertical;
        }

        .whatsapp-form__footer {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 0.9rem;
        }

        .whatsapp-helper {
            max-width: 20rem;
            color: var(--text-soft);
            font-size: 0.86rem;
            line-height: 1.65;
        }

        .whatsapp-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .whatsapp-cancel,
        .whatsapp-submit {
            border: 0;
            border-radius: 999px;
            padding: 0.95rem 1.2rem;
            font: inherit;
            font-size: 0.84rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .whatsapp-cancel {
            background: rgba(35, 35, 35, 0.08);
            color: var(--brand-dark);
        }

        .whatsapp-submit {
            color: #ffffff;
            background: linear-gradient(135deg, #25d366, #179c4a);
            box-shadow: 0 18px 35px rgba(37, 211, 102, 0.24);
        }

        .whatsapp-cancel:hover,
        .whatsapp-submit:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 720px) {
            .whatsapp-float {
                right: 0.85rem;
                bottom: 0.85rem;
                padding: 0.9rem 1rem;
            }

            .whatsapp-float__label small {
                display: none;
            }

            .whatsapp-dialog {
                border-radius: 1.25rem;
            }

            .whatsapp-form__grid,
            .whatsapp-form__footer,
            .whatsapp-actions {
                grid-template-columns: 1fr;
                justify-content: stretch;
            }

            .whatsapp-cancel,
            .whatsapp-submit {
                width: 100%;
            }
        }