*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: #392b63;
  backdrop-filter: blur(40px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 800; color: #1a1a2e; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: #4a4a6a; transition: color 0.2s; }
.nav-links a:hover { color: #6c63ff; }
.nav-cta {
  display: inline-block; padding: 10px 24px; border-radius: 8px;
  background: linear-gradient(135deg, #6c63ff, #e84393);
  color: #fff !important; font-weight: 600; font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(108,99,255,0.3); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #1a1a2e; transition: all 0.3s; border-radius: 2px; }

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; gap: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* Dynamic Menu inside nav-links */
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links ul li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links ul li a:hover {
  color: #a8a2ff;
}
/*
.nav.scrolled .nav-links ul li a {
  color: #4a4a6a;
}
.nav.scrolled .nav-links ul li a:hover {
  color: #6c63ff;
}
*/

@media (max-width: 768px) {
  .nav-links ul {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
  }
  .nav-links ul li a {
    color: #4a4a6a;
  }
  .nav-links ul li a:hover {
    color: #6c63ff;
  }
  .nav-links .flags_wrapper {
    justify-content: center;
    margin-left: 0 !important;
    margin-top: 10px;
  }
  .nav-links .flags_wrapper a {
    color: #4a4a6a !important;
    border-color: rgba(0,0,0,0.1);
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 40%, #24243e 100%);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(108,99,255,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(232,67,147,0.1) 0%, transparent 50%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(108,99,255,0.15); color: #a8a2ff;
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(108,99,255,0.2);
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.hero h1 span { background: linear-gradient(135deg, #a8a2ff, #f5a0d0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p {
  font-size: 1.125rem; color: rgba(255,255,255,0.65);
  max-width: 520px; margin-bottom: 32px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px;
  background: linear-gradient(135deg, #6c63ff, #e84393);
  color: #fff; font-weight: 600; font-size: 0.9375rem;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,99,255,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  font-weight: 500; font-size: 0.9375rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-value { font-size: 1.75rem; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-visual {
  position: relative; display: flex; justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px; width: 100%; max-width: 440px;
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-card-avatar { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #6c63ff, #e84393); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.hero-card-info h4 { color: #fff; font-size: 0.9375rem; font-weight: 600; }
.hero-card-info span { color: rgba(255,255,255,0.4); font-size: 0.8125rem; }
.hero-card-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hero-card-item:last-child { border-bottom: none; }
.hero-card-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hero-card-dot.green { background: #2ecc71; }
.hero-card-dot.orange { background: #f39c12; }
.hero-card-dot.purple { background: #a8a2ff; }
.hero-card-text { flex: 1; color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.hero-card-price { color: #fff; font-weight: 600; font-size: 0.875rem; }
.hero-float {
  position: absolute; padding: 12px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.8125rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.hero-float-1 { top: -20px; right: -20px; }
.hero-float-2 { bottom: 40px; left: -40px; }

@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

/* Section base */
.section { padding: 100px 0; }
.section-label {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: rgba(108,99,255,0.08); color: #6c63ff;
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: #1a1a2e;
  margin-bottom: 16px; line-height: 1.2;
}
.section-subtitle {
  font-size: 1.0625rem; color: #6b6b8d;
  max-width: 600px; margin: 0 auto 48px; line-height: 1.7;
}
.text-center { text-align: center; }

/* Social Proof */
.social-proof {
  background: #f8f9ff;
  border-top: 1px solid #eef0ff;
  border-bottom: 1px solid #eef0ff;
}
.social-proof-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b6b8d;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
}
.social-proof-logo {
  padding: 12px 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eef0ff;
  font-weight: 600;
  color: #4a4a6a;
  font-size: 0.875rem;
}
.social-proof-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.social-proof-metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #6c63ff;
}
.social-proof-metric-label {
  font-size: 0.8125rem;
  color: #6b6b8d;
}

/* Problem */
.problem {
  background: #fff;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem-visual {
  display: flex;
  justify-content: center;
}
.problem-card {
  background: #fff8f0;
  border: 1px solid #ffe0b2;
  border-radius: 16px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
}
.problem-card-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.problem-card-item:last-child { border-bottom: none; }
.problem-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: #e67e22;
  background: rgba(230,126,34,0.1);
}
.problem-card-text { font-size: 0.875rem; color: #6b6b8d; line-height: 1.5; }

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

/* Steps */
.steps { background: #f8f9ff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card {
  background: #fff; border-radius: 16px; padding: 40px 32px;
  border: 1px solid #eef0ff; transition: all 0.3s;
  position: relative;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(108,99,255,0.1); border-color: rgba(108,99,255,0.15); }
.step-number {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, #6c63ff, #e84393);
  color: #fff; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step-card h3 { font-size: 1.25rem; font-weight: 700; color: #1a1a2e; margin-bottom: 12px; }
.step-card p { font-size: 0.9375rem; color: #6b6b8d; line-height: 1.7; }
.step-card .icon-check { color: #2ecc71; margin-right: 8px; }
.step-features { margin-top: 20px; }
.step-features li { font-size: 0.875rem; color: #6b6b8d; padding: 6px 0; display: flex; align-items: center; }

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

/* Features grid */
.features { background: #fff; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 32px 24px; border-radius: 16px;
  border: 1px solid #eef0ff; transition: all 0.3s;
}
.feature-card:hover { background: #f8f9ff; border-color: transparent; transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 16px;
}
.feature-icon.purple { background: rgba(108,99,255,0.1); color: #6c63ff; }
.feature-icon.pink { background: rgba(232,67,147,0.1); color: #e84393; }
.feature-icon.green { background: rgba(46,204,113,0.1); color: #2ecc71; }
.feature-icon.blue { background: rgba(52,152,219,0.1); color: #3498db; }
.feature-icon.orange { background: rgba(243,156,18,0.1); color: #f39c12; }
.feature-icon.teal { background: rgba(26,188,156,0.1); color: #1abc9c; }
.feature-icon.indigo { background: rgba(92,107,192,0.1); color: #5c6bc0; }
.feature-icon.red { background: rgba(231,76,60,0.1); color: #e74c3c; }
.feature-icon.cyan { background: rgba(0,188,212,0.1); color: #00bcd4; }
.feature-icon.amber { background: rgba(255,193,7,0.1); color: #ffc107; }
.feature-icon.deep-purple { background: rgba(103,58,183,0.1); color: #673ab7; }
.feature-icon.lime { background: rgba(139,195,74,0.1); color: #8bc34a; }
.feature-card h4 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: #6b6b8d; line-height: 1.6; }

@media (max-width: 968px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* Pricing highlight */
.pricing-highlight {
  background: linear-gradient(135deg, #0f0c29, #302b63);
  color: #fff; text-align: center;
}
.pricing-highlight .section-title { color: #fff; }
.pricing-highlight .section-subtitle { color: rgba(255,255,255,0.6); }
.pricing-card {
  display: inline-block; background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 48px; max-width: 480px;
}
.pricing-amount { font-size: 4rem; font-weight: 800; background: linear-gradient(135deg, #a8a2ff, #f5a0d0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.pricing-amount span { font-size: 1.5rem; }
.pricing-desc { color: rgba(255,255,255,0.6); margin: 16px 0 32px; font-size: 1rem; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: rgba(255,255,255,0.75); font-size: 0.9375rem; }
.pricing-features li i { color: #2ecc71; font-size: 0.875rem; }

/* Testimonials */
.testimonials { background: #f8f9ff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid #eef0ff;
}
.testimonial-stars { color: #f39c12; font-size: 0.875rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.9375rem; color: #4a4a6a; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9375rem; font-weight: 600; color: #1a1a2e; }
.testimonial-role { font-size: 0.8125rem; color: #6b6b8d; }

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

/* Customer showcase */
.showcase { background: #fff; }
.showcase-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; align-items: center;
  margin-bottom: 64px;
}
.showcase-logo {
  padding: 16px 24px; border-radius: 12px;
  background: #f8f9ff; border: 1px solid #eef0ff;
  font-weight: 600; color: #4a4a6a; font-size: 0.9375rem;
  transition: all 0.2s;
}
.showcase-logo:hover { border-color: rgba(108,99,255,0.2); background: rgba(108,99,255,0.03); }
.showcase-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.showcase-case {
  display: flex; align-items: center; gap: 24px;
  padding: 24px; border-radius: 16px;
  border: 1px solid #eef0ff; transition: all 0.3s;
}
.showcase-case:hover { background: #f8f9ff; transform: translateY(-2px); }
.showcase-case-img {
  width: 80px; height: 80px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff;
}
.showcase-case h4 { font-size: 1rem; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
.showcase-case p { font-size: 0.8125rem; color: #6b6b8d; line-height: 1.5; }

@media (max-width: 768px) {
  .showcase-cases { grid-template-columns: 1fr; }
  .showcase-logos { gap: 20px; }
}

/* Comparison table */
.comparison-table-wrap { overflow-x: auto; margin-top: 48px; }
.comparison-table {
  width: 100%; max-width: 900px; margin: 0 auto;
  border-collapse: separate; border-spacing: 0;
  font-size: 0.9375rem;
}
.comparison-table th {
  padding: 16px 20px;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  color: #fff;
}
.comparison-table th:first-child { text-align: left; }
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
}
.comparison-table td:first-child { color: rgba(255,255,255,0.8); font-weight: 500; }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table .check { color: #2ecc71; }
.comparison-table .cross { color: rgba(255,255,255,0.2); }
.comparison-table .highlight-row td { background: rgba(108,99,255,0.06); color: rgba(255,255,255,0.9); }

/* FAQ */
.faq { background: #f8f9ff; }
.faq-list { max-width: 768px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: 12px; margin-bottom: 12px;
  border: 1px solid #eef0ff; overflow: hidden;
}
.faq-question {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; color: #1a1a2e; font-size: 1rem;
  transition: background 0.2s;
}
.faq-question:hover { background: #f8f9ff; }
.faq-question i { transition: transform 0.3s; color: #6c63ff; font-size: 0.875rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: #6b6b8d; font-size: 0.9375rem; line-height: 1.7; }
.faq-answer-inner a { color: #6c63ff; text-decoration: underline; }
.faq-item.active .faq-answer { max-height: 500px; }

/* CTA section / Form elements style inside footer-contact-form */
.cta-section {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  text-align: center; color: #fff;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.6); }

/* General CMS Form styles mapping */
.cta-section form { max-width: 540px; margin: 40px auto 0; text-align: left; }
.cta-section form input, 
.cta-section form textarea, 
.cta-section form select {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff; font-family: inherit; font-size: 0.9375rem;
  outline: none; transition: all 0.2s;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.cta-section form input::placeholder, 
.cta-section form textarea::placeholder { color: rgba(255,255,255,0.35); }

.cta-section form input:focus, 
.cta-section form textarea:focus, 
.cta-section form select:focus {
  border-color: rgba(108,99,255,0.5);
  background: rgba(255,255,255,0.08);
}
.cta-section form textarea { min-height: 120px; resize: vertical; }

.cta-section form button,
.cta-section form input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; border-radius: 10px;
  background: linear-gradient(135deg, #6c63ff, #e84393);
  color: #fff !important; font-weight: 600; font-size: 0.9375rem;
  transition: all 0.2s; border: none; cursor: pointer;
  width: 100%;
}
.cta-section form button:hover,
.cta-section form input[type="submit"]:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(108,99,255,0.35);
}

.cta-note { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin-top: 16px; }
.cta-risk-reversal {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.cta-risk-reversal span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-risk-reversal i { color: #2ecc71; }

/* Footer */
.footer {
  background: #0f0c29; color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 0.9375rem; font-weight: 600; margin-bottom: 20px; }
.footer-links li, .footer-links a { margin-bottom: 12px; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; display: block; }
.footer-links a:hover { color: #a8a2ff; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: rgba(255,255,255,0.6);
}
.footer-social a:hover { border-color: rgba(108,99,255,0.3); color: #a8a2ff; background: rgba(108,99,255,0.1); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.8125rem;
}

/* Languages and dynamic flags */
.flags_wrapper, .footer-langs {
  display: flex;
  gap: 8px;
  align-items: center;
}
.flags_wrapper a, .footer-langs a {
  font-size: 0.8125rem;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7) !important;
  transition: all 0.2s;
  text-decoration: none;
}
.flags_wrapper a:hover, .footer-langs a:hover {
  border-color: rgba(108,99,255,0.3);
  color: #a8a2ff !important;
  background: rgba(108,99,255,0.1);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Utility */
.mt-2 { margin-top: 2rem; }

/* News banner */
.news-banner {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,67,147,0.1), rgba(108,99,255,0.1));
  border: 1px solid rgba(232,67,147,0.15);
  font-size: 0.9375rem; color: #4a4a6a; margin-top: 24px;
}
.news-banner strong { color: #e84393; }
.news-banner i { color: #e84393; }
.news-banner a { color: #6c63ff; font-weight: 600; text-decoration: underline; }

/* Inner Page styling (for non-home pages) */
article#main header {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 40%, #24243e 100%);
  text-align: center;
  padding: 80px 0 !important;
}
article#main header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff !important;
}
.wrapper.style5 {
  background: #fff;
  padding: 60px 0;
  color: #1a1a2e;
}
.wrapper.style5 .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
