:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #162033;
  --muted: #64748b;
  --line: #e5eaf2;
  --primary: #16325c;
  --primary-2: #224a86;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.section-space {
  padding: 88px 0;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 14px;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.section-desc {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

/* HEADER */
.site-header {
  position: relative;
  z-index: 1030;
}

.topbar {
  background: linear-gradient(135deg, #15325d, #1e467f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.94rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.topbar-link:hover {
  color: #ffffff !important;
}

.topbar-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topbar-icon svg {
  width: 16px;
  height: 16px;
}

.navbar-wrap {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 232, 238, 0.75);
}

.navbar {
  padding: 18px 0;
}

.brand-logo {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.nav-link {
  font-weight: 500;
  color: #394150;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* LANGUAGE */
.language-dropdown {
  position: relative;
}

.language-toggle {
  min-width: 96px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.language-toggle.active {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12);
}

.language-current-text {
  line-height: 1;
}

.language-arrow {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.language-arrow svg {
  width: 14px;
  height: 14px;
  display: block;
}

.language-toggle.active .language-arrow {
  transform: rotate(180deg);
}

.current-flag {
  width: 20px;
  height: 14px;
}

.lang-flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-flex;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.language-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(60px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: all 0.25s ease;
  z-index: 200;
}

.language-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #1f2a3d !important;
  font-size: 0.94rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.language-option:hover {
  background: #f3f6fb;
}

.language-option.active {
  background: #e9f0fb;
  color: #16325c !important;
  font-weight: 700;
}

.language-option .lang-flag {
  box-shadow: 0 0 0 1px rgba(15,23,42,0.08);
}

/* BUTTONS */
.btn-main,
.btn-outline-darkish {
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-main {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
}

.btn-main:hover,
.btn-main:focus,
.btn-main:active {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.25);
}

.btn-outline-darkish {
  background: #ffffff;
  border-color: var(--line);
  color: var(--primary) !important;
}

.btn-outline-darkish:hover,
.btn-outline-darkish:focus,
.btn-outline-darkish:active {
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  padding: 56px 0 44px;
}

.hero-card-clean {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.hero-topline {
  font-size: 1rem;
  font-weight: 700;
  color: #5f6f8d;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-name {
  font-size: clamp(2.9rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
  color: #14284b;
}

.hero-subtitle {
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #1c3d72;
}

.hero-text-clean {
  max-width: 34ch;
  font-size: 1.12rem;
  line-height: 1.9;
  color: #42526b;
  margin-bottom: 30px;
}

.hero-main-btn {
  min-width: 180px;
}

.hero-visual-clean {
  min-height: 620px;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-real-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 6px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
  background: #dfe4ea;
}

.stats-row {
  display: none !important;
}

/* CARDS */
.app-card,
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  transition: 0.28s ease;
}

.app-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.app-thumb,
.blog-thumb {
  position: relative;
  background: linear-gradient(135deg, #4b5563, #1f2937);
  color: #fff;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.65rem;
  margin: 16px;
  border-radius: 18px;
  overflow: hidden;
}

.app-thumb::after,
.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.12));
}

.thumb-label {
  position: relative;
  z-index: 1;
}

.dynamic-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body-custom {
  padding: 10px 24px 26px;
}

.mini-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  display: inline-block;
}

.card-title-custom {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.card-text-custom {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.card-link-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary) !important;
  font-weight: 700;
  transition: 0.2s ease;
}

.card-link-custom:hover {
  gap: 12px;
  color: var(--primary) !important;
}

/* APPLICATION SLIDER */
.swiper {
  padding: 16px 0 18px;
}

.appSwiper {
  position: relative;
  overflow: hidden;
  padding: 16px 0 60px;
}

.app-swiper-prev,
.app-swiper-next {
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  color: var(--primary) !important;
  transition: 0.25s ease;
  z-index: 20;
}

.app-swiper-prev:hover,
.app-swiper-next:hover {
  background: var(--primary);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.app-swiper-prev::after,
.app-swiper-next::after {
  font-size: 16px !important;
  font-weight: 800;
}

.app-swiper-prev {
  left: 8px !important;
}

.app-swiper-next {
  right: 8px !important;
}

.app-swiper-pagination {
  bottom: 8px !important;
}

.app-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c5ccd8;
  opacity: 1;
  transition: 0.25s ease;
}

.app-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--primary);
}

/* HIGHLIGHT */
.highlight-wrap {
  background: linear-gradient(135deg, #111827, #2a3140);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.22);
}

.highlight-media {
  min-height: 360px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -0.04em;
  border-radius: 24px;
  margin: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-content {
  padding: 54px 52px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.highlight-content .section-kicker,
.highlight-content .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.highlight-content .section-kicker::before {
  background: rgba(255, 255, 255, 0.7);
}

.highlight-title {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.highlight-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 54ch;
}

/* BLOG */
.blog-head-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary) !important;
  font-weight: 700;
}

.date-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  border-radius: 16px;
  padding: 12px 14px;
  text-align: center;
  line-height: 1.05;
  min-width: 68px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  font-weight: 800;
}

.date-badge small {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 4px;
}

/* CTA */
.cta-box {
  background: linear-gradient(180deg, #ffffff, #f1f4f9);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 54px 28px;
  text-align: center;
}

.cta-box p {
  color: var(--muted);
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto 24px;
}

/* FOOTER */
.footer {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(135deg, #111827, #1b2432 55%, #2b3443);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 82px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}

.footer::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.footer-logo {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
  line-height: 1;
  color: #ffffff;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.95;
}

.footer p {
  max-width: 320px;
}

.footer-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  transition: 0.25s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  transition: 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.footer-social-link:hover {
  background: #ffffff;
  color: var(--primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  opacity: 0.95;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact-list a:hover {
  color: #ffffff;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  padding: 8px 0;
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 52px;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-bottom strong {
  color: #ffffff;
  font-weight: 600;
}

/* DETAIL PAGES */
.detail-hero {
  padding: 60px 0;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.breadcrumb {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.breadcrumb-modern {
  padding: 14px 0;
  font-size: 14px;
  color: #6b7280;
  background: transparent;
  margin-top: 12px;
  margin-bottom: 10px;
}

.breadcrumb-modern .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb-modern a {
  color: #6b7280;
  transition: 0.2s;
}

.breadcrumb-modern a:hover {
  color: #14284b;
}

.breadcrumb-modern span {
  opacity: 0.6;
}

.breadcrumb-modern .active {
  color: #14284b;
  font-weight: 600;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.detail-label {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
}

.detail-title {
  font-size: 48px;
  font-weight: 800;
  color: #14284b;
  margin: 10px 0;
}

.detail-text {
  color: #4b5b73;
  line-height: 1.8;
  margin-bottom: 20px;
}

.detail-buttons {
  display: flex;
  gap: 10px;
}

.detail-buttons a {
  display: inline-flex;
  align-items: center;
}

.detail-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.15);
}

.detail-content {
  padding: 40px 0;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.detail-content h2 {
  margin-top: 30px;
  color: #14284b;
}

.detail-content p,
.detail-content li {
  color: #4b5b73;
  line-height: 1.8;
}

.info-box {
  background: #f3f6fb;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}

.faq {
  margin-top: 20px;
}

.faq p {
  margin: 5px 0;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e5eaf2;
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.sidebar-card-primary {
  background: linear-gradient(135deg, #16325c, #224a86);
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(22, 50, 92, 0.18);
}

.sidebar-card-primary .sidebar-mini-title,
.sidebar-card-primary .sidebar-title,
.sidebar-card-primary .sidebar-text {
  color: #ffffff;
}

.sidebar-card-primary .sidebar-text {
  color: rgba(255, 255, 255, 0.82);
}

.sidebar-mini-title {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7a90;
  margin-bottom: 10px;
}

.sidebar-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  color: #14284b;
  margin-bottom: 14px;
}

.sidebar-text {
  color: #4b5b73;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sidebar-actions {
  display: grid;
  gap: 10px;
}

.sidebar-card-primary .btn-main {
  background: #ffffff;
  color: #16325c !important;
  box-shadow: none;
}

.sidebar-card-primary .btn-outline {
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff !important;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  text-align: center;
  transition: 0.25s ease;
}

.sidebar-card-primary .btn-outline:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.sidebar-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-link-list li + li {
  margin-top: 10px;
}

.sidebar-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid #e5eaf2;
  color: #22304a;
  font-weight: 600;
  transition: 0.25s ease;
}

.sidebar-link-list a:hover {
  background: #eef4fc;
  color: #16325c;
  transform: translateX(4px);
}

.sidebar-link-list a span {
  color: #6b7a90;
  font-weight: 800;
}

/* SIMPLE DYNAMIC SECTION */
.home-dynamic-section {
  padding: 70px 0;
}

.home-section-head {
  margin-bottom: 24px;
}

.home-section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #16325c;
  margin-bottom: 8px;
}

.home-section-head p {
  color: #5f6f86;
  line-height: 1.7;
}

.simple-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.simple-card {
  background: #fff;
  border: 1px solid #e4ebf3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.simple-card-image {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #eef3f8;
}

.simple-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.simple-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-weight: 600;
}

.simple-card-content {
  padding: 20px;
}

.simple-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef4fc;
  color: #16325c;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.simple-card-content h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.simple-card-content h3 a {
  color: #16325c;
  text-decoration: none;
}

.simple-card-content p {
  color: #5f6f86;
  line-height: 1.8;
  margin-bottom: 14px;
}

.simple-link {
  color: #16325c;
  font-weight: 700;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .hero-visual-clean {
    min-height: 500px;
  }

  .highlight-content {
    padding: 42px 36px;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 72px 0;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
  }

  .topbar-left,
  .topbar-right {
    flex-wrap: wrap;
    gap: 12px;
  }

  .navbar-collapse {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .hero {
    padding: 34px 0 24px;
  }

  .hero-visual-clean {
    min-height: auto;
  }

  .hero-real-image {
    height: 460px;
    margin-top: 8px;
  }

  .hero-text-clean {
    max-width: 100%;
  }

  .highlight-media {
    min-height: 280px;
    margin-bottom: 0;
  }

  .highlight-content {
    padding: 30px 26px 38px;
  }

  .detail-grid,
  .detail-content-grid,
  .simple-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .brand-logo {
    font-size: 2.3rem;
  }

  .hero-name {
    font-size: 2.55rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-text-clean,
  .card-text-custom,
  .highlight-text,
  .cta-box p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-real-image {
    height: 360px;
  }

  .app-thumb,
  .blog-thumb {
    min-height: 210px;
  }

  .highlight-wrap {
    border-radius: 24px;
  }

  .cta-box {
    padding: 40px 20px;
    border-radius: 24px;
  }

  .footer {
    padding-top: 58px;
  }

  .footer-logo {
    font-size: 2.6rem;
  }

  .footer-bottom .text-md-end {
    text-align: start !important;
    margin-top: 10px;
  }

  .app-swiper-prev,
  .app-swiper-next {
    display: none !important;
  }

  .footer-hours li {
    flex-direction: column;
    gap: 2px;
  }

  .detail-grid,
  .detail-content-grid,
  .simple-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .topbar-link {
    font-size: 0.85rem;
  }

  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .language-toggle {
    min-width: 88px;
    height: 36px;
    font-size: 0.85rem;
  }

  .language-menu {
    min-width: 165px;
  }

  .language-option {
    font-size: 0.88rem;
    padding: 10px 11px;
  }
}
svg {
  max-width: 100%;
  height: auto;
}

.topbar-icon svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}

.footer-social-link svg {
  width: 18px !important;
  height: 18px !important;
}

.language-toggle svg,
.lang-flag svg {
  width: 100%;
  height: 100%;
}
/* SVG FIX */
.topbar-icon,
.footer-contact-icon,
.footer-social-link,
.language-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.topbar-icon svg {
  width: 16px !important;
  height: 16px !important;
  display: block;
}

.footer-contact-icon svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}

.footer-social-link svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}

.language-arrow svg {
  width: 14px !important;
  height: 14px !important;
  display: block;
}

.lang-flag svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* genel svg taşmasını engelle */
svg:not(.lang-flag svg) {
  max-width: none;
}
/* --- MOBİL FOOTER DÜZENLEME (EKLEME) --- */
@media (max-width: 767.98px) {
    .footer {
        padding-top: 40px;
        text-align: left; /* Genel hizalama sol, ancak içerikler dengeli */
    }

    /* Logo ve Açıklama Alanı */
    .footer-logo {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .footer p {
        max-width: 100%;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Sosyal Medya İkonları Mobilde Yan Yana ve Daha Büyük Boşluklu */
    .footer-socials {
        justify-content: flex-start;
        margin-bottom: 30px;
    }

    /* Başlıklar Arasındaki Boşluklar */
    .footer-title {
        margin-top: 20px;
        font-size: 1.1rem;
    }

    /* İletişim Listesi Hizalama */
    .footer-contact-list li {
        align-items: flex-start; /* İkonu yukarıda tut, metin yanına gelsin */
        gap: 15px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-contact-icon {
        margin-top: 4px; /* İkonu metin satırına hizala */
        width: 20px;
        height: 20px;
    }

    .footer-contact-list a {
        font-size: 0.95rem;
        line-height: 1.5;
        display: block;
    }

    /* Çalışma Saatleri Mobilde Yan Yana Kalsın (Alt alta binmesin) */
    .footer-hours li {
        flex-direction: row !important; /* Mevcut 'column' kuralını ezdik */
        justify-content: space-between;
        font-size: 0.9rem;
        padding: 12px 0;
    }

    /* Alt Telif Hakkı Kısmı */
    .footer-bottom {
        text-align: center;
        margin-top: 30px;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 5px;
        font-size: 0.85rem;
    }
}

/* Küçük Ekranlar İçin (Gerekirse) */
@media (max-width: 480px) {
    .col-6 {
        width: 100%; /* Menü ve diğer bölümler çok daralırsa tam genişlik yap */
    }
}
/* --- MOBİL MODERNİZASYON DÜZENLEMELERİ --- */

@media (max-width: 991.98px) {
    /* 1. Topbar'daki iletişim bilgilerini ve dil seçeneğini mobilde gizle */
    .topbar {
        display: none !important;
    }

    /* 2. Hero bölümünde Resmi Üste, Yazıyı Alta Al */
    .hero .row {
        display: flex;
        flex-direction: column-reverse; /* Sütunları ters çevirir: Resim (alttaki div) üste çıkar */
    }

    /* 3. Resim ve Yazı Arasındaki Boşlukları Düzenle */
    .hero-visual-clean {
        margin-bottom: 30px; /* Resim üste gelince yazı ile arasına boşluk */
    }

    .hero-real-image {
        height: auto; /* Mobilde resim yüksekliğini serbest bırak */
        max-height: 400px; /* Çok devasa durmaması için sınır koyduk */
        object-fit: cover;
    }

    /* 4. Yazıları Mobilde Ortala (İsteğe bağlı, daha şık durur) */
    .hero-card-clean {
        text-align: center;
    }

    .hero-name {
        font-size: 2.2rem;
        margin-top: 10px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* 5. Navigasyon (Menü) Açıldığında Dil Seçeneğini Buraya Eklemek İstersen 
       aşağıdaki alan menü içini düzenler. Şu an sadece üstü temizledik. */
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* Masaüstünde resmin orijinal sırasını koruması için ek önlem */
@media (min-width: 992px) {
    .hero .row {
        flex-direction: row;
    }
}
@media (max-width: 991.98px) {
    /* 1. Üstteki kalabalık barı (Telefon, E-posta, Dil) tamamen gizle */
    .topbar {
        display: none !important;
    }

    /* 2. Hero Bölümü: Resmi Üste, Yazıyı Alta Al */
    .hero .row {
        display: flex;
        flex-direction: column-reverse !important; /* Resim div'i (altta olan) üste çıkar */
    }

    /* 3. Resim Ayarları */
    .hero-visual-clean {
        margin-bottom: 25px; /* Resim ile aşağıdaki yazı arasında boşluk */
    }

    .hero-real-image {
        height: auto !important;
        max-height: 350px; /* Mobilde çok devasa durmasın */
        width: 100%;
        object-fit: cover;
    }

    /* 4. Yazı ve Buton Hizalaması */
    .hero-card-clean {
        text-align: center; /* Mobilde her şeyi ortala, daha estetik durur */
    }

    .hero-name {
        font-size: 2.4rem !important;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.3rem !important;
        margin-bottom: 15px;
    }

    .hero-text-clean {
        margin: 0 auto 25px auto;
        font-size: 1rem;
    }

    /* 5. Menü (Hamburger) İçindeki Düzenleme */
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        border-radius: 20px;
        margin-top: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
}
.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-social {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: 0.2s ease;
}

.topbar-social:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.topbar-social svg {
  width: 18px;
  height: 18px;
}

.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 -8px 22px rgba(0,0,0,0.14);
}

.mobile-bottom-item {
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.mobile-bottom-item span {
  font-size: 20px;
  line-height: 1;
}

.mobile-call {
  background: #4b5563;
}

.mobile-whatsapp {
  background: #22c55e;
}

.mobile-cta {
  background: #f59e0b;
}

.mobile-map {
  background: #06b6d4;
}

@media (max-width: 991px) {
  .mobile-bottom-bar {
    display: grid;
  }

  body {
    padding-bottom: 70px;
  }
}
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.certificate-card {
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    border: 1px solid var(--about-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.certificate-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.certificate-card-body {
    padding: 18px;
}

.certificate-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--about-primary-dark);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .certificates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .certificates-grid {
        grid-template-columns: 1fr;
    }
}
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 40px;
}

.blog-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.toc-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.toc-box ul {
    list-style: none;
    padding: 0;
}

.toc-box li {
    margin-bottom: 10px;
}

.toc-box a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
}

.toc-box a.active {
    color: #2563eb;
}

.faq-item {
    margin-top: 15px;
}

.faq-item button {
    width: 100%;
    text-align: left;
    padding: 12px;
    border: none;
    background: #f1f5f9;
    font-weight: 700;
    border-radius: 10px;
}

.faq-answer {
    display: none;
    padding: 10px;
}
/* ULTRA FIX - BLOG + APPLICATION CONTENT IMAGES */

.blog-body img,
.application-body img,
.blog-body figure img,
.application-body figure img,
.blog-body figure.image img,
.application-body figure.image img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    max-height: 700px !important;
    display: block !important;
    margin: 24px auto !important;
    border-radius: 16px;
    object-fit: contain !important;
}

.blog-body figure,
.application-body figure,
.blog-body figure.image,
.application-body figure.image,
.blog-body figure.image.image_resized,
.application-body figure.image.image_resized {
    width: auto !important;
    max-width: 100% !important;
    margin: 24px auto !important;
    text-align: center !important;
}

.blog-body figure.image img[style],
.application-body figure.image img[style],
.blog-body img[style],
.application-body img[style] {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 700px !important;
}

.blog-body .image.image_resized,
.application-body .image.image_resized {
    width: auto !important;
    max-width: 100% !important;
}
.application-body img,
.application-body figure img,
.application-body figure.image img,
.application-body .image img,
.blog-body img,
.blog-body figure img,
.blog-body figure.image img,
.blog-body .image img {
    aspect-ratio: auto !important;
}
.navbar a,
.navbar-nav a,
.topbar a,
.header a {
    text-decoration: none !important;
}

.navbar a:hover,
.navbar-nav a:hover,
.topbar a:hover,
.header a:hover {
    text-decoration: none !important;
}
.topbar-dark a,
.topbar-dark a:link,
.topbar-dark a:visited,
.topbar-dark a:hover,
.topbar-dark a:active,
.topbar-contact a,
.topbar-contact a:link,
.topbar-contact a:visited,
.topbar-contact a:hover,
.topbar-contact a:active {
    text-decoration: none !important;
}