/* PAYLAX 1:1 Design System & Styles */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --paylax-navy: #000040;
  --paylax-blue: #0073e5;
  --paylax-light-blue: #66a8f0;
  --paylax-pale-blue: #ebf5ff;
  --paylax-green: #92e22b;
  --trustpilot-green: #00b67a;
  --paylax-yellow: #ffaf00;
  --paylax-bg-light: #f8f8f8;
  --paylax-text-muted: #5a597b;
  --paylax-border: #e9e9e9;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--paylax-navy);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

a {
  color: var(--paylax-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 64, 0.08);
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 26px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
}

.nav-item {
  position: relative;
  height: 100%;
}

.nav-link {
  height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--paylax-navy);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--paylax-blue);
  opacity: 0.85;
}

.dropdown-menu {
  position: absolute;
  top: 60px;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 64, 0.12);
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--paylax-border);
  border-top: none;
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 1001;
}

.nav-item:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--paylax-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item:hover {
  background-color: var(--paylax-pale-blue);
  color: var(--paylax-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--paylax-border);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--paylax-navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-btn:hover {
  border-color: var(--paylax-blue);
}

.lang-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 64, 0.15);
  border: 1px solid var(--paylax-border);
  display: none;
  flex-direction: column;
  min-width: 140px;
  overflow: hidden;
  z-index: 1002;
}

.lang-selector:hover .lang-dropdown {
  display: flex;
}

.lang-option {
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--paylax-navy);
  cursor: pointer;
}

.lang-option:hover {
  background: var(--paylax-pale-blue);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--paylax-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 115, 229, 0.3);
}

.btn-primary:hover {
  background-color: #005bb5;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 115, 229, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--paylax-navy);
}

.btn-secondary-outline {
  background-color: transparent;
  border: 1.5px solid var(--paylax-blue);
  color: var(--paylax-blue);
}

.btn-secondary-outline:hover {
  background-color: var(--paylax-blue);
  color: #ffffff;
}

.btn-login {
  color: var(--paylax-navy);
  font-weight: 500;
  padding: 8px 16px;
}

.btn-login:hover {
  color: var(--paylax-blue);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  width: 26px;
  height: 3px;
  background-color: var(--paylax-blue);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  margin-top: 60px;
  background-color: var(--paylax-navy);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 115, 229, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(146, 226, 43, 0.15) 0%, transparent 40%);
  color: #ffffff;
  padding: 160px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1050px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  color: var(--paylax-light-blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.6;
}

.hero-subtag {
  color: var(--paylax-light-blue);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-wrapper img {
  max-width: 440px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.3s ease;
}

.hero-image-wrapper img:hover {
  transform: translateY(-5px);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 22px;
  height: 22px;
  fill: var(--paylax-light-blue);
  flex-shrink: 0;
}

.hero-standard {
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Trustpilot Section */
.trustpilot-section {
  background: linear-gradient(135deg, #f0faf5 0%, #ffffff 50%, #f0f8ff 100%);
  border-bottom: 1px solid var(--paylax-border);
  position: relative;
  transition: background 0.3s ease;
}

.trustpilot-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.trustpilot-link:hover .trustpilot-container {
  transform: translateY(-1px);
}

.trustpilot-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: transform 0.2s ease;
}

.trustpilot-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #191919;
}

.trustpilot-stars-img {
  height: 26px;
  width: auto;
  display: block;
}

.trustpilot-info {
  display: flex;
  flex-direction: column;
}

.trust-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--trustpilot-green);
  letter-spacing: 0.05em;
}

.trust-count {
  font-size: 0.75rem;
  color: #6b7280;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background-color: #dcdce6;
}

.trustpilot-logo {
  height: 26px;
  max-height: 26px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.trustpilot-brand {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trustpilot-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #191919;
}

/* Section Common */
.section {
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--paylax-blue);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--paylax-text-muted);
  max-width: 650px;
  margin: 0 auto 40px;
}

/* Steps Section */
.steps-grid {
  max-width: 1000px;
  margin: 45px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--paylax-blue);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(0, 115, 229, 0.25);
  transition: transform 0.3s ease;
}

.step-card:hover .step-circle {
  transform: scale(1.1);
  background-color: var(--paylax-navy);
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--paylax-navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--paylax-text-muted);
  line-height: 1.5;
}

.steps-more {
  text-align: center;
  margin-top: 40px;
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow:hover {
  transform: translateX(4px);
}

/* Buyer / Seller Cards */
.bg-light {
  background-color: var(--paylax-bg-light);
}

.dual-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card-box {
  background: #ffffff;
  border-radius: 8px;
  padding: 36px;
  border: 1px solid var(--paylax-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 64, 0.08);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.card-icon {
  width: 36px;
  height: 36px;
  fill: var(--paylax-blue);
  flex-shrink: 0;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paylax-navy);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--paylax-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Trustpilot Banner Section */
.tp-banner-section {
  background-color: var(--paylax-navy);
  padding: 60px 20px;
}

.tp-banner-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

/* Left Brand Card */
.tp-brand-card {
  width: 260px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.tp-brand-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 182, 122, 0.5);
  transform: translateY(-2px);
}

.tp-brand-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tp-star-icon-green {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.tp-brand-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.tp-rating-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 8px 0 0 0;
  line-height: 1;
}

.tp-stars-five {
  color: #00b67a;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin: 6px 0;
}

.tp-rating-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.tp-badge-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #00b67a;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Right Quote Card */
.tp-quote-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  min-height: 200px;
}

.tp-quote-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(0, 182, 122, 0.4);
}

.tp-quote-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tp-quote-mark {
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(0, 182, 122, 0.6);
  font-family: Georgia, serif;
}

.tp-quote-stars {
  color: #00b67a;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.tp-quote-body {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.tp-quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.tp-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tp-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.tp-author-badge {
  font-size: 0.78rem;
  color: #00b67a;
  font-weight: 600;
}

.tp-dots-box {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Protection Intro */
.protection-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.protection-desc {
  font-size: 0.95rem;
  color: var(--paylax-text-muted);
  line-height: 1.7;
  margin-top: 20px;
}

.protection-highlight {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paylax-blue);
  margin-top: 16px;
}

/* Use Cases Grid */
.use-cases-grid {
  max-width: 1000px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-case-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--paylax-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 64, 0.08);
}

.use-case-icon-bg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--paylax-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.use-case-icon {
  width: 32px;
  height: 32px;
  fill: var(--paylax-light-blue);
}

.use-case-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paylax-navy);
  margin-bottom: 8px;
}

.use-case-desc {
  font-size: 0.85rem;
  color: var(--paylax-text-muted);
  line-height: 1.5;
}

/* Media / Press Bar */
.press-bar {
  background: #ffffff;
  padding: 40px 20px;
  border-top: 1px solid var(--paylax-border);
  border-bottom: 1px solid var(--paylax-border);
}

.press-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.press-container:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

.press-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--paylax-navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* 3 Pillars */
.pillars-grid {
  max-width: 1000px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--paylax-border);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  color: var(--paylax-blue);
  margin: 0 auto 16px;
}

.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paylax-blue);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.875rem;
  color: var(--paylax-text-muted);
  line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
  background-color: var(--paylax-blue);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background-color: #ffffff;
  color: var(--paylax-blue);
}

.btn-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  background-color: var(--paylax-navy);
  color: #ffffff;
}

.footer-trust-bar {
  background-color: #000033;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-trust-icon {
  width: 24px;
  height: 24px;
  stroke: var(--paylax-blue);
}

.footer-main {
  background-color: var(--paylax-bg-light);
  color: var(--paylax-navy);
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paylax-blue);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--paylax-text-muted);
}

.footer-links a:hover {
  color: var(--paylax-blue);
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--paylax-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  background-color: var(--paylax-navy);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-divider {
  border-top: 1px solid var(--paylax-border);
  margin: 30px 0;
  padding-top: 24px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.payment-badge {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--paylax-navy);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 64, 0.04);
  transition: all 0.25s ease;
}

.payment-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 64, 0.08);
  border-color: var(--paylax-blue);
}

.partner-badge {
  background: #ebf5ff;
  border-color: rgba(0, 115, 229, 0.3);
  color: var(--paylax-blue);
  font-weight: 700;
}

.flags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.flag-chip {
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 64, 0.05);
  transition: all 0.2s ease;
  cursor: pointer;
}

.flag-chip:hover {
  border-color: var(--paylax-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 115, 229, 0.15);
}

.flag-chip img {
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--paylax-text-muted);
}

.footer-logo-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

/* Mobile Menu Sheet */
.mobile-menu-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: #ffffff;
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.15rem;
  color: var(--paylax-navy);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--paylax-border);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid, .use-cases-grid, .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dual-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-features, .steps-grid, .use-cases-grid, .pillars-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trustpilot-container {
    flex-direction: column;
    gap: 12px;
  }
  .trust-divider {
    display: none;
  }
  .tp-review-card {
    padding: 20px 18px;
  }
  .tp-review-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}


