/* =========================================================
   GOGOWALLET.COM.IN
   Main Website CSS
   ========================================================= */


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {

    --primary: #2457d6;
    --primary-dark: #1742ad;
    --primary-light: #edf3ff;

    --green: #16a05d;
    --green-dark: #087b43;
    --green-light: #eafaf2;

    --orange: #f59e0b;
    --orange-light: #fff7e6;

    --navy: #13233f;
    --text: #26364f;
    --muted: #66758c;

    --white: #ffffff;
    --bg: #f5f8fc;
    --card: #ffffff;

    --border: #e3e9f2;
    --border-dark: #d3dce9;

    --shadow-sm: 0 5px 18px rgba(22, 43, 78, 0.06);
    --shadow: 0 12px 35px rgba(22, 43, 78, 0.09);
    --shadow-lg: 0 20px 55px rgba(22, 43, 78, 0.13);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;

    --max-width: 1080px;

}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


button {
    font-family: inherit;
}


::selection {
    background: var(--primary);
    color: var(--white);
}


/* =========================================================
   COMMON CONTAINER
   ========================================================= */

.container {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
    padding: 42px 0;
}


.section-heading {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
}


.eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}


.section-heading h2 {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: clamp(25px, 4vw, 34px);
    line-height: 1.25;
    font-weight: 800;
}


.section-heading p {
    color: var(--muted);
    max-width: 720px;
    margin: 0 auto;
}


h1,
h2,
h3,
h4 {
    color: var(--navy);
}


p {
    margin-bottom: 14px;
}


p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.header-inner {
    width: min(calc(100% - 32px), var(--max-width));

    min-height: 74px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: var(--navy);

    font-size: 21px;
    font-weight: 800;
}


.brand img {
    width: 46px;
    height: 46px;

    object-fit: contain;

    border-radius: 10px;
}


.menu-toggle {
    width: 48px;
    height: 44px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    border: 1px solid var(--border);

    background: var(--white);

    border-radius: 11px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.menu-toggle:hover {
    background: var(--primary-light);
    border-color: #cbd8f5;
}


.menu-toggle:active {
    transform: scale(0.96);
}


.menu-toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: var(--navy);

    border-radius: 5px;
}


/* =========================================================
   SIDE MENU
   ========================================================= */

.side-menu {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 1100;

    width: min(350px, 88vw);
    height: 100vh;

    padding-bottom: 25px;

    background: var(--white);

    box-shadow: -15px 0 50px rgba(13, 34, 67, 0.18);

    overflow-y: auto;

    transform: translateX(105%);

    transition: transform 0.28s ease;
}


.side-menu.active {
    transform: translateX(0);
}


.menu-head {
    min-height: 74px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    background: var(--white);

    z-index: 2;
}


.menu-head strong {
    color: var(--navy);
    font-size: 18px;
}


.menu-close {
    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    background: var(--white);

    color: var(--navy);

    border-radius: 10px;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;
}


.menu-links {
    padding: 14px 14px 25px;
}


.menu-links a {
    display: block;

    padding: 12px 14px;

    color: var(--text);

    border-radius: 9px;

    font-size: 14px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


.menu-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
    padding-left: 18px;
}


.menu-links hr {
    height: 1px;

    margin: 13px 8px;

    border: 0;

    background: var(--border);
}


.menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 1050;

    background: rgba(10, 25, 50, 0.52);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    padding: 76px 16px 70px;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(36, 87, 214, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 160, 93, 0.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f4f8ff 100%
        );

    border-bottom: 1px solid var(--border);

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -120px;
    bottom: -140px;

    border-radius: 50%;

    background: rgba(36, 87, 214, 0.05);
}


.hero::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: 30px;

    border-radius: 50%;

    background: rgba(22, 160, 93, 0.05);
}


.hero-inner {
    position: relative;
    z-index: 1;

    width: min(900px, 100%);

    margin: 0 auto;

    text-align: center;
}


.hero-logo {
    width: 116px;
    height: 116px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 28px;

    box-shadow: var(--shadow);

    overflow: hidden;
}


.hero-logo img {
    width: 82px;
    height: 82px;

    object-fit: contain;
}


.hero-badge {
    display: inline-flex;

    padding: 6px 13px;

    margin-bottom: 14px;

    color: var(--primary);

    background: var(--primary-light);

    border: 1px solid #d8e3ff;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
}


.hero h1 {
    max-width: 820px;

    margin: 0 auto 17px;

    font-size: clamp(31px, 6vw, 52px);

    line-height: 1.1;

    letter-spacing: -1.4px;

    font-weight: 800;
}


.hero-text {
    max-width: 780px;

    margin: 0 auto 24px;

    color: var(--muted);

    font-size: clamp(15px, 2vw, 18px);

    line-height: 1.8;
}


.hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 17px;
}


.btn {
    min-height: 48px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 20px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    border: 1px solid transparent;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-primary {
    color: var(--white);

    background: var(--green);

    box-shadow: 0 9px 22px rgba(22, 160, 93, 0.20);
}


.btn-primary:hover {
    background: var(--green-dark);

    box-shadow: 0 12px 26px rgba(22, 160, 93, 0.25);
}


.btn-secondary {
    color: var(--primary);

    background: var(--white);

    border-color: #ccd9f4;
}


.btn-secondary:hover {
    background: var(--primary-light);
}


.hero-note {
    max-width: 650px;

    margin: 0 auto;

    color: #7a8799;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   CODE CARD
   ========================================================= */

.code-card {
    padding: 22px 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background:
        linear-gradient(
            135deg,
            #eef4ff,
            #f8fbff
        );

    border: 1px solid #d9e4f8;

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}


.small-label {
    display: block;

    margin-bottom: 3px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.code-card h2 {
    margin-bottom: 5px;

    font-size: 21px;
}


.code-card p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


.code-placeholder {
    min-width: 150px;

    padding: 13px 17px;

    text-align: center;

    color: var(--primary);

    background: var(--white);

    border: 1px dashed #9eb3e0;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   CONTENT CARDS
   ========================================================= */

.content-card {
    padding: 28px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}


.content-card p {
    color: var(--text);
}


.content-card strong {
    color: var(--navy);
}


/* =========================================================
   LINK GRID
   ========================================================= */

.link-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;
}


.info-link {
    min-height: 120px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.info-link:hover {
    transform: translateY(-3px);

    border-color: #bfd0f2;

    box-shadow: var(--shadow);
}


.info-link strong {
    margin-bottom: 5px;

    color: var(--navy);

    font-size: 15px;
}


.info-link span {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   SPECIFICATION TABLE
   ========================================================= */

.spec-table {
    margin-top: 23px;

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;
}


.spec-row {
    min-height: 54px;

    padding: 12px 16px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}


.spec-row:last-child {
    border-bottom: 0;
}


.spec-row:nth-child(even) {
    background: #fafcff;
}


.spec-row span {
    color: var(--muted);

    font-size: 13px;
}


.spec-row strong {
    color: var(--navy);

    font-size: 13px;

    text-align: right;
}


/* =========================================================
   STEPS
   ========================================================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.step-card {
    position: relative;

    padding: 24px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    overflow: hidden;
}


.step-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 15px;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 10px;

    font-size: 12px;

    font-weight: 800;
}


.step-card h3 {
    margin-bottom: 7px;

    font-size: 17px;

    line-height: 1.3;
}


.step-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   WARNING
   ========================================================= */

.warning-box {
    margin-top: 18px;

    padding: 20px;

    background: var(--orange-light);

    border: 1px solid #f5d99a;

    border-left: 4px solid var(--orange);

    border-radius: 12px;
}


.warning-box strong {
    display: block;

    margin-bottom: 5px;

    color: #9a6200;

    font-size: 15px;
}


.warning-box p {
    margin: 0;

    color: #76591f;

    font-size: 13px;
}


/* =========================================================
   UPDATE CARD
   ========================================================= */

.update-card {
    padding: 24px;

    display: flex;

    align-items: flex-start;

    gap: 17px;

    background: var(--white);

    border: 1px solid #cfe0f8;

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}


.update-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 12px;

    font-size: 23px;

    font-weight: 700;
}


.update-card h2 {
    margin-bottom: 6px;

    font-size: 21px;
}


.update-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.feature-card {
    padding: 24px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}


.feature-card:hover {
    transform: translateY(-4px);

    border-color: #cad8f1;

    box-shadow: var(--shadow);
}


.feature-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 12px;

    font-size: 13px;

    font-weight: 800;
}


.feature-card h3 {
    margin-bottom: 7px;

    font-size: 17px;

    line-height: 1.35;
}


.feature-card p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   SCREENSHOTS
   ========================================================= */

.screenshot-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}


.screenshot-card {
    padding: 12px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);

    overflow: hidden;
}


.screenshot-card img {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    background: #eef3f9;

    border-radius: 10px;

    margin-bottom: 12px;
}


.screenshot-card h3 {
    padding: 0 4px;

    margin-bottom: 3px;

    font-size: 14px;
}


.screenshot-card p {
    padding: 0 4px;

    margin: 0;

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   NUMBER LIST
   ========================================================= */

.number-list {
    padding-left: 23px;

    margin: 20px 0;
}


.number-list li {
    margin-bottom: 9px;

    padding-left: 5px;

    color: var(--text);

    font-size: 14px;
}


.text-button {
    display: inline-flex;

    margin-top: 10px;

    color: var(--primary);

    font-size: 14px;

    font-weight: 800;
}


.text-button:hover {
    color: var(--primary-dark);

    text-decoration: underline;
}


/* =========================================================
   TWO COLUMN
   ========================================================= */

.two-column {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


/* =========================================================
   REFERRAL CARD
   ========================================================= */

.referral-card {
    padding: 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background:
        linear-gradient(
            135deg,
            #eef4ff,
            #f9fbff
        );

    border: 1px solid #d7e2f7;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);
}


.referral-card h2 {
    margin-bottom: 7px;

    font-size: 25px;
}


.referral-card p {
    max-width: 700px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   WORKFLOW
   ========================================================= */

.workflow {
    margin: 25px 0;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 8px;
}


.workflow > div {
    min-height: 110px;

    padding: 15px 10px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    background: #f8faff;

    border: 1px solid var(--border);

    border-radius: 12px;
}


.workflow strong {
    margin-bottom: 7px;

    color: var(--primary);

    font-size: 19px;
}


.workflow span {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   NOTICE
   ========================================================= */

.notice-box {
    margin-top: 18px;

    padding: 17px 18px;

    background: var(--primary-light);

    border: 1px solid #d7e3fc;

    border-radius: 11px;

    color: var(--text);

    font-size: 13px;
}


.notice-box strong {
    color: var(--primary);
}


/* =========================================================
   WITHDRAWAL
   ========================================================= */

.withdrawal-card {
    padding: 32px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f3fbf7
        );

    border: 1px solid #d6eadd;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);
}


.withdrawal-card h2 {
    margin-bottom: 9px;

    font-size: 28px;
}


.withdrawal-card > p {
    max-width: 850px;

    color: var(--muted);

    font-size: 14px;
}


.withdrawal-card ul {
    margin: 20px 0 25px;

    padding-left: 20px;
}


.withdrawal-card li {
    margin-bottom: 7px;

    color: var(--text);

    font-size: 13px;
}


/* =========================================================
   SAFETY
   ========================================================= */

.safety-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}


.safety-card {
    padding: 22px 18px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}


.safety-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    color: #a86b00;

    background: var(--orange-light);

    border-radius: 10px;

    font-size: 11px;

    font-weight: 800;
}


.safety-card h3 {
    margin-bottom: 7px;

    font-size: 16px;

    line-height: 1.35;
}


.safety-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;
}


.center-button {
    display: flex;

    width: fit-content;

    margin: 22px auto 0;

    padding: 11px 17px;

    color: var(--primary);

    background: var(--primary-light);

    border: 1px solid #d2def7;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 800;

    transition: 0.2s ease;
}


.center-button:hover {
    background: #e1eaff;
}


/* =========================================================
   PROS / CONSIDERATIONS
   ========================================================= */

.pros-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


.pros-card {
    padding: 25px;

    background: var(--white);

    border: 1px solid #d7e8de;

    border-radius: var(--radius);

    box-shadow: var(--shadow-sm);
}


.pros-card.consideration {
    border-color: #f0dfb9;

    background: #fffdf8;
}


.pros-card h3 {
    margin-bottom: 14px;

    font-size: 20px;
}


.pros-card ul {
    list-style: none;
}


.pros-card li {
    position: relative;

    padding-left: 25px;

    margin-bottom: 9px;

    color: var(--text);

    font-size: 13px;
}


.pros-card li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--green);

    font-weight: 800;
}


.pros-card.consideration li::before {
    content: "!";
    color: var(--orange);
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    max-width: 900px;

    margin: 0 auto;
}


.faq-item {
    margin-bottom: 10px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);
}


.faq-item summary {
    position: relative;

    padding: 17px 48px 17px 18px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    list-style: none;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--primary);

    font-size: 21px;

    font-weight: 500;
}


.faq-item[open] summary::after {
    content: "−";
}


.faq-item p {
    padding: 0 18px 18px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


.faq-more {
    text-align: center;

    margin-top: 22px;
}


/* =========================================================
   FINAL CARD
   ========================================================= */

.final-card {
    padding: 34px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #edf4ff,
            #ffffff
        );

    border: 1px solid #d6e2f7;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}


.final-card h2 {
    max-width: 800px;

    margin: 0 auto 13px;

    font-size: clamp(24px, 4vw, 31px);

    line-height: 1.25;
}


.final-card p {
    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    color: var(--muted);

    font-size: 13px;
}


.final-links {
    margin-top: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;
}


.final-links a {
    padding: 8px 12px;

    color: var(--primary);

    background: var(--white);

    border: 1px solid #d5e0f3;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    transition: 0.2s ease;
}


.final-links a:hover {
    background: var(--primary-light);

    border-color: #bfd0f0;
}


/* =========================================================
   DISCLAIMER
   ========================================================= */

.disclaimer-box {
    padding: 25px;

    background: #fffaf0;

    border: 1px solid #f0dfb9;

    border-left: 4px solid var(--orange);

    border-radius: 14px;
}


.disclaimer-box h2 {
    margin-bottom: 9px;

    font-size: 20px;
}


.disclaimer-box p {
    color: #695a39;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 25px;

    background: #101d33;

    color: #c5d0df;
}


.footer-inner {
    width: min(calc(100% - 32px), var(--max-width));

    margin: 0 auto;

    padding: 48px 0 22px;
}


.footer-brand {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 32px;
}


.footer-brand img {
    width: 50px;
    height: 50px;

    object-fit: contain;

    background: var(--white);

    border-radius: 10px;
}


.footer-brand h2 {
    margin-bottom: 2px;

    color: var(--white);

    font-size: 20px;
}


.footer-brand p {
    margin: 0;

    color: #9eabbc;

    font-size: 12px;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

    padding-bottom: 32px;

    border-bottom: 1px solid rgba(255,255,255,0.10);
}


.footer-grid h3 {
    margin-bottom: 12px;

    color: var(--white);

    font-size: 14px;
}


.footer-grid a {
    display: block;

    width: fit-content;

    margin-bottom: 7px;

    color: #aebaca;

    font-size: 12px;

    transition: color 0.2s ease;
}


.footer-grid a:hover {
    color: var(--white);
}


.footer-bottom {
    padding-top: 20px;

    display: flex;

    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;
}


.footer-bottom p {
    margin: 0;

    color: #8290a4;

    font-size: 11px;
}


/* =========================================================
   FOCUS ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(36, 87, 214, 0.35);

    outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .container {
        padding: 36px 0;
    }


    .link-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .steps {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .screenshot-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .safety-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .workflow {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {

    body {
        font-size: 15px;
    }


    .container {
        width: min(calc(100% - 24px), var(--max-width));

        padding: 30px 0;
    }


    .header-inner {
        width: calc(100% - 24px);

        min-height: 66px;
    }


    .brand {
        font-size: 18px;
    }


    .brand img {
        width: 40px;
        height: 40px;
    }


    .menu-toggle {
        width: 45px;
        height: 42px;
    }


    .hero {
        padding: 55px 12px 48px;
    }


    .hero-logo {
        width: 95px;
        height: 95px;

        border-radius: 23px;
    }


    .hero-logo img {
        width: 67px;
        height: 67px;
    }


    .hero h1 {
        font-size: 32px;

        letter-spacing: -0.8px;
    }


    .hero-text {
        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .section-heading {
        margin-bottom: 20px;
    }


    .section-heading h2 {
        font-size: 25px;
    }


    .content-card {
        padding: 21px;
    }


    .code-card {
        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }


    .code-placeholder {
        width: 100%;
    }


    .link-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .info-link {
        min-height: 100px;
    }


    .spec-row {
        align-items: flex-start;

        flex-direction: column;

        gap: 3px;
    }


    .spec-row strong {
        text-align: left;
    }


    .steps {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .step-card {
        padding: 20px;
    }


    .update-card {
        padding: 20px;
    }


    .update-card h2 {
        font-size: 19px;
    }


    .feature-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .feature-card {
        padding: 21px;
    }


    .screenshot-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;
    }


    .screenshot-card {
        padding: 8px;
    }


    .screenshot-card img {
        aspect-ratio: 1 / 1;
    }


    .screenshot-card h3 {
        font-size: 12px;
    }


    .screenshot-card p {
        font-size: 10px;
    }


    .two-column {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .referral-card {
        padding: 22px;

        flex-direction: column;

        align-items: flex-start;
    }


    .referral-card h2 {
        font-size: 23px;
    }


    .referral-card .btn {
        width: 100%;
    }


    .workflow {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;
    }


    .workflow > div {
        min-height: 90px;
    }


    .withdrawal-card {
        padding: 24px 20px;
    }


    .withdrawal-card h2 {
        font-size: 24px;
    }


    .withdrawal-card .btn {
        width: 100%;
    }


    .safety-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .safety-card {
        padding: 20px;
    }


    .pros-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }


    .pros-card {
        padding: 21px;
    }


    .faq-item summary {
        padding: 16px 45px 16px 15px;

        font-size: 13px;
    }


    .faq-item p {
        padding: 0 15px 16px;

        font-size: 12px;
    }


    .final-card {
        padding: 25px 19px;
    }


    .final-links {
        flex-direction: column;

        align-items: stretch;
    }


    .final-links a {
        text-align: center;
    }


    .disclaimer-box {
        padding: 20px;
    }


    .footer-inner {
        width: calc(100% - 24px);

        padding: 38px 0 18px;
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px 15px;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 4px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

    .hero h1 {
        font-size: 28px;
    }


    .hero-badge {
        font-size: 10px;
    }


    .screenshot-grid {
        grid-template-columns: 1fr;
    }


    .workflow {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}