:root {
  --bg: #f3efe7;
  --bg-alt: #e8deca;
  --surface: #fffaf1;
  --surface-strong: #f4ead8;
  --text: #1f2d2a;
  --muted: #556663;
  --brand: #0f766e;
  --brand-dark: #0a4f4a;
  --accent: #c76b3e;
  --line: #c8bda8;
  --ok: #2f855a;
  --shadow: 0 14px 40px rgba(22, 41, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 100% 0%, #d9d1be 0%, transparent 45%),
    radial-gradient(circle at 0% 30%, #d5dfd1 0%, transparent 40%),
    var(--bg);
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Avenir Next", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--brand-dark);
}

.lead {
  color: var(--muted);
  max-width: 68ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--brand);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--brand-dark);
  background: transparent;
}

.btn-outline:hover {
  background: color-mix(in srgb, var(--brand) 12%, #fff);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: block;
  width: 230px;
  height: 44px;
  background: url("assets/images/logo-jtg-clean.svg") left center / contain no-repeat;
  color: transparent;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -9999px;
}

.logo span {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav > a,
.services-trigger {
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav > a[aria-current="page"] {
  color: var(--brand-dark);
}

.services-menu.current .services-trigger {
  color: var(--brand-dark);
}

.services-menu {
  position: relative;
}

.services-trigger {
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
}

.dropdown a:hover,
.dropdown a[aria-current="page"] {
  background: color-mix(in srgb, var(--brand) 12%, #fff);
}

.services-menu:hover .dropdown,
.services-menu:focus-within .dropdown,
.services-menu.open .dropdown {
  display: block;
}

.services-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.page-hero {
  padding: 88px 0 50px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.home-page .hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-page .section-head h2 {
  max-width: 24ch;
}

.home-page .photo-tile {
  min-height: 320px;
}

.home-page .metric-card {
  min-height: 240px;
}

.home-page .slides {
  min-height: 320px;
}

.oil-gas-page .page-hero .container {
  max-width: 880px;
}

.oil-gas-page .page-hero h1 {
  max-width: 18ch;
}

.oil-gas-page .lead {
  max-width: 70ch;
}

.oil-gas-page .service-banner {
  padding: 32px;
}

.oil-gas-page .service-grid-2 {
  gap: 16px;
}

.oil-gas-page .stats {
  grid-template-columns: repeat(3, 1fr);
}

.oil-gas-page .stat {
  min-height: 170px;
}

.services-page .page-hero .container {
  max-width: 900px;
}

.services-page .page-hero h1 {
  max-width: 20ch;
}

.services-page .lead {
  max-width: 68ch;
}

.services-page .cards {
  margin-top: 30px;
}

.services-page .card {
  min-height: 220px;
}

.forex-mgmt-page .page-hero .container {
  max-width: 900px;
}

.forex-mgmt-page .page-hero h1 {
  max-width: 20ch;
}

.forex-mgmt-page .lead {
  max-width: 70ch;
}

.forex-mgmt-page .service-banner {
  padding: 30px;
}

.forex-mgmt-page .service-grid-2 {
  gap: 16px;
}

.forex-mgmt-page .stats {
  grid-template-columns: repeat(3, 1fr);
}

.forex-mgmt-page .stat {
  min-height: 180px;
}

.forex-trading-page .page-hero .container {
  max-width: 860px;
}

.forex-trading-page .page-hero h1 {
  max-width: 19ch;
}

.forex-trading-page .lead {
  max-width: 66ch;
}

.forex-trading-page .service-banner {
  padding: 30px;
}

.forex-trading-page .service-grid-2 {
  gap: 16px;
}

.digital-investment-page .page-hero .container {
  max-width: 860px;
}

.digital-investment-page .page-hero h1 {
  max-width: 20ch;
}

.digital-investment-page .lead {
  max-width: 68ch;
}

.digital-investment-page .service-banner {
  padding: 30px;
}

.digital-investment-page .service-grid-2 {
  gap: 16px;
}

.digital-trading-page .page-hero .container {
  max-width: 860px;
}

.digital-trading-page .page-hero h1 {
  max-width: 20ch;
}

.digital-trading-page .lead {
  max-width: 66ch;
}

.digital-trading-page .service-banner {
  padding: 30px;
}

.digital-trading-page .service-grid-2 {
  gap: 16px;
}

.general-investment-page .page-hero .container {
  max-width: 860px;
}

.general-investment-page .page-hero h1 {
  max-width: 20ch;
}

.general-investment-page .lead {
  max-width: 66ch;
}

.general-investment-page .service-banner {
  padding: 30px;
}

.general-investment-page .service-grid-2 {
  gap: 16px;
}

.about-page .page-hero .container {
  max-width: 920px;
}

.about-page .page-hero h1 {
  max-width: 19ch;
}

.about-page .lead {
  max-width: 64ch;
}

.leadership-page .page-hero .container {
  max-width: 980px;
}

.leadership-page .page-hero h1 {
  max-width: 19ch;
}

.leadership-page .lead {
  max-width: 62ch;
}

.contact-page .page-hero .container {
  max-width: 900px;
}

.contact-page .page-hero h1 {
  max-width: 18ch;
}

.contact-page .lead {
  max-width: 60ch;
}

.disclosures-page .page-hero .container {
  max-width: 900px;
}

.disclosures-page .page-hero h1 {
  max-width: 19ch;
}

.disclosures-page .lead {
  max-width: 62ch;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, #fffdf7, #eee3ce);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-panel li {
  padding: 9px 0;
  border-bottom: 1px dashed color-mix(in srgb, var(--line) 80%, transparent);
  font-weight: 600;
}

.hero-panel li:last-child {
  border-bottom: 0;
}

.media-full {
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #fff;
}

.media-full img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-lead-photo img {
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(24, 39, 36, 0.08);
  padding: 22px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card .link {
  margin-top: 14px;
  display: inline-block;
  color: var(--brand-dark);
  font-weight: 700;
}

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

.checklist {
  margin: 0;
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.process-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9f3e7;
  padding: 18px;
}

.process-item span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
  padding: 18px;
}

.stat h3 {
  margin-bottom: 6px;
}

.stat p {
  margin: 0;
  color: var(--muted);
}

.service-banner {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #e7dbc7, #f8f1e4);
  padding: 28px;
}

.service-grid-2 {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: var(--surface);
}

.photo-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.photo-tile {
  border: 1px solid var(--line);
  border-radius: 16px;
  min-height: 340px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background-color: var(--surface-strong);
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 28, 26, 0.12), rgba(18, 28, 26, 0.44));
}

.photo-tile h3 {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  margin: 0;
  color: #fff;
  z-index: 1;
}

.photo-trading-desk {
  background-image: linear-gradient(180deg, rgba(14, 36, 34, 0.06), rgba(14, 36, 34, 0.38)),
    url("assets/images/trading-desk.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.photo-market-street {
  background-image: linear-gradient(180deg, rgba(14, 36, 34, 0.06), rgba(14, 36, 34, 0.38)),
    url("assets/images/wall-street.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.photo-team-group {
  background-image: linear-gradient(180deg, rgba(14, 36, 34, 0.06), rgba(14, 36, 34, 0.38)),
    url("assets/images/team-group.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.leadership-list {
  display: grid;
  gap: 28px;
}

.leadership-member {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.leadership-member img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.leadership-content h2 {
  margin-bottom: 4px;
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  font-weight: 450;
}

.leadership-title {
  margin: 0 0 10px;
  font-size: clamp(0.88rem, 1.35vw, 1rem);
  color: var(--muted);
  font-weight: 350;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
}

.leadership-content p {
  margin: 0;
}

.brand-strip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.brand-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background-color: #fffdf8;
  min-height: 74px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 10px;
}

.logo-alfa-scalper {
  background-image: url("assets/images/logo-alfa-scalper.png");
}

.logo-metatrader {
  background-image: url("assets/images/logo-metatrader4.png");
}

.logo-tradingview {
  background-image: url("assets/images/logo-tradingview.png");
}

.logo-fx-fortnite {
  background-image: url("assets/images/logo-fx-fortnite.png");
}

.logo-forex-vps {
  background-image: url("assets/images/logo-forex-vps.png");
}

.logo-markowski {
  background-image: url("assets/images/logo-markowski.png");
}

.logo-forex-diamond {
  background-image: url("assets/images/logo-forex-diamond.png");
}

.logo-icon-chart {
  background-image: url("assets/images/icon-chart-bars.png");
}

.logo-odin {
  background-image: url("assets/images/222.jpeg");
}

.logo-fx-fortnite-new {
  background-image: url("assets/images/fortnite.png");
}

.logo-flexta {
  background-image: url("assets/images/logo3.jpeg");
}

.metrics-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.perf-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.perf-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kpi-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.kpi-label {
  display: block;
  font-size: 0.77rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5f6f7d;
  margin-bottom: 7px;
}

.kpi-value {
  display: block;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.kpi-note {
  margin: 0;
  font-size: 0.82rem;
  color: #5b6978;
}

.perf-note {
  border: 1px solid #cfd7e2;
  border-radius: 12px;
  padding: 14px;
  background: #f9fbff;
}

.perf-note h3 {
  margin-bottom: 8px;
}

.perf-note p {
  margin: 0;
  color: #4b5868;
  font-size: 0.9rem;
}

.perf-note p + p {
  margin-top: 9px;
}

.source-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.source-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.source-card h3 {
  margin-bottom: 10px;
}

.source-card p {
  margin: 0 0 10px;
  color: var(--muted);
}

.source-card .btn {
  margin-top: 6px;
}

.review-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 16px;
}

.review-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.review-source {
  font-weight: 700;
  font-size: 0.86rem;
}

.review-date {
  font-size: 0.8rem;
  color: #5b6978;
}

.review-text {
  margin: 0;
  color: #374556;
}

.review-disclaimer {
  margin-top: 14px;
  color: #5b6978;
  font-size: 0.82rem;
}

.testimonial-slider {
  position: relative;
  margin-top: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 20px 18px 30px;
}

.slides {
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonials-section {
  background: var(--bg);
  color: var(--text);
}

.testimonials-section .eyebrow {
  color: var(--brand-dark);
}

.testimonials-section .section-head h2 {
  color: var(--text);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.testimonial-intro h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  color: var(--text);
}

.testimonial-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  padding: 16px 18px;
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--text);
}

.testimonial-meta {
  display: grid;
  justify-content: start;
  gap: 6px;
}

.quote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.stars {
  color: #f3c44b;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 2px;
}

.author {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 500;
}

.slider-nav {
  display: none;
}

.slider-nav.prev {
  left: 14px;
}

.slider-nav.next {
  right: 14px;
}

.slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 28%, #fff);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--brand);
}

.info-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffaf2;
  padding: 18px;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.faq-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 18px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
    #fff;
  box-shadow: 0 10px 24px rgba(24, 39, 36, 0.08);
  overflow: hidden;
}

.metric-1 {
  background-image: url("assets/images/chart-track-record-1.png");
  background-size: cover;
  background-position: center;
}

.metric-2 {
  background-image: url("assets/images/chart-track-record-2.png");
  background-size: cover;
  background-position: center;
}

.metric-3 {
  background-image: url("assets/images/chart-track-record-3.png");
  background-size: cover;
  background-position: center;
}

.contact-home {
  margin-top: 12px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  background: linear-gradient(145deg, #e5dbc8, #f6efe2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid color-mix(in srgb, var(--line) 86%, #fff);
  border-radius: 16px;
  background: linear-gradient(170deg, #fffefb, #f5ede0);
  box-shadow: 0 16px 34px rgba(17, 34, 32, 0.08);
  padding: 22px;
}

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

.contact-form .field {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374a60;
}

.contact-form .field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid #c5ceda;
  border-radius: 12px;
  padding: 12px 13px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: #1f2d2a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: color-mix(in srgb, var(--brand) 58%, #fff);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent);
  background-color: #fffeff;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form .btn {
  border-radius: 12px;
  width: 100%;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d5deea;
  background: #fbfdff;
  color: #2f4055;
  font-size: 0.86rem;
  line-height: 1.45;
}

.consent-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--brand);
}

.consent-row a {
  color: #1f4d7a;
  text-decoration: underline;
  font-weight: 700;
}

.notice {
  border-left: 4px solid var(--ok);
  background: #eef7ef;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.notice.error {
  border-left-color: #c64343;
  background: #fff1f1;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.site-footer {
  border-top: 1px solid #d6d6d6;
  background: #f4f6f9;
  padding: 34px 0 30px;
}

.footer-wrap {
  display: grid;
  gap: 16px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #d2d7df;
}

.footer-brand {
  display: inline-block;
  font-family: "Sora", "Avenir Next", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccd4df;
  border-radius: 8px;
  padding: 5px 9px;
  background: #fff;
}

.reg-badge img {
  width: auto;
  height: 28px;
  max-width: 180px;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-pill {
  border: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.social-pill[aria-label="Facebook"] {
  background-image: url("assets/images/icon-facebook.svg");
}

.social-pill[aria-label="Telegram"] {
  background-image: url("assets/images/icon-telegram.svg");
}

.social-pill[aria-label="X"] {
  background-image: url("assets/images/icon-x.svg");
}

.social-pill[aria-label="LinkedIn"] {
  background-image: url("assets/images/icon-linkedin.svg");
}

.social-pill[aria-label="Instagram"] {
  background-image: url("assets/images/icon-instagram-black.svg?v=2");
}

.footer-address {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-copy {
  margin: 0;
  color: #25364b;
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-links {
  margin: 0;
  color: #2f4055;
  font-size: 0.86rem;
}

.legal-links a {
  color: #2f4055;
  text-decoration: none;
  font-weight: 600;
}

.legal-links a:hover,
.legal-links a[aria-current="page"] {
  text-decoration: underline;
}

.legal-links span {
  margin: 0 6px;
  color: #6d7f93;
}

.disclaimer {
  margin: 0;
  color: #3e4b5a;
  font-size: 0.84rem;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-layout,
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .photo-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .perf-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .slides {
    min-height: 250px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial-slider {
    padding: 16px 12px 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

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

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

  .service-grid-2 {
    grid-template-columns: 1fr;
  }

  .leadership-member {
    grid-template-columns: 1fr;
  }

  .leadership-member img {
    max-width: 280px;
  }

  .home-page .page-hero h1 {
    font-size: clamp(1.85rem, 5.2vw, 2.7rem);
  }

  .home-page .photo-tile {
    min-height: 260px;
  }

  .home-page .metric-card {
    min-height: 220px;
  }

  .home-page .slides {
    min-height: 350px;
  }

  .oil-gas-page .page-hero h1 {
    font-size: clamp(1.8rem, 4.8vw, 2.5rem);
    max-width: 100%;
  }

  .oil-gas-page .service-banner {
    padding: 24px;
  }

  .oil-gas-page .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.55rem);
    max-width: 100%;
  }

  .services-page .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-page .card {
    min-height: 0;
  }

  .forex-mgmt-page .page-hero h1 {
    font-size: clamp(1.85rem, 4.9vw, 2.55rem);
    max-width: 100%;
  }

  .forex-mgmt-page .service-banner {
    padding: 24px;
  }

  .forex-mgmt-page .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .forex-trading-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    max-width: 100%;
  }

  .forex-trading-page .service-banner {
    padding: 24px;
  }

  .digital-investment-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    max-width: 100%;
  }

  .digital-investment-page .service-banner {
    padding: 24px;
  }

  .digital-trading-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    max-width: 100%;
  }

  .digital-trading-page .service-banner {
    padding: 24px;
  }

  .general-investment-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
    max-width: 100%;
  }

  .general-investment-page .service-banner {
    padding: 24px;
  }

  .about-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.55rem);
    max-width: 100%;
  }

  .leadership-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.55rem);
    max-width: 100%;
  }

  .leadership-page .photo-team-group {
    min-height: 280px;
  }

  .contact-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.55rem);
    max-width: 100%;
  }

  .disclosures-page .page-hero h1 {
    font-size: clamp(1.85rem, 5vw, 2.55rem);
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .logo {
    width: 180px;
    height: 36px;
  }

  .hero-lead-photo img {
    min-height: 300px;
  }

  .slider-nav {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    z-index: 41;
  }

  .menu-toggle span {
    width: 18px;
    margin: 2px 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(12, 21, 20, 0.42);
    z-index: 30;
    pointer-events: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(84vw, 360px);
    height: 100dvh;
    background: var(--surface);
    border-left: 1px solid var(--line);
    padding: 94px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    overflow-y: auto;
    box-shadow: -14px 0 34px rgba(14, 31, 29, 0.2);
    transition: right 0.24s ease;
    z-index: 40;
  }

  .site-nav.open {
    right: 0;
  }

  .site-nav > a,
  .services-trigger {
    padding: 10px 11px;
    border-radius: 10px;
    background: transparent;
  }

  .site-nav > a:hover,
  .services-trigger:hover,
  .site-nav > a[aria-current="page"] {
    background: color-mix(in srgb, var(--brand) 10%, #fff);
  }

  .site-nav .btn {
    width: 100%;
    margin-top: 6px;
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
  }

  .site-nav .btn:hover {
    background: var(--brand-dark);
    color: #fff;
  }

  .services-menu {
    width: 100%;
  }

  .services-trigger {
    width: 100%;
    text-align: left;
    padding: 10px 11px;
  }

  .dropdown {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
    border-radius: 10px;
    background: #f8f2e4;
    border: 1px solid var(--line);
  }

  .services-menu:not(.open) .dropdown {
    display: none;
  }

}

@media (max-width: 600px) {
  .container {
    width: min(1140px, 94%);
  }

  .page-hero {
    padding: 74px 0 42px;
  }

  .hero-lead-photo img {
    min-height: 240px;
  }

  .site-nav {
    width: 100%;
    border-left: 0;
  }

  .contact-wrap,
  .service-banner,
  .hero-panel {
    padding: 20px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .home-page .page-hero h1 {
    font-size: clamp(1.6rem, 7.2vw, 2rem);
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .home-page .hero-actions .btn {
    width: 100%;
  }

  .home-page .photo-tile {
    min-height: 220px;
  }

  .home-page .section-head h2 {
    max-width: 100%;
  }

  .home-page .slides {
    min-height: 390px;
  }

  .oil-gas-page .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
  }

  .oil-gas-page .service-banner {
    padding: 18px;
  }

  .oil-gas-page .stats {
    grid-template-columns: 1fr;
  }

  .oil-gas-page .stat {
    min-height: 0;
  }

  .services-page .page-hero h1 {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
  }

  .services-page .cards {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .forex-mgmt-page .page-hero h1 {
    font-size: clamp(1.5rem, 6.9vw, 1.95rem);
  }

  .forex-mgmt-page .service-banner {
    padding: 18px;
  }

  .forex-mgmt-page .stats {
    grid-template-columns: 1fr;
  }

  .forex-mgmt-page .stat {
    min-height: 0;
  }

  .forex-trading-page .page-hero h1 {
    font-size: clamp(1.5rem, 6.8vw, 1.95rem);
  }

  .forex-trading-page .service-banner {
    padding: 18px;
  }

  .digital-investment-page .page-hero h1 {
    font-size: clamp(1.5rem, 6.8vw, 1.95rem);
  }

  .digital-investment-page .service-banner {
    padding: 18px;
  }

  .digital-trading-page .page-hero h1 {
    font-size: clamp(1.5rem, 6.8vw, 1.95rem);
  }

  .digital-trading-page .service-banner {
    padding: 18px;
  }

  .general-investment-page .page-hero h1 {
    font-size: clamp(1.5rem, 6.8vw, 1.95rem);
  }

  .general-investment-page .service-banner {
    padding: 18px;
  }

  .about-page .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .about-page .process-grid {
    grid-template-columns: 1fr;
  }

  .leadership-page .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .leadership-page .photo-team-group {
    min-height: 220px;
  }

  .leadership-page .leadership-member {
    padding: 16px;
    gap: 16px;
  }

  .leadership-page .leadership-member img {
    max-width: 220px;
    margin: 0 auto;
  }

  .contact-page .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .contact-page .contact-wrap {
    gap: 20px;
    padding: 18px;
  }

  .contact-page .contact-form button {
    width: 100%;
  }

  .disclosures-page .page-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .disclosures-page .cards {
    margin-top: 20px;
  }

  .disclosures-page .card {
    padding: 18px;
  }
}

@media (max-width: 820px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .brand-item {
    min-height: 82px;
    padding: 8px;
    background-size: 90% auto;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 420px) {
  .brand-item {
    min-height: 74px;
    background-size: 92% auto;
  }
}
