:root {
    --navy: #061426;
    --navy-2: #0b2038;
    --navy-3: #102a49;
    --gold: #d6a927;
    --gold-2: #f2cf70;
    --white: #ffffff;
    --background: #f7f8fa;
    --text: #162033;
    --muted: #6f7888;
    --border: #e3e6eb;
    --green: #22a861;
    --red: #d84a4a;
    --container: 1320px;
    --shadow: 0 10px 30px rgba(10, 25, 43, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

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

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

button,
select {
    cursor: pointer;
}

.container {
    width: calc(100% - 40px);
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
}

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

.positive {
    color: #51d58c !important;
}

.negative {
    color: #ff7272 !important;
}

.neutral {
    color: #aab4c1 !important;
}

.button {
    min-height: 42px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #152033;
    background: linear-gradient(180deg, #f2cb63, #c89513);
    border: 0;
    border-radius: 8px;
    font-weight: 700;
}

.button-small {
    min-height: 36px;
    padding: 0 16px;
    font-size: 13px;
}

.section {
    padding: 28px 0;
}

.section-tight {
    padding: 20px 0;
}

.section-topless {
    padding-top: 0;
}

.panel {
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 3px 16px rgba(9, 24, 42, 0.035);
}

.section-label {
    color: #26364b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.panel h2 {
    margin: 4px 0 0;
    font-size: 22px;
}

.panel-title-row {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.panel-title-row > a {
    color: #46546a;
    font-size: 13px;
}

/* Header */

.gr-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: #07182d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gr-header__inner {
    width: calc(100% - 36px);
    max-width: 1540px;
    height: 86px;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.gr-header__brand {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    overflow: visible;
}

.gr-header__logo {
    width: 245px;
    max-width: none;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.gr-header__nav {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.25vw, 25px);
}

.gr-header__nav a {
    display: inline-flex;
    align-items: center;
    color: #f1f4f8;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: color 160ms ease;
}

.gr-header__nav a:hover {
    color: #dcb24f;
}

.gr-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
}

.gr-header__watchlist {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f2f5f8;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.gr-header__star {
    color: #ddb348;
    font-size: 19px;
    line-height: 1;
}

.gr-header__currency {
    position: relative;
}

.gr-header__currency::after {
    content: "⌄";
    position: absolute;
    top: 50%;
    right: 11px;
    color: #aeb8c5;
    font-size: 11px;
    pointer-events: none;
    transform: translateY(-56%);
}

.gr-header__currency select {
    width: 70px;
    height: 34px;
    padding: 0 26px 0 12px;
    appearance: none;
    color: #ffffff;
    background: #0b2038;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    outline: none;
    font-size: 11px;
    font-weight: 700;
}

.gr-header__currency select:hover,
.gr-header__currency select:focus {
    border-color: rgba(220, 178, 79, 0.7);
}

.gr-header__signup {
    min-width: 68px;
    height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #11213a;
    background: linear-gradient(135deg, #f3d779 0%, #dcae43 58%, #bc801d 100%);
    border: 1px solid #e4bd5f;
    border-radius: 5px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 5px 14px rgba(173, 116, 19, 0.16);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.gr-header__signup:hover {
    color: #11213a;
    filter: brightness(1.05);
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0 22px;
    color: #ffffff;
    background:
        radial-gradient(circle at 58% 30%, rgba(218, 169, 39, 0.14), transparent 25%),
        linear-gradient(135deg, #061426, #0b2038 70%, #061426);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image: radial-gradient(circle, #d6a927 1px, transparent 1.2px);
    background-size: 12px 12px;
    -webkit-mask-image: linear-gradient(90deg, transparent 8%, #000 35%, #000 75%, transparent 95%);
    mask-image: linear-gradient(90deg, transparent 8%, #000 35%, #000 75%, transparent 95%);
}

.hero-grid {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-columns: 1.05fr 0.75fr 1.15fr;
    align-items: center;
    gap: 24px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 22px;
    color: #d8dfeb;
    font-size: 12px;
}

.hero h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    font-weight: 600;
    line-height: 1.02;
}

.hero h1 span {
    display: block;
    color: var(--gold);
}

.hero-intro {
    max-width: 510px;
    color: #d7dee8;
    font-size: 16px;
}

.hero-benefits {
    margin: 28px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-benefits div {
    padding: 16px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-benefits div:last-child {
    border-right: 0;
}

.hero-benefits strong {
    display: block;
    color: var(--gold-2);
    font-size: 16px;
}

.hero-benefits span {
    color: #d4dbe5;
    font-size: 10px;
}

.hero-signup {
    max-width: 470px;
    display: flex;
}

.hero-signup input {
    min-width: 0;
    flex: 1;
    padding: 13px 15px;
    border: 0;
    border-radius: 8px 0 0 8px;
}

.hero-signup button {
    border-radius: 0 8px 8px 0;
}

.micro-copy {
    color: #aeb8c7;
    font-size: 11px;
}

.gold-visual {
    position: relative;
    height: 420px;
    align-self: end;
}

.market-line {
    position: absolute;
    top: 70px;
    right: -30px;
    left: -80px;
    height: 160px;
    transform: rotate(-4deg);
}

.market-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        transparent 44%,
        rgba(214, 169, 39, 0.9) 45%,
        rgba(214, 169, 39, 0.9) 46%,
        transparent 47%
    );
}

.gold-stack {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 260px;
    height: 320px;
    transform: translateX(-50%);
}

.bar {
    position: absolute;
    background: linear-gradient(145deg, #ffdf75, #b87409 70%, #6f3d00);
    border: 1px solid rgba(255, 240, 173, 0.7);
    box-shadow: 0 20px 28px rgba(0, 0, 0, 0.38);
}

.bar-main {
    bottom: 8px;
    left: 78px;
    width: 112px;
    height: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #513000;
    text-align: center;
    clip-path: polygon(17% 0, 83% 0, 100% 100%, 0 100%);
    transform: rotate(4deg);
}

.bar-main b {
    font-size: 17px;
}

.bar-main span {
    font-family: Georgia, serif;
    font-size: 23px;
}

.bar-main small {
    margin-top: 28px;
    font-size: 9px;
}

.bar-back {
    right: 0;
    bottom: 25px;
    width: 105px;
    height: 120px;
    transform: skewY(-10deg);
}

.bar-side {
    bottom: 22px;
    left: 5px;
    width: 105px;
    height: 135px;
    transform: skewY(8deg);
}

.coin {
    position: absolute;
    bottom: 12px;
    width: 52px;
    height: 18px;
    background: linear-gradient(#f9d55c, #9d5d00);
    border: 1px solid #f3d170;
    border-radius: 50%;
    box-shadow:
        0 -8px 0 #c4830b,
        0 -16px 0 #e6b42d;
}

.coin-one {
    left: 8px;
}

.coin-two {
    right: 4px;
}

.coin-three {
    right: 42px;
    bottom: 4px;
}

/* Live price card */

.live-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: rgba(9, 31, 54, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

.live-card-head {
    padding: 17px 18px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    text-transform: uppercase;
}

.live-card-head span {
    color: #52d78d;
    font-size: 11px;
}

.currency-tabs {
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.currency-tabs button {
    padding: 7px 13px;
    flex: 0 0 auto;
    color: #cbd4df;
    background: #0c253f;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    font-size: 11px;
}

.currency-tabs button.active {
    color: #172033;
    background: linear-gradient(180deg, #f1cb65, #c89415);
}

.price-panel {
    display: none;
}

.price-panel.active {
    display: block;
}

.price-row {
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 1fr auto 72px;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.price-row span {
    color: #dce2ea;
}

.price-row strong {
    font-size: 14px;
}

.price-row em {
    text-align: right;
    font-style: normal;
}

.mini-chart {
    height: 90px;
    padding: 7px 15px;
    color: #e2b332;
}

.mini-chart svg {
    width: 100%;
    height: 100%;
}

.live-card-foot {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    color: #9baabd;
    font-size: 10px;
}

/* Quick answers */

.quick-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.quick-row {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
}

.quick-row strong {
    margin-right: 8px;
    font-size: 12px;
    text-transform: uppercase;
}

.quick-row a {
    padding: 8px 13px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 11px;
}

/* Advertisement */

.ad-slot {
    height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c8d1dd;
    background: linear-gradient(90deg, #0d2948, #122f51);
    border-radius: 7px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ad-slot small {
    margin-top: 2px;
    font-size: 10px;
}

/* Gauge and summary */

.three-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
}

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

.gauge {
    position: relative;
    max-width: 320px;
    height: 210px;
    margin: 6px auto 0;
    overflow: hidden;
}

.gauge-arc {
    position: absolute;
    right: 35px;
    bottom: -115px;
    left: 35px;
    height: 260px;
    background: conic-gradient(
        from 270deg,
        #d93727 0 18%,
        #e58f14 18% 34%,
        #d7bb2c 34% 50%,
        #75a93b 50% 68%,
        #15924e 68% 75%,
        transparent 75%
    );
    border-radius: 50%;
    -webkit-mask: radial-gradient(circle at center, transparent 0 53%, #000 54%);
    mask: radial-gradient(circle at center, transparent 0 53%, #000 54%);
}

.gauge-needle {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 105px;
    height: 5px;
    background: #0b2038;
    border-radius: 5px;
    transform: rotate(-28deg);
    transform-origin: left center;
}

.gauge-score {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 36px;
    font-weight: 800;
}

.gauge-score small {
    font-size: 13px;
}

.gauge-panel h3 {
    margin: 4px 0;
    color: #276a45;
}

.gauge-panel p,
.note {
    color: var(--muted);
    font-size: 12px;
}

.signal-list {
    padding: 0;
    margin: 12px 0;
    list-style: none;
}

.signal-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #edf0f4;
    font-size: 12px;
}

.summary-item {
    padding: 11px 0;
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #edf0f4;
}

.summary-item > span {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: #c38d0c;
    background: #fff7df;
    border-radius: 50%;
    font-size: 20px;
}

.summary-item p {
    margin: 0;
    font-size: 12px;
}

/* Chart */

.chart-grid {
    display: grid;
    grid-template-columns: 2fr 0.8fr;
    gap: 16px;
}

.chart-controls {
    display: flex;
    gap: 8px;
}

.chart-controls select {
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.canvas-wrap {
    position: relative;
    height: 360px;
}

.canvas-wrap canvas {
    width: 100%;
    height: 100%;
}

.chart-empty {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--muted);
}

.chart-source {
    color: var(--muted);
    font-size: 10px;
}

.signal-table > div {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #edf0f4;
    font-size: 12px;
}

/* Tools */

.tools-panel,
.country-panel {
    padding: 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 9px;
}

.tool-card {
    min-height: 118px;
    padding: 13px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.tool-card > span {
    color: #c49216;
    font-size: 22px;
}

.tool-card strong {
    font-size: 11px;
}

.tool-card small {
    color: var(--muted);
    font-size: 9px;
}

/* Countries */

.country-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 9px;
}

.country-card {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.country-card small {
    display: block;
    color: var(--muted);
    font-size: 9px;
}

.country-card b {
    font-size: 13px;
}

.country-card span {
    font-size: 10px;
}

/* News and FAQ */

.split-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-image {
    height: 112px;
    border-radius: 8px;
}

.gold-image {
    background: linear-gradient(145deg, #6a3900, #eab833 55%, #8b4e00);
}

.bank-image {
    background: linear-gradient(#b9c5d0 0 45%, #f1f2f3 45% 60%, #9ba8b6 60%);
}

.chart-image {
    position: relative;
    background: linear-gradient(135deg, #081b31, #0b2b4c);
}

.chart-image::after {
    content: "";
    position: absolute;
    inset: 25px 12px;
    background: linear-gradient(
        165deg,
        transparent 48%,
        #e3b432 49%,
        #e3b432 52%,
        transparent 53%
    );
}

.news-card small {
    color: #8a93a2;
    font-size: 9px;
}

.news-card strong {
    font-size: 12px;
}

.news-card span {
    color: var(--muted);
    font-size: 10px;
}

.faq details {
    padding: 13px 0;
    border-bottom: 1px solid #e8ebef;
}

.faq summary {
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.faq p {
    color: var(--muted);
    font-size: 11px;
}

/* Newsletter */

.newsletter {
    padding: 22px 32px;
    display: grid;
    grid-template-columns: auto 1fr 1.1fr;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    background: linear-gradient(90deg, #0b2747, #07182d);
    border-radius: 10px;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    color: #f0c24a;
    border: 1px solid #d7aa2a;
    border-radius: 50%;
    font-size: 28px;
}

.newsletter h2 {
    margin: 0;
    font-size: 18px;
}

.newsletter p {
    margin: 3px 0 0;
    color: #c6cfda;
    font-size: 11px;
}

.newsletter form {
    min-width: 0;
    display: flex;
}

.newsletter input {
    min-width: 0;
    flex: 1;
    padding: 13px;
    border: 0;
    border-radius: 7px 0 0 7px;
}

.newsletter form .button {
    border-radius: 0 7px 7px 0;
}

/* Footer */

.trust-footer {
    padding: 20px 0 0;
    display: flex;
    justify-content: space-around;
    color: #3d4a5f;
    font-size: 11px;
}

.site-footer {
    margin-top: 22px;
    padding: 34px 0 18px;
    color: #c0cad6;
    background: #061426;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 28px;
}

.footer-brand img {
    width: 210px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 280px;
    font-size: 11px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
}

.footer-grid strong {
    margin-bottom: 5px;
    color: #ffffff;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #94a2b3;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 9px;
}

/* Responsive: medium desktop/tablet */

@media screen and (max-width: 1250px) {
    .gr-header__inner {
        grid-template-columns: 245px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .gr-header__logo {
        width: 215px;
    }

    .gr-header__nav {
        gap: 13px;
    }

    .gr-header__nav a {
        font-size: 11px;
    }

    .tools-grid,
    .country-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media screen and (max-width: 1100px) {
    .gr-header__inner {
        height: 76px;
        grid-template-columns: 1fr auto;
    }

    .gr-header__nav,
    .gr-header__watchlist {
        display: none;
    }

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

    .gold-visual {
        display: none;
    }

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

    .summary-panel {
        grid-column: 1 / -1;
    }
}

/* Responsive: mobile */

@media screen and (max-width: 760px) {
    .container {
        width: calc(100% - 24px);
    }

    .gr-header__inner {
        width: 100%;
        height: 104px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .gr-header__brand {
        height: 100%;
        min-width: 0;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
    }

    .gr-header__logo {
        width: 290px;
        max-width: none;
        height: auto;
        margin: 0;
        object-fit: contain;
        object-position: left center;
        transform: translateX(-27px);
    }

    .gr-header__nav,
    .gr-header__watchlist,
    .gr-header__currency {
        display: none;
    }

    .gr-header__actions {
        margin-left: auto;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .gr-header__signup {
        min-width: 96px;
        height: 52px;
        padding: 0 18px;
        border-radius: 8px;
        font-size: 17px;
    }

    .hero {
        padding-top: 16px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 44px;
    }

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

    .gold-visual {
        display: none;
    }

    .live-card {
        margin-top: 10px;
    }

    .three-grid,
    .chart-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .newsletter-icon {
        margin-right: auto;
        margin-left: auto;
    }

    .newsletter form {
        width: 100%;
    }

    .trust-footer {
        flex-wrap: wrap;
        gap: 12px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
    }

    .quick-row {
        padding-left: 4px;
    }

    .chart-controls {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .gr-header__inner {
        height: 96px;
        padding: 0 14px;
        gap: 8px;
    }

    .gr-header__logo {
        width: 255px;
        transform: translateX(-24px);
    }

    .gr-header__signup {
        min-width: 86px;
        height: 48px;
        padding: 0 14px;
        font-size: 16px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-intro {
        font-size: 15px;
    }

    .hero-signup {
        flex-direction: column;
        gap: 8px;
    }

    .hero-signup input,
    .hero-signup button {
        width: 100%;
        border-radius: 8px;
    }

    .tools-grid,
    .country-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .newsletter form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter input,
    .newsletter form .button {
        width: 100%;
        border-radius: 7px;
    }

    .price-row {
        grid-template-columns: 1fr auto;
    }

    .price-row em {
        grid-column: 2;
    }
}
