/* ============================================================
   FINANCIAL ASSET RECOVERY GROUP CANADA LTD.
   Main Stylesheet — style.css
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #052e54;
  --navy-light:  #0a4a85;
  --navy-deep:   #021a30;
  --green:       #84a566;
  --green-light: #a3c285;
  --green-dark:  #5e7d48;
  --white:       #fffdff;
  --off-white:   #f4f8f2;
  --text-muted:  #6b7c8f;
  --border:      rgba(5, 46, 84, 0.13);

  --px-desktop: 64px;
  --px-tablet:  32px;
  --px-mobile:  18px;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;

  --shadow-card: 0 4px 24px rgba(5, 46, 84, 0.09);
  --shadow-form: 0 24px 80px rgba(2, 26, 48, 0.48), 0 4px 16px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,253,255,0.65);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 7px var(--px-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--green-light); text-decoration: none; }

/* ── HEADER / NAV ── */
header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 0 var(--px-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(2,26,48,0.35);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.15;
}
.logo-text .brand span { color: var(--green-light); }
.logo-text .sub {
  font-size: 0.62rem;
  color: rgba(255,253,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: rgba(255,253,255,0.8);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--green-light); }

.nav-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.9 !important; transform: translateY(-1px); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 199;
  padding: 20px var(--px-mobile) 28px;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,253,255,0.85);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav .nav-cta-mob {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white) !important;
  text-align: center;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  border: none;
  margin-top: 4px;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #0d3d6b 100%);
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  padding: 60px var(--px-desktop);
  align-items: start;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2384a566' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132,165,102,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding-top: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(132,165,102,0.14);
  border: 1px solid rgba(132,165,102,0.3);
  color: var(--green-light);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before { content: '⚖'; font-size: 0.85rem; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
}
h1 em {
  font-style: normal;
  color: var(--green-light);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(255,253,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,253,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.7rem;
  color: rgba(255,253,255,0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-badge {
  background: rgba(255,253,255,0.07);
  border: 1px solid rgba(255,253,255,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.7rem;
  color: rgba(255,253,255,0.58);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-form);
  position: relative;
  z-index: 2;
  animation: slideIn 0.65s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-header {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.form-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.free-tag {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
}

.form-group { margin-bottom: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
label .req { color: var(--green-dark); }

input, select, textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #aab8c5; }
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(132,165,102,0.16);
  background: var(--white);
}
input.error, select.error, textarea.error {
  border-color: #c0392b;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23052e54' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
  cursor: pointer;
}
select[multiple] {
  background-image: none;
  padding-right: 13px;
  height: 130px;
  cursor: pointer;
  line-height: 1.6;
}
select[multiple] option { padding: 5px 8px; border-radius: 4px; }
select[multiple] option:checked {
  background: linear-gradient(0deg, var(--green) 0%, var(--green) 100%);
  color: white;
}

.select-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
}

textarea {
  resize: vertical;
  min-height: 86px;
  line-height: 1.55;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border: none;
  border-radius: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, background 0.3s;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.submit-btn:hover::before { opacity: 1; }
.submit-btn span { position: relative; z-index: 1; }
.submit-btn:hover { transform: translateY(-1px); }
.submit-btn:active { transform: translateY(0); }

.form-footer-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.55;
}
.form-footer-note strong { color: var(--navy); }

.success-msg {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.success-msg .check {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.success-msg h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.success-msg p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── SHARED SECTION STYLES ── */
.section {
  padding: 80px var(--px-desktop);
}
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.22;
}

.section-sub {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.72;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 9px;
}
.step-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  position: absolute;
  top: 38px;
  right: -16px;
  color: var(--green);
  font-size: 1.1rem;
  z-index: 2;
}

/* ── FRAUD TYPES ── */
.section-alt {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.fraud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fraud-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.fraud-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.fraud-icon { font-size: 1.5rem; margin-bottom: 9px; }
.fraud-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.97rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.fraud-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  padding: 32px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.team-avatar {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-light);
  margin: 0 auto 14px;
}
.team-card .name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.team-card .bio {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.62;
}
.team-badge {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--green-light);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '⚖';
  position: absolute;
  right: -24px;
  bottom: -32px;
  font-size: 11rem;
  opacity: 0.04;
  pointer-events: none;
}
.why-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-visual h3 span { color: var(--green-light); }
.why-visual .intro {
  color: rgba(255,253,255,0.62);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.reg-details { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.reg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,253,255,0.09);
  gap: 12px;
}
.reg-row:last-child { border-bottom: none; }
.reg-row .rk { color: rgba(255,253,255,0.48); flex-shrink: 0; }
.reg-row .rv { color: var(--white); font-weight: 500; text-align: right; }
.reg-row .rv.green { color: var(--green-light); font-weight: 600; }

.why-points { display: flex; flex-direction: column; gap: 22px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.why-point h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 0.98rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-point p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.62; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #0d4070 100%);
  padding: 72px var(--px-desktop);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(132,165,102,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}
.cta-banner h2 span { color: var(--green-light); }
.cta-banner p {
  color: rgba(255,253,255,0.62);
  font-size: 0.98rem;
  margin-bottom: 32px;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  box-shadow: 0 8px 28px rgba(132,165,102,0.38);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(132,165,102,0.48);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 60px var(--px-desktop) 28px;
  color: rgba(255,253,255,0.52);
  font-size: 0.82rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 44px;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.footer-brand .bn {
  font-size: 0.68rem;
  color: rgba(255,253,255,0.3);
  margin-bottom: 14px;
}
.footer-brand p { line-height: 1.7; max-width: 270px; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a {
  color: rgba(255,253,255,0.48);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.82rem;
}
.footer-col a:hover { color: var(--green-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,253,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.72rem;
}
.active-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── LARGE TABLET (≤1100px) ── */
@media (max-width: 1100px) {
  :root {
    --px-desktop: 40px;
  }
  .hero {
    grid-template-columns: 1fr 420px;
    gap: 36px;
  }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  :root { --px-desktop: var(--px-tablet); }

  .topbar { padding: 7px var(--px-tablet); font-size: 0.72rem; }

  header { padding: 0 var(--px-tablet); }
  nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px var(--px-tablet) 48px;
    min-height: unset;
    gap: 36px;
  }
  .hero-left { padding-top: 0; }
  .form-card { max-width: 600px; }

  .fraud-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: 1fr; gap: 36px; }

  .section { padding: 60px var(--px-tablet); }
  .cta-banner { padding: 56px var(--px-tablet); }
  footer { padding: 48px var(--px-tablet) 24px; }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {
  :root { --px-desktop: var(--px-mobile); }

  .topbar { display: none; }

  header { padding: 0 var(--px-mobile); height: 64px; }
  .logo-text .brand { font-size: 0.88rem; }
  .logo-text .sub   { display: none; }

  .mobile-nav { top: 64px; padding: 16px var(--px-mobile) 24px; }

  .hero {
    padding: 32px var(--px-mobile) 40px;
    gap: 28px;
  }
  h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-desc { font-size: 0.92rem; margin-bottom: 28px; }
  .hero-stats { gap: 20px; margin-bottom: 28px; }
  .stat-num   { font-size: 1.55rem; }

  .trust-logos { flex-direction: column; align-items: flex-start; gap: 10px; }

  .form-card { padding: 24px 18px; border-radius: var(--radius-md); }
  .form-row  { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 14px; }

  select[multiple] { height: 110px; }

  .section { padding: 48px var(--px-mobile); }
  .section-sub { margin-bottom: 32px; }

  .steps      { grid-template-columns: 1fr; gap: 16px; }
  .fraud-grid { grid-template-columns: 1fr; gap: 14px; }
  .team-grid  { grid-template-columns: 1fr; gap: 18px; }

  .why-visual { padding: 28px 22px; }
  .why-visual h3 { font-size: 1.4rem; }

  .cta-banner { padding: 48px var(--px-mobile); }
  .cta-btn    { padding: 13px 28px; font-size: 0.92rem; width: 100%; text-align: center; }

  footer { padding: 40px var(--px-mobile) 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ── VERY SMALL (≤380px) ── */
@media (max-width: 380px) {
  .hero-stats { gap: 14px; }
  .stat-num   { font-size: 1.35rem; }
  .trust-badges { gap: 6px; }
  .trust-badge  { padding: 4px 8px; font-size: 0.65rem; }
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 1.7rem;
}

/* Adjust for tablet */
@media (max-width: 900px) {
  .logo-img {
    height: 42px;
  }
}

/* Adjust for mobile */
@media (max-width: 600px) {
  .logo-img {
    height: 32px;
  }
}