:root {
  --bg: #f6f8fb;
  --text: #101828;
  --muted: #4b5565;
  --white: #ffffff;
  --dark: #0f172a;
  --blue: #0d6efd;
  --blue-dark: #0957cc;
  --line: #d9e1ee;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-family: "Playfair Display", serif;
  line-height: 1.25;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(7, 20, 42, 0.12);
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 1.25rem;
  padding: 12px 0;
}

.brand img {
  width: 218px;
  height: auto;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.45rem;
  align-items: center;
  padding: 0;
}

.main-nav a {
  font-size: 0.93rem;
  font-weight: 600;
  color: #27364d;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a.active {
  color: var(--blue);
  border-color: var(--blue);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #9db5d9;
  background: #ffffff;
  color: #0b2d63;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

.header-social a i {
  line-height: 1;
  display: block;
}

.header-social a:hover {
  border-color: #0b4fbd;
  background: #0b4fbd;
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1f2937;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  margin-bottom: 5px;
}

.menu-toggle span:nth-child(2) {
  margin-bottom: 5px;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #04122a 0%, #0b2a57 52%, #11458c 100%);
  color: var(--white);
  min-height: 430px;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 2.8rem 0;
}

.hero h1 {
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  max-width: 920px;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.hero-glows .hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.18;
}

.hero-glow-1 {
  width: 420px;
  height: 420px;
  background: #2d7fff;
  top: -200px;
  left: -100px;
}

.hero-glow-2 {
  width: 320px;
  height: 320px;
  background: #55d4ff;
  right: 8%;
  top: 6px;
}

.hero-glow-3 {
  width: 540px;
  height: 540px;
  background: #1f5fbf;
  right: -180px;
  bottom: -260px;
}

.hero-btn {
  padding: 0.78rem 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #e8f1ff 100%);
  color: #06285c;
  border: 1px solid #9dbbe8;
  box-shadow: 0 10px 24px rgba(6, 25, 56, 0.25);
}

.hero-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #c8dcfa;
}

.eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.eyebrow.accent {
  color: #0f4fb6;
}

.eyebrow.centered {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  background: #fff;
  color: #0f2451;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn,
.service-card,
.transaction-card,
.post-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.transaction-card:hover,
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: var(--blue-dark);
}

section {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1.1rem;
}

.stat {
  background: linear-gradient(160deg, #081a3b 0%, #0b2756 55%, #12376f 100%);
  border: 1px solid #1e4684;
  border-radius: 18px;
  padding: 1.4rem;
  min-height: 220px;
  box-shadow: 0 16px 34px rgba(4, 14, 35, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #ffffff;
}

.stat h3 {
  color: #ffffff;
  margin-bottom: 0.45rem;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  letter-spacing: -0.01em;
}

.stat p {
  font-size: 1.08rem;
  line-height: 1.35;
  max-width: 16ch;
  color: #ffffff;
}

.about-copy {
  background: #ffffff;
  border: 1px solid #d5e1f3;
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 14px 32px rgba(9, 33, 74, 0.08);
}

.about-copy h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.62rem, 2.35vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.about-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.mission-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 0;
  padding: 0.8rem;
  border-radius: 14px;
  background: #f6f9ff;
  border: 1px solid #dbe6f7;
}

.mission-item h4 {
  margin-bottom: 0.25rem;
}

.mission-item p {
  margin-bottom: 0;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, #e7f0ff 0%, #dbe9ff 100%);
  color: #175dca;
  border: 1px solid #c8dcfb;
  font-weight: 700;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
}

.services {
  padding-top: 4rem;
  background: #e8edf5;
}

.services .eyebrow {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.55rem;
}

.services h2 {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 1.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1rem;
}

.service-card {
  background: #0f1f39;
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid #263a58;
  min-height: 250px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 14, 26, 0.82), rgba(6, 14, 26, 0.35));
}

.service-card h4,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.99rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

.why {
  background: #f1f5fb;
}

.why-copy h3 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  color: #0b1f3f;
}

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

.why-list li {
  position: relative;
  padding-left: 2rem;
  color: #1f3558;
  font-size: 1.06rem;
  line-height: 1.58;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2c7cf6 0%, #1358ca 100%);
  box-shadow: 0 0 0 4px rgba(44, 124, 246, 0.14);
}

.why-grid,
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.why img,
.partner img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.partner {
  background: #ffffff;
}

.partner h3 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.16;
  margin-bottom: 0.95rem;
  color: #0b1f3f;
}

.recent {
  background:
    radial-gradient(circle at 10% 15%, rgba(71, 138, 244, 0.12) 0, rgba(71, 138, 244, 0) 42%),
    radial-gradient(circle at 92% 85%, rgba(10, 34, 76, 0.12) 0, rgba(10, 34, 76, 0) 38%),
    linear-gradient(180deg, #f4f8ff 0%, #edf3fc 100%);
}

.recent-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.1rem;
}

.recent-head .eyebrow {
  margin-bottom: 0.45rem;
}

.recent h3 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.8rem, 2.65vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
  color: #091b37;
}

.recent-subtitle {
  color: #415572;
  margin: 0;
}

.transaction-grid,
.card-grid {
  display: grid;
  gap: 1rem;
}

.transaction-grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1.15rem;
}

.transaction-card,
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem 1.15rem;
  box-shadow: var(--shadow);
}

.transaction-card h4 {
  margin-top: 0.9rem;
  margin-bottom: 0.25rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #102746;
}

.amount {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.62rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  border: 1px solid #b7cbec;
  background: linear-gradient(180deg, #edf4ff 0%, #e2edff 100%);
  color: #0f4cae;
  font-size: 0.92rem;
  font-weight: 800;
}

.transaction-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: #cfdbef;
  box-shadow: 0 16px 32px rgba(10, 30, 61, 0.12);
}

.transaction-flag {
  width: calc(100% + 2.5rem);
  max-width: none;
  height: 210px;
  margin: -1.35rem -1.25rem 0;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  border: 1px solid #c8d7ee;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 40, 78, 0.12);
}

.transaction-note {
  margin-bottom: 0.8rem;
  color: #4e627f;
  font-size: 0.95rem;
}

.transaction-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.transaction-card li {
  position: relative;
  padding-left: 1.35rem;
  color: #193251;
  font-size: 0.94rem;
  line-height: 1.42;
}

.transaction-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2870dd;
  box-shadow: 0 0 0 3px rgba(40, 112, 221, 0.18);
}

.cases {
  background: #eef3fb;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.subtitle {
  margin-bottom: 1.3rem;
  color: var(--muted);
}

.card-grid {
  grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.post-card img {
  width: 100%;
  aspect-ratio: 5 / 3.5;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}

.post-card h4 {
  font-size: 1.1rem;
}

#cases .post-card h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.post-card .meta {
  color: #5b6b84;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.post-card a {
  color: var(--blue);
  font-weight: 700;
}

.centered-action {
  text-align: center;
  margin-top: 1.3rem;
}

.offices {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.office-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.office-list span {
  border: 1px solid #cfdaea;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
  background: #f6f9ff;
}

.contact {
  background: #f8fbff;
}

.contact h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #091b37;
  margin-bottom: 1.2rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.contact-form .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid #ccd6e6;
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
}

textarea {
  min-height: 140px;
  margin-bottom: 0.8rem;
  resize: vertical;
}

.site-footer {
  background: #081223;
  color: #d9e3f2;
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-logo {
  width: 180px;
  margin-bottom: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #1e3a5c;
}

.footer-newsletter h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.newsletter-desc {
  font-size: 0.87rem;
  color: #7fa3c8;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.footer-newsletter input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #26405f;
  background: #0d1b31;
  color: #fff;
  padding: 0.68rem 0.9rem;
  font-size: 0.9rem;
}

.footer-newsletter input::placeholder {
  color: #5a7a9a;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: #3b7dd8;
  box-shadow: 0 0 0 3px rgba(59, 125, 216, 0.18);
}

.newsletter-form button {
  width: 100%;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #1d66d8 0%, #2d8cf0 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.68rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #174fb8 0%, #1d78d4 100%);
  transform: translateY(-1px);
}

.follow-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #5a7a9a;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.social-links {
  display: flex;
  gap: 0.55rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #ffffff;
  background: #0d1f38;
  border: 1px solid #1e3a5c;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
}

.social-links a.social-x:hover  { background: #1a1a1a; border-color: #444; }
.social-links a.social-li:hover  { background: #0a66c2; border-color: #0a66c2; }
.social-links a.social-ig:hover  { background: #c13584; border-color: #c13584; }

.copyright {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: #9fb5d2;
}

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

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

/* ─── ABOUT US PAGE ───────────────────────────── */

.au-page-hero .hero-content {
  max-width: 820px;
}

.au-page-hero {
  background: #ffffff;
  min-height: auto;
  padding: 4.5rem 0;
  color: var(--text);
}

.au-page-hero .hero-glows {
  display: none;
}

.au-page-hero .hero-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
}

.au-page-hero .eyebrow {
  color: #0b2d6e;
  letter-spacing: 0.22em;
}

.au-page-hero h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #0a1f3f;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.au-page-hero .au-hero-lead {
  color: #415572;
  margin: 0 auto;
  max-width: 68ch;
}

.au-hero-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 72ch;
  line-height: 1.7;
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.au-about {
  background: #ffffff;
}

.au-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.au-about-copy h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0a1f3f;
}

.au-about-copy p {
  color: #394e6b;
  line-height: 1.72;
}

.au-about-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.au-why {
  background: #f1f5fb;
}

.au-process {
  background: linear-gradient(135deg, #06122a 0%, #0b2a57 52%, #11458c 100%);
}

.au-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.au-process-copy h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.au-process-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 1.4rem;
}

.au-process-sub {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.au-process-req-title {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6rem;
}

.au-process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.au-process-list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.6;
}

.au-process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2c7cf6 0%, #1358ca 100%);
  box-shadow: 0 0 0 3px rgba(44, 124, 246, 0.15);
}

.au-process-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
}

.au-faq {
  background: #ffffff;
}

.au-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.2rem;
}

.au-section-head h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.8rem, 2.65vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 0.65rem;
  color: #091b37;
}

.au-section-head p {
  color: #415572;
  margin: 0;
}

.au-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.au-why-card {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.3rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.au-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.au-why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #175dca;
  background: linear-gradient(180deg, #e7f0ff 0%, #dbe9ff 100%);
  border: 1px solid #c8dcfb;
  margin-bottom: 0.85rem;
}

.au-why-card h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.45rem;
  color: #0f2451;
}

.au-why-card p {
  margin: 0;
  color: #415572;
  font-size: 0.97rem;
  line-height: 1.6;
}

.au-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.au-faq-item {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(7, 23, 49, 0.07);
  padding: 1.25rem;
}

.au-faq-item h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.38;
  margin-bottom: 0.5rem;
  color: #0b2451;
}

.au-faq-item p {
  margin: 0;
  color: #415572;
  font-size: 0.97rem;
  line-height: 1.62;
}

/* CONTACT PAGE */

.ct-page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(28, 110, 228, 0.08) 0, rgba(28, 110, 228, 0) 34%),
    radial-gradient(circle at 88% 30%, rgba(15, 35, 73, 0.08) 0, rgba(15, 35, 73, 0) 30%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.ct-overview {
  background: #ffffff;
  padding-top: 1.5rem;
}

.ct-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.ct-overview-card,
.ct-aside-card,
.ct-links-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid #d8e2f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ct-overview-card {
  padding: 1.35rem;
}

.ct-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  color: #175dca;
  background: linear-gradient(180deg, #e7f0ff 0%, #dbe9ff 100%);
  border: 1px solid #c8dcfb;
  font-size: 1.15rem;
}

.ct-overview-card h3,
.ct-aside-card h3,
.ct-links-card h3,
.ct-message-copy h2,
.ct-transaction-form h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  color: #0b2451;
}

.ct-overview-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.45rem;
}

.ct-overview-card p,
.ct-message-copy p,
.ct-form-intro,
.ct-detail-item span,
.ct-checklist li {
  color: #415572;
}

.ct-message {
  background: #f1f6fd;
}

.ct-message-grid,
.ct-transaction-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.ct-message-copy,
.ct-transaction-aside {
  display: grid;
  gap: 1rem;
}

.ct-transaction-aside {
  align-self: stretch;
}

.ct-message-copy h2,
.ct-transaction-form h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.ct-detail-stack {
  display: grid;
  gap: 0.8rem;
}

.ct-detail-item {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid #d6e1f0;
  background: rgba(255, 255, 255, 0.76);
}

.ct-detail-item strong {
  display: block;
  margin-bottom: 0.2rem;
  color: #102746;
}

.ct-social-links {
  padding-top: 0.2rem;
}

.ct-form-card {
  padding: 1.45rem;
}

.ct-form-card .row {
  margin-bottom: 0.85rem;
}

.ct-upload-label {
  font-size: 0.93rem;
  font-weight: 700;
  color: #12325f;
  margin-bottom: 0.45rem;
}

.ct-form-card input,
.ct-form-card select,
.ct-form-card textarea {
  border-radius: 12px;
  border-color: #ccd8e8;
  padding: 0.82rem 0.9rem;
  background: #ffffff;
  font: inherit;
}

.ct-form-card input:focus,
.ct-form-card select:focus,
.ct-form-card textarea:focus {
  outline: none;
  border-color: #3b7dd8;
  box-shadow: 0 0 0 3px rgba(59, 125, 216, 0.16);
}

.ct-form-card input[type="file"] {
  padding: 0.75rem;
  background: #f8fbff;
}

.ct-two-col {
  grid-template-columns: repeat(2, minmax(160px, 1fr)) !important;
}

.ct-single-col {
  grid-template-columns: 1fr !important;
}

.ct-submit {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 0;
  cursor: pointer;
}

.ct-transaction {
  background: linear-gradient(135deg, #06122a 0%, #0b2a57 52%, #11458c 100%);
}

.ct-transaction-form {
  background: rgba(255, 255, 255, 0.98);
}

.ct-transaction-form .eyebrow {
  color: #0f4fb6;
}

.ct-aside-card,
.ct-links-card {
  padding: 1.35rem;
}

.ct-aside-image {
  display: block;
  width: 100%;
  height: clamp(320px, 38vw, 460px);
  object-fit: cover;
  object-position: center;
  margin-bottom: 1.25rem;
  padding: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  border: 1px solid #d7e3f3;
}

.ct-aside-card {
  padding: 1.7rem;
  min-height: 100%;
}

.ct-checklist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.ct-checklist li {
  position: relative;
  padding-left: 1.3rem;
  line-height: 1.55;
}

.ct-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2870dd;
  box-shadow: 0 0 0 3px rgba(40, 112, 221, 0.18);
}

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

.ct-links-grid a {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid #d7e2f0;
  background: #ffffff;
  color: #12325f;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ct-links-grid a:hover {
  transform: translateY(-2px);
  border-color: #9dbbe8;
  box-shadow: 0 14px 28px rgba(9, 33, 74, 0.08);
}

/* ─── TOAST NOTIFICATION ────────────────────────── */

.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  max-width: 90vw;
  text-align: center;
}

.toast-notification.toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast-success {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.toast-error {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

/* ─── SERVICES PAGE ────────────────────────────── */

.sv-overview {
  background: #ffffff;
}

.sv-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sv-overview-card {
  background: linear-gradient(180deg, #f8fbff 0%, #f1f6ff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sv-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.14);
}

.sv-overview-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #175dca;
  background: linear-gradient(180deg, #e7f0ff 0%, #dbe9ff 100%);
  border: 1px solid #c8dcfb;
  margin-bottom: 0.9rem;
}

.sv-overview-card h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.4rem;
  color: #0b2451;
}

.sv-overview-card p {
  margin: 0;
  color: #415572;
  font-size: 0.95rem;
  line-height: 1.6;
}

.sv-detail {
  background: #ffffff;
}

.sv-detail-alt {
  background: #f1f5fb;
}

.sv-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sv-detail-grid-reverse {
  direction: ltr;
}

.sv-detail-grid-reverse .sv-detail-copy {
  order: -1;
}

.sv-detail-img {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #d7e3f3;
}

.sv-detail-img img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.sv-detail-copy h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 0.85rem;
  color: #0a1f3f;
}

.sv-detail-copy p {
  color: #394e6b;
  line-height: 1.72;
}

.sv-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.sv-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #1f3558;
  font-size: 0.98rem;
  line-height: 1.6;
}

.sv-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2c7cf6 0%, #1358ca 100%);
  box-shadow: 0 0 0 3px rgba(44, 124, 246, 0.14);
}

.sv-cta-btn {
  gap: 0.5rem;
  padding: 0.78rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.sv-cta {
  background: linear-gradient(135deg, #06122a 0%, #0b2a57 52%, #11458c 100%);
  padding: 5rem 0;
}

.sv-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.sv-cta-inner h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.8rem, 2.65vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 0.85rem;
  color: #ffffff;
}

.sv-cta-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
    min-height: 82px;
    padding: 10px 0;
  }

  .main-nav {
    position: absolute;
    top: 86px;
    right: 4vw;
    width: min(300px, 92vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-social {
    order: 2;
  }

  .header-social a {
    width: 28px;
    height: 28px;
    font-size: 0.82rem;
  }

  .header-social {
    gap: 0.3rem;
  }

  .about-grid,
  .why-grid,
  .partner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 380px;
  }

  .hero-content {
    padding: 2.1rem 0;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }

  .services-grid,
  .card-grid,
  .transaction-grid,
  .contact-form .row {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-wrap: wrap;
  }

  .recent-head {
    margin-bottom: 1.5rem;
  }

  .transaction-card {
    padding: 1.2rem 1.05rem 1rem;
  }

  .transaction-flag {
    width: calc(100% + 2.1rem);
    height: 180px;
    margin: -1.2rem -1.05rem 0;
  }

  .recent h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .au-about-grid,
  .au-why-grid,
  .au-process-grid,
  .au-faq-grid {
    grid-template-columns: 1fr;
  }

  .ct-overview-grid,
  .ct-message-grid,
  .ct-transaction-grid,
  .ct-links-grid,
  .ct-two-col {
    grid-template-columns: 1fr !important;
  }

  .sv-overview-grid,
  .sv-detail-grid {
    grid-template-columns: 1fr;
  }

  .sv-detail-grid-reverse .sv-detail-copy {
    order: 0;
  }

  .sv-detail-img {
    order: -1;
  }
}
