/* ==========================================================================
   GetTrade — Trading & Investment theme
   Rebuilt from the kit's own design tokens (Elementor kit-19 / post-45 header /
   post-71 footer / post-1155 home / post-1062 about / post-216 contact).

   Colours, type scale, spacing, radii and button behaviour below are the kit's
   real values, not approximations.
   ========================================================================== */

:root {
    /* --- palette (elementor-kit-19 global colours) --- */
    --gt-navy:      #0C243C;   /* --e-global-color-text     */
    --gt-teal:      #55C2C3;   /* --e-global-color-efdb08d  — primary accent */
    --gt-yellow:    #FFD10F;   /* --e-global-color-a185853  — secondary accent */
    --gt-gray:      #7E8C9C;   /* --e-global-color-282b2a2  — body / muted */
    --gt-light:     #F5F5F5;   /* --e-global-color-308e809  — soft surface */
    --gt-line:      #C9D1D5;   /* --e-global-color-secondary */
    --gt-line-2:    #C2CAD0;   /* --e-global-color-80f7ee8  */
    --gt-white:     #FFFFFF;
    --gt-veil:      rgba(12, 36, 60, .67);  /* #0C243CAB */

    /* --- type --- */
    --gt-head:  'Oxygen', -apple-system, BlinkMacSystemFont, sans-serif;
    --gt-body:  'Noto Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --gt-h1: 65px;  --gt-h2: 46px;  --gt-h3: 35px;
    --gt-h4: 25px;  --gt-h5: 18px;  --gt-eyebrow: 18px;
    --gt-text: 16px; --gt-lead: 22px; --gt-small: 14px;
    --gt-display: 72px;

    /* --- metrics --- */
    --gt-container: 1280px;
    --gt-radius:    5px;
    --gt-radius-lg: 10px;
    --gt-header-h:  86px;
    --gt-gap:       20px;

    --gt-shadow:    0 10px 40px rgba(12, 36, 60, .08);
    --gt-shadow-lg: 0 24px 60px rgba(12, 36, 60, .14);
    --gt-ease:      cubic-bezier(.25, .8, .25, 1);
}

@media (max-width: 1024px) {
    :root {
        --gt-h1: 43px; --gt-h2: 33px; --gt-h3: 27px;
        --gt-h4: 21px; --gt-h5: 17px; --gt-eyebrow: 16px;
        --gt-text: 15px; --gt-lead: 20px; --gt-small: 13px;
        --gt-display: 54px;
        --gt-header-h: 72px;
    }
}

@media (max-width: 767px) {
    :root {
        --gt-h1: 33px; --gt-h2: 26px; --gt-h3: 23px;
        --gt-h4: 19px; --gt-h5: 16px; --gt-eyebrow: 15px;
        --gt-text: 14px; --gt-lead: 18px; --gt-small: 12px;
        --gt-display: 44px;
    }
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

body {
    margin: 0;
    font-family: var(--gt-body);
    font-size: var(--gt-text);
    line-height: 1.5;
    color: var(--gt-navy);
    background: var(--gt-white);
    padding-top: var(--gt-header-h);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    margin: 0 0 .5em;
    font-family: var(--gt-head);
    font-weight: 700;
    color: var(--gt-navy);
    text-transform: capitalize;
}

h1 { font-size: var(--gt-h1); line-height: 1;    letter-spacing: -2px; }
h2 { font-size: var(--gt-h2); line-height: 1.1; }
h3 { font-size: var(--gt-h3); line-height: 1.1; }
h4 { font-size: var(--gt-h4); line-height: 1.1; }
h5 { font-size: var(--gt-h5); line-height: 1.2; }

p { margin: 0 0 1em; }

a { color: var(--gt-navy); text-decoration: none; transition: color .25s var(--gt-ease); }
a:hover { color: var(--gt-gray); text-decoration: none; }

img { max-width: 100%; height: auto; }

::selection { background: var(--gt-teal); color: var(--gt-navy); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.gt-container {
    width: 100%;
    max-width: var(--gt-container);
    margin: 0 auto;
    padding: 0 20px;
}

.gt-section { padding: 100px 0; position: relative; }
.gt-section--sm { padding: 70px 0; }
.gt-section--light { background: var(--gt-light); }
.gt-section--navy { background: var(--gt-navy); color: var(--gt-line); }

.gt-section--navy h1, .gt-section--navy h2,
.gt-section--navy h3, .gt-section--navy h4,
.gt-section--navy h5 { color: var(--gt-white); }

@media (max-width: 1024px) {
    .gt-section { padding: 70px 0; }
    .gt-section--sm { padding: 50px 0; }
}

/* Two-column split used across the kit */
.gt-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.gt-split--wide-left  { grid-template-columns: 1.15fr 1fr; }
.gt-split--wide-right { grid-template-columns: 1fr 1.15fr; }

/* prose layouts anchor their sidebar to the top rather than centring it */
.gt-split--top { align-items: start; }

@media (max-width: 991px) {
    .gt-split,
    .gt-split--wide-left,
    .gt-split--wide-right { grid-template-columns: 1fr; gap: 40px; }
    .gt-split .gt-order-first { order: -1; }
}

.gt-grid { display: grid; gap: 30px; }
.gt-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gt-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gt-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 991px) {
    .gt-grid--3, .gt-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .gt-grid--2, .gt-grid--3, .gt-grid--4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

/* h6 in the kit is the teal uppercase eyebrow */
.gt-eyebrow {
    display: block;
    margin: 0 0 12px;
    font-family: var(--gt-body);
    font-size: var(--gt-eyebrow);
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gt-teal);
}

.gt-eyebrow--yellow { color: var(--gt-yellow); }

.gt-head { max-width: 700px; margin-bottom: 55px; }
.gt-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.gt-head h2 { margin-bottom: 18px; }
.gt-head p { margin-bottom: 0; color: var(--gt-gray); }

.gt-section--navy .gt-head p { color: var(--gt-line); }

.gt-lead { font-size: var(--gt-lead); line-height: 1.4; color: var(--gt-gray); }
.gt-muted { color: var(--gt-gray); }
.gt-teal-text { color: var(--gt-teal); }

/* --------------------------------------------------------------------------
   Buttons — kit spec: teal fill, navy label, 3px border, 5px radius,
   hover swaps to outline.
   -------------------------------------------------------------------------- */

.gt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: var(--gt-body);
    font-size: var(--gt-text);
    font-weight: 600;
    line-height: 1;
    letter-spacing: .3px;
    text-transform: capitalize;
    color: var(--gt-navy);
    background-color: var(--gt-teal);
    border: 3px solid transparent;
    border-radius: var(--gt-radius);
    cursor: pointer;
    transition: background-color .3s var(--gt-ease), border-color .3s var(--gt-ease),
                color .3s var(--gt-ease);
}

.gt-btn:hover {
    background-color: transparent;
    border-color: var(--gt-teal);
    color: var(--gt-navy);
}

.gt-btn--yellow { background-color: var(--gt-yellow); }
.gt-btn--yellow:hover { background-color: transparent; border-color: var(--gt-yellow); }

.gt-btn--outline {
    background-color: transparent;
    border-color: var(--gt-teal);
}
.gt-btn--outline:hover { background-color: var(--gt-teal); border-color: transparent; }

/* on navy sections the outline label must stay legible */
.gt-section--navy .gt-btn--outline,
.gt-navy-area .gt-btn--outline { color: var(--gt-white); }
.gt-section--navy .gt-btn--outline:hover,
.gt-navy-area .gt-btn--outline:hover { color: var(--gt-navy); }

.gt-btn--sm { padding: 10px 20px; font-size: var(--gt-small); }
.gt-btn--block { display: flex; width: 100%; }

.gt-actions { display: flex; flex-wrap: wrap; gap: 15px; align-items: center; }
.gt-actions--center { justify-content: center; }

.gt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gt-teal);
}
.gt-link:hover { color: var(--gt-navy); gap: 14px; }
.gt-section--navy .gt-link:hover { color: var(--gt-white); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.gt-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 999;
    min-height: var(--gt-header-h);
    display: flex;
    align-items: center;
    background: var(--gt-white);
    transition: box-shadow .3s var(--gt-ease);
}

.gt-header.is-stuck { box-shadow: 0 2px 20px rgba(12, 36, 60, .09); }

.gt-header .gt-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.gt-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.gt-logo img { height: 42px; width: auto; }

.gt-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.gt-nav > li { position: relative; }

.gt-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--gt-head);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gt-navy);
    white-space: nowrap;
}

.gt-nav a:hover,
.gt-nav a.is-active { color: var(--gt-teal); }

.gt-nav .gt-caret { font-size: 9px; transition: transform .25s var(--gt-ease); }
.gt-nav li:hover .gt-caret { transform: rotate(180deg); }

/* dropdown — kit: white panel, 2px top border, 0 0 5px 5px radius */
.gt-sub {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 210px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--gt-white);
    border-top: 2px solid var(--gt-line);
    border-radius: 0 0 var(--gt-radius) var(--gt-radius);
    box-shadow: var(--gt-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s var(--gt-ease);
}

.gt-nav li:hover > .gt-sub { opacity: 1; visibility: visible; transform: translateY(0); }

.gt-sub a {
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: .8px;
}

.gt-sub a:hover,
.gt-sub a.is-active { background: var(--gt-yellow); color: var(--gt-navy); }

.gt-header-cta { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }

.gt-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    background: none;
    border: 0;
    color: var(--gt-navy);
    font-size: 22px;
    cursor: pointer;
}

.gt-burger:hover { color: var(--gt-teal); }

@media (max-width: 1100px) {
    .gt-nav { gap: 20px; }
    .gt-nav a { font-size: 12px; letter-spacing: .6px; }
}

@media (max-width: 991px) {
    .gt-burger { display: flex; }

    .gt-menu {
        position: fixed;
        top: var(--gt-header-h);
        left: 0;
        right: 0;
        max-height: calc(100vh - var(--gt-header-h));
        overflow-y: auto;
        display: block;
        padding: 20px;
        background: var(--gt-white);
        border-top: 2px solid var(--gt-line);
        box-shadow: var(--gt-shadow);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all .3s var(--gt-ease);
    }

    /* the closed panel must not hit-test: opacity alone still catches clicks */
    .gt-menu:not(.is-open) { pointer-events: none; }

    .gt-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

    .gt-nav { flex-direction: column; align-items: stretch; gap: 0; margin: 0 0 20px; }
    .gt-nav > li { border-bottom: 1px solid var(--gt-light); }
    .gt-nav a { padding: 14px 0; font-size: 13px; }

    .gt-sub {
        position: static;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border-top: 0;
        padding-left: 16px;
        padding-bottom: 8px;
    }

    /* visibility is inherited, but a child setting `visible` overrides a hidden
       parent — so this must stay scoped to the open menu. Unscoped, the two
       submenu links stayed clickable while the panel was closed and sat as an
       invisible full-width band over the page. */
    .gt-menu.is-open .gt-sub { visibility: visible; }

    .gt-sub a { padding: 10px 0; }
    .gt-menu .gt-header-cta { flex-direction: column; align-items: stretch; }
    .gt-menu .gt-btn { width: 100%; }
}

@media (min-width: 992px) {
    .gt-menu { display: contents; }
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */

/* Full-bleed photo hero with a navy overlay — kit spec: cover / center,
   #0C243C overlay at 0.5, 7em vertical padding (3em tablet, 2em mobile).
   Kept deliberately crisp: no blur, no backdrop-filter, no fixed attachment
   (all three soften the image or force browser rescaling). */
.gt-hero {
    position: relative;
    padding: 7em 0;
    background-color: var(--gt-navy);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Two-part scrim: a flat wash for overall contrast, plus a left-weighted
   gradient so the copy sits on solid navy while the photo stays visible on
   the right. Kept as opaque colour layers so the image itself stays crisp. */
.gt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 36, 60, .92) 0%, rgba(12, 36, 60, .72) 45%, rgba(12, 36, 60, .35) 100%),
        rgba(12, 36, 60, .35);
}

@media (max-width: 767px) {
    .gt-hero::before {
        background:
            linear-gradient(90deg, rgba(12, 36, 60, .92) 0%, rgba(12, 36, 60, .82) 100%),
            rgba(12, 36, 60, .35);
    }
}

.gt-hero > .gt-container { position: relative; z-index: 1; }

.gt-hero-inner { max-width: 720px; }

.gt-hero-title {
    font-size: var(--gt-display);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
    color: var(--gt-white);
}

.gt-hero p {
    font-size: var(--gt-lead);
    line-height: 1.4;
    color: var(--gt-line);
    margin-bottom: 32px;
}

.gt-hero .gt-btn--outline { color: var(--gt-white); }
.gt-hero .gt-btn--outline:hover { color: var(--gt-navy); }

.gt-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin-top: 45px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.gt-hero-stats strong {
    display: block;
    font-family: var(--gt-head);
    font-size: var(--gt-h4);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gt-white);
}

.gt-hero-stats span { font-size: var(--gt-small); color: var(--gt-line); }

@media (max-width: 1024px) {
    .gt-hero { padding: 3em 0; background-position: 62% center; }
}

@media (max-width: 767px) {
    .gt-hero { padding: 2.5em 0; }
    .gt-hero-stats { gap: 28px; margin-top: 32px; padding-top: 24px; }
}

/* --------------------------------------------------------------------------
   Page header (inner pages)
   -------------------------------------------------------------------------- */

.gt-pagehead {
    position: relative;
    padding: 90px 0;
    background: var(--gt-navy) center / cover no-repeat;
    text-align: center;
    overflow: hidden;
}

.gt-pagehead::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gt-veil);
}

.gt-pagehead .gt-container { position: relative; z-index: 1; }
.gt-pagehead h1 { color: var(--gt-white); margin-bottom: 14px; }
.gt-pagehead p { color: var(--gt-line); font-size: var(--gt-lead); line-height: 1.4; max-width: 640px; margin: 0 auto; }

.gt-crumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    font-size: var(--gt-small);
    letter-spacing: .5px;
    text-transform: uppercase;
}

.gt-crumbs a { color: var(--gt-line); font-weight: 600; }
.gt-crumbs a:hover { color: var(--gt-teal); }
.gt-crumbs li[aria-current] { color: var(--gt-teal); font-weight: 600; }
.gt-crumbs li + li::before { content: '/'; margin-right: 10px; color: rgba(255, 255, 255, .4); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.gt-card {
    height: 100%;
    padding: 40px 35px;
    background: var(--gt-light);
    border-radius: var(--gt-radius-lg);
    transition: transform .35s var(--gt-ease), box-shadow .35s var(--gt-ease),
                background-color .35s var(--gt-ease);
}

.gt-card:hover { transform: translateY(-8px); box-shadow: var(--gt-shadow); background: var(--gt-white); }

.gt-card h4 { margin-bottom: 14px; }
.gt-card p { color: var(--gt-gray); margin-bottom: 0; }

.gt-card--white { background: var(--gt-white); box-shadow: var(--gt-shadow); }
.gt-card--white:hover { box-shadow: var(--gt-shadow-lg); }

.gt-card--navy { background: rgba(255, 255, 255, .05); }
.gt-card--navy:hover { background: rgba(255, 255, 255, .09); box-shadow: none; }
.gt-card--navy p { color: var(--gt-line); }

.gt-card--teal { background: var(--gt-teal); }
.gt-card--teal:hover { background: var(--gt-teal); }
.gt-card--teal p { color: rgba(12, 36, 60, .8); }

.gt-icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin-bottom: 26px;
    font-size: 28px;
    color: var(--gt-navy);
    background: var(--gt-teal);
    border-radius: var(--gt-radius);
}

.gt-icon--yellow { background: var(--gt-yellow); }
.gt-icon--white  { background: var(--gt-white); }
.gt-icon--ghost  { background: rgba(85, 194, 195, .16); color: var(--gt-teal); }

.gt-num {
    font-family: var(--gt-head);
    font-size: var(--gt-h3);
    font-weight: 700;
    line-height: 1;
    color: var(--gt-teal);
    margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   Media
   -------------------------------------------------------------------------- */

.gt-media { position: relative; border-radius: var(--gt-radius-lg); overflow: hidden; }

.gt-media img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gt-media--tall img { aspect-ratio: 3 / 3.6; }
.gt-media--wide img { aspect-ratio: 16 / 8; }

/* offset accent block used behind images in the kit */
.gt-media-accent { position: relative; isolation: isolate; }

.gt-media-accent > .gt-media { position: relative; z-index: 1; }

/* the badge sits on top of the photo — without a level of its own it loses
   the stacking order to .gt-media above and disappears behind the image */
.gt-media-accent > .gt-badge { z-index: 2; }

.gt-media-accent::before {
    content: '';
    position: absolute;
    top: -22px;
    right: -22px;
    width: 52%;
    height: 52%;
    background: var(--gt-yellow);
    border-radius: var(--gt-radius-lg);
    z-index: 0;
}

.gt-media-accent--teal::before { background: var(--gt-teal); }

@media (max-width: 991px) { .gt-media-accent::before { top: -12px; right: -12px; } }

.gt-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 16px 22px;
    background: var(--gt-white);
    border-radius: var(--gt-radius);
    box-shadow: var(--gt-shadow);
}

.gt-badge strong {
    display: block;
    font-family: var(--gt-head);
    font-size: var(--gt-h4);
    line-height: 1;
    color: var(--gt-navy);
}

.gt-badge span { font-size: var(--gt-small); color: var(--gt-gray); }

/* --------------------------------------------------------------------------
   Check / feature lists
   -------------------------------------------------------------------------- */

.gt-checks { margin: 26px 0 32px; padding: 0; list-style: none; }

.gt-checks li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 14px;
    color: var(--gt-gray);
}

.gt-checks li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    font-size: 10px;
    color: var(--gt-navy);
    background: var(--gt-teal);
    border-radius: 50%;
}

.gt-section--navy .gt-checks li { color: var(--gt-line); }

/* --------------------------------------------------------------------------
   Stats / counters
   -------------------------------------------------------------------------- */

.gt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }

.gt-stat strong {
    display: block;
    font-family: var(--gt-head);
    font-size: var(--gt-h2);
    font-weight: 700;
    line-height: 1;
    color: var(--gt-teal);
}

.gt-stat span { display: block; margin-top: 10px; font-size: var(--gt-small); color: var(--gt-gray); }
.gt-section--navy .gt-stat span { color: var(--gt-line); }

@media (max-width: 767px) { .gt-stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; } }

/* --------------------------------------------------------------------------
   Logo strip
   -------------------------------------------------------------------------- */

.gt-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 70px;
}

.gt-logos img {
    height: 30px;
    width: auto;
    opacity: .45;
    filter: grayscale(1);
    transition: opacity .3s var(--gt-ease), filter .3s var(--gt-ease);
}

.gt-logos img:hover { opacity: 1; filter: grayscale(0); }

/* on the navy band the partner marks need inverting to stay visible */
.gt-section--navy .gt-logos img { filter: brightness(0) invert(1); opacity: .55; }
.gt-section--navy .gt-logos img:hover { filter: brightness(0) invert(1); opacity: 1; }

/* --------------------------------------------------------------------------
   Pricing plans
   -------------------------------------------------------------------------- */

.gt-plan {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 45px 35px;
    background: var(--gt-white);
    border: 1px solid var(--gt-line);
    border-radius: var(--gt-radius-lg);
    transition: transform .35s var(--gt-ease), box-shadow .35s var(--gt-ease);
}

.gt-plan:hover { transform: translateY(-8px); box-shadow: var(--gt-shadow); }

.gt-plan--featured {
    background: var(--gt-navy);
    border-color: var(--gt-navy);
    box-shadow: var(--gt-shadow-lg);
}

.gt-plan--featured h3,
.gt-plan--featured .gt-plan-price { color: var(--gt-white); }
.gt-plan--featured .gt-plan-specs li { color: var(--gt-line); border-color: rgba(255, 255, 255, .12); }
.gt-plan--featured .gt-plan-specs .v { color: var(--gt-white); }

.gt-plan-flag {
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gt-navy);
    background: var(--gt-yellow);
    border-radius: var(--gt-radius);
}

.gt-plan h3 { margin-bottom: 8px; }

.gt-plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 26px;
    font-family: var(--gt-head);
    font-size: var(--gt-h2);
    font-weight: 700;
    line-height: 1;
    color: var(--gt-navy);
}

.gt-plan-price small { font-family: var(--gt-body); font-size: var(--gt-small); font-weight: 400; color: var(--gt-gray); }

.gt-plan-specs { margin: 0 0 32px; padding: 0; list-style: none; }

.gt-plan-specs li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--gt-light);
    font-size: var(--gt-small);
    color: var(--gt-gray);
}

.gt-plan-specs .v { font-weight: 600; color: var(--gt-navy); }
.gt-plan-specs .v--teal { color: var(--gt-teal); }

.gt-plan .gt-btn { margin-top: auto; }

/* plans grid: fills up to 3 columns and stays centred when there are fewer */
.gt-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 360px));
    justify-content: center;
    gap: 30px;
}

.gt-plan-empty {
    grid-column: 1 / -1;
    padding: 60px 30px;
    text-align: center;
    color: var(--gt-gray);
    background: var(--gt-light);
    border-radius: var(--gt-radius-lg);
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.gt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.gt-step { position: relative; }

.gt-step-num {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    font-family: var(--gt-head);
    font-size: var(--gt-h5);
    font-weight: 700;
    color: var(--gt-navy);
    background: var(--gt-teal);
    border-radius: var(--gt-radius);
}

.gt-step:nth-child(2) .gt-step-num { background: var(--gt-yellow); }

.gt-step p { color: var(--gt-gray); margin-bottom: 0; }
.gt-section--navy .gt-step p { color: var(--gt-line); }

@media (max-width: 767px) { .gt-steps { grid-template-columns: 1fr; gap: 34px; } }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.gt-quote {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 35px;
    background: var(--gt-white);
    border-radius: var(--gt-radius-lg);
    box-shadow: var(--gt-shadow);
}

.gt-quote-stars { margin-bottom: 18px; color: var(--gt-yellow); letter-spacing: 3px; }
.gt-quote p { color: var(--gt-gray); margin-bottom: 26px; }

.gt-quote-by { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.gt-quote-by img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.gt-quote-by strong { display: block; font-family: var(--gt-head); font-size: var(--gt-h5); color: var(--gt-navy); }
.gt-quote-by span { font-size: var(--gt-small); color: var(--gt-gray); }

/* --------------------------------------------------------------------------
   Accordion (FAQ)
   -------------------------------------------------------------------------- */

.gt-accordion { display: grid; gap: 16px; }

.gt-acc { background: var(--gt-light); border-radius: var(--gt-radius-lg); overflow: hidden; }

.gt-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: 0;
    text-align: left;
    font-family: var(--gt-head);
    font-size: var(--gt-h5);
    font-weight: 700;
    color: var(--gt-navy);
    cursor: pointer;
}

.gt-acc-btn:focus { outline: none; }
.gt-acc-btn:focus-visible { outline: 2px solid var(--gt-teal); outline-offset: -4px; }

.gt-acc-sign {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    font-size: 12px;
    color: var(--gt-navy);
    background: var(--gt-teal);
    border-radius: var(--gt-radius);
    transition: background-color .3s var(--gt-ease);
}

.gt-acc-sign i { transition: transform .3s var(--gt-ease); }

.gt-acc-btn[aria-expanded="true"] .gt-acc-sign { background: var(--gt-yellow); }
.gt-acc-btn[aria-expanded="true"] .gt-acc-sign i { transform: rotate(45deg); }

.gt-acc-body { padding: 0 30px 28px; color: var(--gt-gray); }
.gt-acc-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.gt-form { padding: 45px; background: var(--gt-white); border-radius: var(--gt-radius-lg); box-shadow: var(--gt-shadow); }
.gt-form h3 { margin-bottom: 10px; }
.gt-form .gt-form-intro { color: var(--gt-gray); margin-bottom: 30px; }

.gt-field { margin-bottom: 18px; }
.gt-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .gt-field-row { grid-template-columns: 1fr; gap: 0; } }

.gt-form .form-control,
.gt-form input[type="text"],
.gt-form input[type="email"],
.gt-form textarea {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-family: var(--gt-body);
    font-size: var(--gt-text);
    color: var(--gt-gray);
    background: var(--gt-light);
    border: 1px solid var(--gt-light);
    border-radius: var(--gt-radius);
    transition: border-color .25s var(--gt-ease), background-color .25s var(--gt-ease), color .25s var(--gt-ease);
}

.gt-form textarea { min-height: 160px; resize: vertical; }
.gt-form .form-control::placeholder { color: var(--gt-gray); }

.gt-form .form-control:focus {
    outline: none;
    color: var(--gt-navy);
    background: var(--gt-white);
    border-color: var(--gt-teal);
}

.gt-error { display: block; margin-top: 6px; font-size: var(--gt-small); color: #D64545; }
.gt-error ul { margin: 0; padding: 0; list-style: none; }

.gt-note {
    display: flex;
    gap: 14px;
    padding: 20px 24px;
    background: var(--gt-light);
    border-left: 4px solid var(--gt-teal);
    border-radius: 0 var(--gt-radius) var(--gt-radius) 0;
}

.gt-note i { color: var(--gt-teal); font-size: 18px; margin-top: 2px; }
.gt-note p:last-child { margin-bottom: 0; }

/* contact detail rows */
.gt-info { display: grid; gap: 22px; margin-top: 32px; }
.gt-info-item { display: flex; gap: 18px; align-items: flex-start; }
.gt-info-item .gt-icon { width: 54px; height: 54px; font-size: 20px; margin-bottom: 0; }
.gt-info-item strong { display: block; font-family: var(--gt-head); font-size: var(--gt-h5); color: var(--gt-navy); }
.gt-info-item span, .gt-info-item a { color: var(--gt-gray); }
.gt-info-item a:hover { color: var(--gt-teal); }

/* --------------------------------------------------------------------------
   Long-form prose (privacy, security)
   -------------------------------------------------------------------------- */

.gt-prose { padding: 50px; background: var(--gt-white); border-radius: var(--gt-radius-lg); box-shadow: var(--gt-shadow); }

@media (max-width: 767px) { .gt-prose { padding: 30px 24px; } }

.gt-prose > section + section { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--gt-light); }
.gt-prose h2 { font-size: var(--gt-h4); margin-bottom: 16px; }
.gt-prose h3 { font-size: var(--gt-h5); margin: 28px 0 12px; }
.gt-prose p { color: var(--gt-gray); }
.gt-prose ul { margin: 0 0 20px; padding: 0; list-style: none; }

.gt-prose ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--gt-gray);
}

.gt-prose ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    width: 7px;
    height: 7px;
    background: var(--gt-teal);
    border-radius: 50%;
}

.gt-toc {
    position: sticky;
    top: calc(var(--gt-header-h) + 24px);
    padding: 32px;
    background: var(--gt-white);
    border-radius: var(--gt-radius-lg);
    box-shadow: var(--gt-shadow);
}
.gt-toc h4 { font-size: var(--gt-h5); margin-bottom: 18px; }
.gt-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.gt-toc li { counter-increment: toc; margin-bottom: 10px; }
.gt-toc a { display: flex; gap: 8px; font-size: var(--gt-small); color: var(--gt-gray); }
.gt-toc a::before { content: counter(toc) '.'; font-weight: 700; color: var(--gt-teal); }
.gt-toc a:hover { color: var(--gt-navy); }

@media (max-width: 991px) { .gt-toc { position: static; margin-bottom: 30px; } }

/* --------------------------------------------------------------------------
   Panel (market widget)
   -------------------------------------------------------------------------- */

.gt-panel { background: var(--gt-white); border-radius: var(--gt-radius-lg); box-shadow: var(--gt-shadow); overflow: hidden; }

.gt-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 30px;
    border-bottom: 1px solid var(--gt-light);
}

.gt-panel-head h4 { margin: 0; }

.gt-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--gt-navy);
    background: var(--gt-teal);
    border-radius: var(--gt-radius);
}

.gt-live::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gt-navy);
    animation: gt-pulse 1.8s ease-in-out infinite;
}

@keyframes gt-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

.gt-widget { height: 720px; }
.gt-widget .tradingview-widget-container,
.gt-widget .tradingview-widget-container__widget { height: 100%; }

@media (max-width: 767px) { .gt-widget { height: 560px; } }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.gt-cta {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px;
    background: var(--gt-navy);
    border-radius: var(--gt-radius-lg);
}

.gt-cta h2 { color: var(--gt-white); margin-bottom: 12px; }
.gt-cta p { color: var(--gt-line); font-size: var(--gt-lead); line-height: 1.4; margin-bottom: 0; }
.gt-cta .gt-actions { justify-content: flex-end; }

@media (max-width: 991px) {
    .gt-cta { grid-template-columns: 1fr; padding: 40px 30px; }
    .gt-cta .gt-actions { justify-content: flex-start; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.gt-footer { padding: 90px 0 0; background: var(--gt-navy); color: var(--gt-line); }

.gt-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 50px 40px;
}

@media (max-width: 991px) { .gt-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gt-footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* column headings only — the footer CTA heading keeps the full h2 scale */
.gt-footer-grid h2 {
    font-size: var(--gt-h5);
    color: var(--gt-white);
    margin-bottom: 22px;
    text-transform: capitalize;
}

.gt-footer-cta { align-items: center; padding-bottom: 70px; }
.gt-footer-cta h2 { margin: 0; color: var(--gt-white); }
.gt-footer-cta .gt-actions { justify-content: flex-end; }

@media (max-width: 991px) { .gt-footer-cta .gt-actions { justify-content: flex-start; } }

.gt-footer-logo { height: 44px; width: auto; margin-bottom: 22px; }
.gt-footer-about { max-width: 340px; margin-bottom: 24px; }

.gt-footer-links { margin: 0; padding: 0; list-style: none; }
.gt-footer-links li { margin-bottom: 12px; }
.gt-footer-links a { color: var(--gt-line); }
.gt-footer-links a:hover { color: var(--gt-teal); }

.gt-footer-contact { display: grid; gap: 12px; }
.gt-footer-contact a, .gt-footer-contact span { display: flex; gap: 12px; color: var(--gt-line); }
.gt-footer-contact a:hover { color: var(--gt-teal); }
.gt-footer-contact i { color: var(--gt-teal); margin-top: 5px; font-size: 14px; }

.gt-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 70px;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: var(--gt-small);
}

.gt-footer-bottom p { margin: 0; }
.gt-footer-bottom nav { display: flex; gap: 26px; }
.gt-footer-bottom a { color: var(--gt-line); }
.gt-footer-bottom a:hover { color: var(--gt-teal); }

/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.gt-top {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 990;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--gt-navy);
    background: var(--gt-teal);
    border: 0;
    border-radius: var(--gt-radius);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s var(--gt-ease);
}

.gt-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.gt-top:hover { background: var(--gt-yellow); }

/* --------------------------------------------------------------------------
   Flash messages
   -------------------------------------------------------------------------- */

.alert-box .alert {
    max-width: 520px;
    margin: 0 auto 12px;
    padding: 16px 22px;
    background: var(--gt-white);
    border-radius: var(--gt-radius);
    box-shadow: var(--gt-shadow-lg);
    color: var(--gt-navy);
    font-size: var(--gt-small);
}

.alert-box .alert-success { border-left: 4px solid var(--gt-teal); }
.alert-box .alert-error,
.alert-box .alert-danger { border-left: 4px solid #D64545; }
.alert-box .alert-info { border-left: 4px solid var(--gt-teal); }
.alert-box .alert-warning { border-left: 4px solid var(--gt-yellow); }

.alert-box .close {
    float: right;
    background: none;
    border: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--gt-gray);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.gt-center { text-align: center; }
.gt-mb-0 { margin-bottom: 0 !important; }
.gt-mt { margin-top: 32px; }

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

.gt-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--gt-ease), transform .7s var(--gt-ease);
}

.gt-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .gt-reveal { opacity: 1; transform: none; transition: none; }
    * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
