:root {
  --navy: #1E3A8A;
  --navy-dark: #162d6e;
  --orange: #EA580C;
  --orange-light: #f97316;
  --black: #0A0A0A;
  --white: #FFFFFF;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-600: #475569;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  margin: 0;
}

/* ── NAVBAR ─────────────────────────────────── */
#mainNav {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(30, 58, 138, .10);
  padding: 0;
  transition: background .3s, box-shadow .3s;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

#mainNav.scrolled {
  /* Zaten beyaz olduğu için ekstra bir şey yapmaya gerek yok */
}

#mainNav .navbar-brand img {
  height: 36px;
}

#mainNav .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 1.4rem .85rem !important;
  position: relative;
  transition: color .2s;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}

#mainNav .nav-link:hover {
  color: var(--orange) !important;
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}

.btn-get-started {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 6px;
  font-weight: 600;
  font-size: .875rem;
  padding: .5rem 1.25rem !important;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
}

.btn-get-started:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-get-started::after {
  display: none !important;
}

.btn-get-started,
.btn-get-started:hover {
  text-decoration: none !important;
}

/* ── LOGIN BUTTON ─────────────────────────── */
.btn-login {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: 6px;
  font-weight: 600;
  font-size: .875rem;
  padding: .45rem 1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.btn-login:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── LANG SWITCHER ────────────────────────── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  margin-left: .75rem;
}

.lang-switcher a {
  background: none;
  border: none;
  padding: .45rem .65rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
  text-decoration: none;
}

.lang-switcher a.active {
  background: var(--navy) !important;
  color: var(--white) !important;
}

.lang-switcher a:not(.active):hover {
  background: var(--gray-100);
}

.lang-switcher .lang-sep {
  width: 1px;
  height: 14px;
  background: var(--gray-200);
}

/* ── HERO ────────────────────────────────────── */
#hero {
  background:
    radial-gradient(at 0% 0%, rgba(30, 58, 138, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(234, 88, 12, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(30, 58, 138, 0.10) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(234, 88, 12, 0.08) 0px, transparent 50%),
    var(--gray-50);
  padding: 8rem 0 6rem;
  overflow: hidden;
  position: relative;
}

#hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(234, 88, 12, .1);
  color: var(--orange);
  font-weight: 600;
  font-size: .75rem;
  border-radius: 100px;
  padding: .35rem .9rem;
  margin-bottom: 1.5rem;
}

#hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

#hero h1 span {
  color: var(--orange);
}

#hero p.lead {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 500px;
}

.btn-primary-custom {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-primary-custom:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 138, .25);
}

.btn-outline-custom {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  border: 2px solid var(--navy);
  transition: all .2s;
}

.btn-outline-custom:hover {
  background: var(--navy);
  color: var(--white);
}

#hero .hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .hero-img-wrap::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 58, 138, .08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#hero .hero-img-wrap img {
  max-width: 100%;
  width: 520px;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(30, 58, 138, .15));
}

/* ── MODULES ─────────────────────────────────── */
#modules {
  padding: 5rem 0 3rem;
  background: var(--white);
}

/* ── SECTORS ─────────────────────────────────── */
#sectors {
  padding: 5rem 0 3rem;
  background: #f8fafc;
  /* Light gray background to distinguish from modules */
}

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.module-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.75rem 1.6rem;
  background: var(--white);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  height: 100%;
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(30, 58, 138, .12);
  border-color: rgba(30, 58, 138, .2);
}

.module-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.module-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

.module-icon img {
  /* Icons are now true transparent PNGs encapsulated in SVG */
}

/* Removed hover effects for icons */

.module-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .35rem 0;
  line-height: 1.2;
}

.module-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.module-card .module-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .3rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap .2s;
}

.module-card .module-link:hover {
  gap: .55rem;
}

/* ── COMING SOON MODULES ─────────────────────── */
.module-card.coming-soon {
  position: relative;
  border-style: dashed;
  background: linear-gradient(to bottom right, #fff, #fafafa);
  border-color: var(--gray-200);
}

.module-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--gray-200);
}

.module-card.coming-soon h5 {
  color: var(--gray-600);
}

.module-card.coming-soon .module-icon img {
  filter: grayscale(1);
  opacity: 0.4;
}

.module-card.coming-soon .coming-soon-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 0 14px 0 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: -2px 2px 8px rgba(234, 88, 12, 0.2);
  z-index: 2;
}

.module-card.coming-soon .module-link {
  color: var(--gray-600);
  opacity: .6;
  cursor: not-allowed;
}

.module-card.coming-soon .module-link i {
  opacity: .5;
}

/* ── STATS ───────────────────────────────────── */
#stats {
  background: var(--navy);
  padding: 2.5rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}

.stat-number span {
  color: var(--white);
  opacity: .8;
  margin-left: 2px;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

/* ── WHY ARISE ───────────────────────────────── */
#why {
  padding: 4rem 0 5rem;
  background: var(--gray-50);
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(234, 88, 12, .1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-feature h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}

.why-feature p {
  font-size: .875rem;
  color: var(--gray-600);
  margin: 0;
}

.why-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30, 58, 138, .15);
  background: linear-gradient(135deg, #eef2ff 0%, #fff7ed 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  padding: 3rem;
}

.why-img-wrap img {
  max-width: 100%;
}


/* ── PRICING TABLE ───────────────────────────── */
#pricing {
  padding: 6rem 0;
  background: var(--white);
}

.pricing-table {
  width: 100%;
  border-radius: 16px;
  overflow: visible;
  border: 1px solid var(--gray-200);
  margin-top: 2.5rem;
}

.pt-head .pt-cell:first-child {
  border-radius: 16px 0 0 0;
}

.pt-head .pt-cell:last-child {
  border-radius: 0 16px 0 0;
}

.pt-foot .pt-cell:first-child {
  border-radius: 0 0 0 16px;
}

.pt-foot .pt-cell:last-child {
  border-radius: 0 0 16px 0;
}

.pt-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  border-bottom: 1px solid var(--gray-200);
}

.pt-row:last-child {
  border-bottom: none;
}

.pt-cell {
  padding: .85rem 1.1rem;
  font-size: .875rem;
  color: var(--black);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--gray-200);
}

.pt-cell:last-child {
  border-right: none;
}

.pt-label {
  font-weight: 600;
  color: var(--navy);
  background: var(--gray-50);
  font-size: .82rem;
}

.text-navy {
  color: var(--navy);
}

/* Header row */
.pt-head .pt-featured {
  overflow: visible !important;
}

.pt-head {
  background: var(--navy);
}

.pt-head .pt-cell {
  background: var(--navy);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: .3rem;
  padding: 1.1rem 1.2rem 1.1rem;
  border-right-color: rgba(255, 255, 255, .1);
  color: var(--white);
}

.pt-head .pt-label {
  background: var(--navy);
  justify-content: center;
}

.pt-head .pt-featured {
  background: var(--orange) !important;
}

.pricing-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .22);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: .22rem .65rem;
  margin-bottom: .1rem;
}

.plan-chip {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.pt-price-wrap {
  display: flex;
  align-items: flex-end;
  gap: .3rem;
}

.pt-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pt-period {
  font-size: .75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  padding-bottom: .15rem;
}

.pt-note {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
  margin-top: .15rem;
}

.pt-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 100px;
  padding: .25rem .65rem;
}

.pt-discount-badge i {
  color: #86efac;
}

.btn-pt {
  display: inline-block;
  padding: .45rem .9rem;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.btn-pt-outline {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: var(--white);
}

.btn-pt-outline:hover {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
}

.btn-pt-solid {
  background: var(--white);
  color: var(--orange);
  border: 1.5px solid var(--white);
}

.btn-pt-solid:hover {
  background: rgba(255, 255, 255, .9);
}

/* ── CURRENCY SWITCHER ───────────────────────── */
.currency-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.currency-switcher button {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: .3rem .75rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}

.currency-switcher button:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.currency-switcher button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pt-foot .pt-cell {
  padding: 1rem 1.1rem;
  background: var(--gray-50);
}

.pt-foot .pt-featured {
  background: rgba(234, 88, 12, .06) !important;
}

.btn-pt-foot-outline {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  transition: all .2s;
  white-space: nowrap;
}

.btn-pt-foot-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-pt-foot-solid {
  display: inline-block;
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: var(--white);
  transition: all .2s;
  white-space: nowrap;
}

.btn-pt-foot-solid:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
}

/* Featured column highlight */
.pt-featured {
  background: rgba(234, 88, 12, .04) !important;
}

/* Badges */
.pt-badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}

.pt-yes {
  background: rgba(30, 58, 138, .08);
  color: var(--navy);
}

.pt-no {
  background: var(--gray-100);
  color: #94a3b8;
}

.pt-paid {
  background: rgba(234, 88, 12, .1);
  color: var(--orange);
}

/* Zebra */
.pt-row:nth-child(even):not(.pt-head) .pt-cell {
  background: var(--gray-50);
}

.pt-row:nth-child(even):not(.pt-head) .pt-featured {
  background: rgba(234, 88, 12, .06) !important;
}

/* Mobile: horizontal scroll */
@media (max-width: 767px) {
  .pricing-table {
    overflow-x: auto;
  }

  .pt-row {
    min-width: 680px;
  }
}

/* ── CONTACT ─────────────────────────────────── */
#contact {
  padding: 6rem 0;
  background: var(--gray-50);
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .9rem;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.contact-form input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  cursor: pointer;
  accent-color: var(--navy);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, .1);
}

/* jQuery Validation Error Styles */
.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
  border-color: #dc3545 !important;
  background-color: #fff5f5;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, .15) !important;
}

.contact-form label.error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: block;
  font-weight: 500;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item .ci-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .15rem;
}

.contact-info-item p {
  font-size: .875rem;
  color: var(--gray-600);
  margin: 0;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, .7);
  padding: 2rem 0 1rem;
}

footer .footer-logo img {
  height: 36px;
}

footer .footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-addresses {
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-addr-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

.footer-addr-item i {
  color: var(--orange);
  margin-top: .2rem;
  flex-shrink: 0;
}

footer h6 {
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

footer ul li {
  margin-bottom: 0;
}

footer ul li a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s, transform .2s;
  display: inline-block;
}

footer ul li a:hover {
  color: var(--orange);
  transform: translateX(6px);
}

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.social-links a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  font-size: .8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* ── BACK TO TOP ─────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(234, 88, 12, .4);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, .45);
}

#backToTop.visible {
  display: flex;
}

/* ── COOKIE BANNER ───────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 0;
  z-index: 1050;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner .cookie-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-banner .btn-outline-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-banner .btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── UTILITIES ───────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {

  #mainNav,
  #mainNav .navbar-collapse {
    background: var(--white);
  }

  #hero {
    padding: 4rem 0;
  }

  #hero .hero-img-wrap {
    margin-top: 3rem;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* ── WHY SECTION BACKGROUND ── */
#why {
  padding: 6rem 0;
}

.why-inner {
  position: relative;
  background-color: #ffffff;
  background-image: url('../images/why-cover.png');
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
  overflow: hidden;
}

.why-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.95) 50%, #ffffff 65%);
  z-index: 1;
}

.why-inner .row {
  position: relative;
  z-index: 2;
  padding: 3rem;
}

@media (max-width: 991.98px) {
  .why-inner .row {
    padding: 2rem 1rem;
  }

  .why-inner::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
  }
}