/* VolgaPay Premium Styles - Stripe-Inspired Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* 
Theme Name: VolgaPay
Description: Premium crypto payment gateway landing page
Version: 2.0
*/

/* ===== Reset ===== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ===== CSS Variables ===== */
:root {
  --primary: #239d9a;
  --primary-dark: #1a7a78;
  --primary-light: #aedbda;
  --accent: #239d9a;
  --bg-dark: #0f172a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-primary: linear-gradient(135deg, #239d9a 0%, #aedbda 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(35, 157, 154, 0.08) 0%, rgba(174, 219, 218, 0.08) 100%);
  --shadow-glow: 0 0 60px rgba(35, 157, 154, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* ===== Base Styles ===== */
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: clip; /* Better than hidden - doesn't affect scrolling */
  overflow-y: auto;
  width: 100%;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Wrapper to contain horizontal overflow without blocking scroll */
.site-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

section,
header,
footer {
  max-width: 100%;
}

.container,
.container-fluid {
  max-width: 100%;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

input:focus,
button:focus {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== Typography ===== */
h1 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

h6 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text-secondary);
}

a {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

/* ===== Buttons ===== */
.hover1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  z-index: 1;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  border: none;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 20px rgba(35, 157, 154, 0.4);
}

.hover1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(35, 157, 154, 0.5);
  color: #FFFFFF;
}

.hover1:active {
  transform: translateY(0);
}

.hover2 {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  z-index: 1;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  background: transparent;
  transition: all 0.3s ease;
  text-align: center;
}

.hover2:hover {
  border-color: var(--primary);
  background: rgba(35, 157, 154, 0.1);
  color: var(--text-primary);
}

/* ===== Navigation Link ===== */
.nav-link-custom {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--text-primary);
}

/* ===== Preloader ===== */
.site-wrapper {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-wrapper.loaded {
  visibility: visible;
  opacity: 1;
}

body.preloader-active {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body:not(.preloader-active) {
  overflow-x: clip;
  overflow-y: auto;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  background-image: url('../images/logo_preload.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.95); }
}

/* ===== Scroll To Top ===== */
.scrollToTop {
  display: none;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(35, 157, 154, 0.4);
}

.scrollToTop:hover {
  transform: translateY(-5px);
}

.scrollToTop .arrowUp {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 18px;
}

.scrollToTop .water {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  background: var(--primary-dark);
  transition: all 0.3s;
}

.scrollToTop .water_wave {
  width: 200%;
  position: absolute;
  bottom: 100%;
}

.scrollToTop .water_wave_back {
  right: 0;
  fill: rgba(255, 255, 255, 0.3);
  animation: wave-back 1.4s infinite linear;
}

.scrollToTop .water_wave_front {
  left: 0;
  fill: var(--primary);
  margin-bottom: -1px;
  animation: wave-front 0.7s infinite linear;
}

@keyframes wave-front {
  100% { transform: translateX(-50%); }
}

@keyframes wave-back {
  100% { transform: translateX(50%); }
}

/* ===== Header ===== */
header {
  position: relative;
  z-index: 100;
}

.nav-logo img {
  width: 160px;
  height: auto;
}

.navbar {
  padding: 20px 0;
}

/* ===== Hero Section ===== */
.Hero {
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.Hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(35, 157, 154, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.Hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(174, 219, 218, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.Hero h1 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.Hero h1 span {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  margin-bottom: 48px;
}

.trust-indicators {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.trust-text {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

.hero-visual figure {
  margin: 0;
  max-width: 100%;
}
  
.hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(35, 157, 154, 0.3));
}

/* ===== Value Proposition ===== */
.ValueProp {
  padding: 100px 0;
  position: relative;
}

.ValueProp h2 {
  color: var(--text-primary);
  margin-bottom: 24px;
}

.ValueProp h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.value-desc {
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Features Section ===== */
.Features {
  padding: 100px 0;
  position: relative;
}

.Features h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.Features h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon i {
  font-size: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card h5 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  margin: 0;
}

/* ===== How It Works ===== */
.HowItWorks {
  padding: 100px 0;
  background: var(--gradient-subtle);
  position: relative;
}

.HowItWorks h2 {
  color: var(--text-primary);
}

.HowItWorks h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  height: 100%;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  margin: 0 auto 24px;
}

.step-card h5 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  margin: 0;
}

/* ===== Integrations ===== */
.Integrations {
  padding: 100px 0;
  position: relative;
}

.Integrations h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.Integrations h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.integration-desc {
  font-size: 18px;
  margin-bottom: 32px;
}

.integration-list {
  margin-bottom: 32px;
}

.integration-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.integration-list li i {
  color: var(--accent);
  font-size: 14px;
}

.integration-visual {
  display: flex;
  justify-content: center;
}

.integration-visual img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(35, 157, 154, 0.2));
}

/* ===== Benefits ===== */
.Benefits {
  padding: 100px 0;
  background: var(--gradient-subtle);
}

.Benefits h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.Benefits h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.benefit-item i {
  font-size: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
}

.benefit-item h6 {
  color: var(--text-primary);
  margin: 0;
}

/* ===== Security ===== */
.Security {
  padding: 100px 0;
}

.Security h2 {
  color: var(--text-primary);
  margin-bottom: 32px;
}

.Security h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.security-list {
  margin: 0;
}

.security-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.security-list li:last-child {
  border-bottom: none;
}

.security-list li i {
  font-size: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.security-visual {
  display: flex;
  justify-content: center;
}

.security-visual img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(35, 157, 154, 0.2));
}

/* ===== Pricing ===== */
.Pricing {
  padding: 100px 0;
  background: var(--gradient-subtle);
}

.Pricing h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.Pricing h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.pricing-rate {
  font-size: 72px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.pricing-features li i {
  color: var(--accent);
  font-size: 14px;
}

/* ===== FAQ ===== */
.FAQs {
  padding: 100px 0;
}

.FAQs h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.FAQs h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
}

.accordion-item:first-child {
  border-top: 1px solid var(--border-color);
}

.accordion-button {
  background: transparent;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 500;
  padding: 24px 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--text-primary);
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23239d9a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.accordion-body {
  padding: 0 0 24px 0;
}

.accordion-body p {
  margin: 0;
  font-size: 16px;
}

/* ===== Final CTA ===== */
.FinalCTA {
  padding: 120px 0;
  background: var(--gradient-subtle);
  position: relative;
}

.FinalCTA::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(35, 157, 154, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.FinalCTA h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.FinalCTA h2 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-desc {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
footer {
  padding: 80px 0 0;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-color);
}

.footer-logo img {
  width: 140px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFF;
}

.footer-title {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.footer-links {
  margin: 0;
  padding: 0;
}

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

.footer-links li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Number Animation ===== */
.number {
  display: inline-block;
}

/* ===== Selection ===== */
::selection {
  background: var(--primary);
  color: #FFF;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== Language Switcher ===== */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}

.lang-dropdown-btn i.fa-globe {
  font-size: 16px;
}

.lang-dropdown-btn i.fa-chevron-down {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-dropdown-btn i.fa-chevron-down {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(35, 157, 154, 0.1);
  color: var(--text-primary);
}

.lang-option.active {
  background: rgba(35, 157, 154, 0.15);
  color: var(--primary);
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

/* ===== RTL Support ===== */
body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .nav-items-wrapper {
  flex-direction: row-reverse;
}

body.rtl .hero-cta {
  flex-direction: row-reverse;
}

body.rtl .trust-indicators .d-flex {
  flex-direction: row-reverse;
}

body.rtl .feature-card,
body.rtl .step-card,
body.rtl .benefit-item {
  text-align: right;
}

body.rtl .integration-list li,
body.rtl .security-list li,
body.rtl .pricing-features li {
  flex-direction: row-reverse;
}

body.rtl .benefit-item {
  flex-direction: row-reverse;
}

body.rtl .lang-dropdown-menu {
  right: auto;
  left: 0;
}

body.rtl .social-links {
  flex-direction: row-reverse;
}

body.rtl .footer-links li a i {
  margin-right: 0;
  margin-left: 8px;
}

/* ===== Mobile Navigation ===== */
.navbar-toggler {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.nav-items-wrapper {
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ===== Highlight Text ===== */
.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Logo Responsive ===== */
.logo-img {
  width: 160px;
  height: auto;
  transition: width 0.3s ease;
}

/* ===== Footer Social Icons ===== */
.footer-links li a i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

/* ===== Feature Card Titles ===== */
.feature-card h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.benefit-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
