/* ================================
   凯利达商务官方网站 — 新版样式
   Fonts: OnePlus Sans + ITC Franklin Gothic
   Primary: #c41230 凯利达红
   ================================ */

@font-face {
  font-family: 'KLD Display';
  src: url('../fonts/framd.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'KLD Sans';
  src: url('../fonts/oneplus.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --kld-red: #c41230;
  --kld-red-dark: #a01028;
  --kld-red-light: #fee2e2;
  --kld-navy: #0f172a;
  --kld-blue: #0ea5e9;
  --kld-blue-dark: #0369a1;
  --kld-dark: #1e293b;
  --kld-text: #475569;
  --kld-muted: #64748b;
  --kld-bg: #f8fafc;
  --kld-white: #ffffff;
  --kld-border: #e2e8f0;
  --kld-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  --kld-shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.14);
  --font-display: 'KLD Display', 'Microsoft YaHei', 'PingFang SC', sans-serif;
  --font-body: 'KLD Sans', 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--kld-dark);
  background: var(--kld-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--kld-navy);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--kld-red);
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  color: var(--kld-muted);
  max-width: 640px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--kld-red);
  color: var(--kld-white);
  box-shadow: 0 8px 24px rgba(196, 18, 48, 0.28);
}

.btn-primary:hover {
  background: var(--kld-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 18, 48, 0.36);
}

.btn-outline {
  background: transparent;
  color: var(--kld-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--kld-white);
  color: var(--kld-navy);
  border-color: var(--kld-white);
}

/* Top bar */
.topbar {
  background: var(--kld-navy);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.topbar a:hover {
  color: var(--kld-white);
}

.topbar .phone {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

.topbar svg {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--kld-navy);
  line-height: 1;
}

.logo-text span {
  font-size: 12px;
  color: var(--kld-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-right: 36px;
}

.nav a:last-child {
  margin-right: 0;
}

.nav a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--kld-dark);
  position: relative;
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--kld-red);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--kld-red);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta > * + * {
  margin-left: 20px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.header-phone span {
  font-size: 12px;
  color: var(--kld-muted);
}

.header-phone strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--kld-red);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--kld-navy);
  margin: 6px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.65) 55%, rgba(15, 23, 42, 0.2) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  color: var(--kld-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--kld-red);
}

.hero h1 {
  font-size: 64px;
  color: var(--kld-white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  color: var(--kld-red);
  font-style: normal;
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 10px;
  background: rgba(196, 18, 48, 0.25);
  border-radius: 4px;
  z-index: -1;
}

.hero p.lead {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-actions > * {
  margin-right: 18px;
  margin-bottom: 18px;
}

.hero-actions > *:last-child {
  margin-right: 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
}

.hero-stats > * + * {
  margin-left: 48px;
}

.hero-stat {
  padding-left: 0;
}

.hero-stat + .hero-stat {
  border-left: 3px solid var(--kld-red);
  padding-left: 18px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--kld-white);
  line-height: 1;
}

.hero-stat span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  display: block;
}

/* Stats band */
.stats-band {
  background: var(--kld-white);
  padding: 40px 0;
  margin-top: -60px;
  position: relative;
  z-index: 3;
  box-shadow: var(--kld-shadow);
  border-radius: 16px;
}

.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  min-width: 0;
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--kld-red-light);
  color: var(--kld-red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card .icon svg {
  width: 28px;
  height: 28px;
}

.stat-card strong {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--kld-navy);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--kld-muted);
  font-size: 15px;
}

/* Services */
.services {
  background: var(--kld-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--kld-white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--kld-shadow);
  transition: all 0.35s ease;
  border: 1px solid var(--kld-border);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--kld-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--kld-shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* 业务场景滚动展示 */
.gallery {
  background: linear-gradient(180deg, var(--kld-white) 0%, #f5f7fb 100%);
}

.gallery-viewport {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 24px 18px;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 72px, #000 calc(100% - 72px), transparent 100%);
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: gallery-scroll 32s linear infinite;
}

.gallery-viewport:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  flex: 0 0 auto;
  margin-right: 22px;
  background: var(--kld-white);
  border: 1px solid var(--kld-border);
  border-radius: 16px;
  padding: 14px 14px 12px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(20, 30, 60, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(196, 18, 48, 0.16);
  border-color: rgba(196, 18, 48, 0.25);
}

.gallery-item img {
  display: block;
  height: 108px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin: 0 auto;
}

.gallery-item figcaption {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--kld-dark);
  letter-spacing: 0.5px;
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .gallery-item img {
    height: 84px;
  }
  .gallery-item figcaption {
    font-size: 13px;
  }
}

.service-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--kld-red) 0%, var(--kld-red-dark) 100%);
  color: var(--kld-white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(196, 18, 48, 0.22);
}

.service-icon svg {
  width: 34px;
  height: 34px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--kld-text);
  font-size: 15px;
  line-height: 1.8;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
	
}

.about-image {
  position: relative;
	
}

.about-image img {
  /* 透明 PNG 不需要卡片式的圆角和阴影，否则阴影会沿矩形边框画出“白色底块” */
  border-radius: 0;
  box-shadow: none;
	
}

.about-image .experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--kld-red);
  color: var(--kld-white);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(196, 18, 48, 0.3);
	
}

.experience-badge strong {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
}

.experience-badge span {
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.95;
}

.about-content .eyebrow {
  color: var(--kld-red);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 40px;
  margin: 14px 0 24px;
}

.about-content p {
  color: var(--kld-text);
  margin-bottom: 18px;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.about-feature svg {
  width: 22px;
  height: 22px;
  color: var(--kld-red);
  flex-shrink: 0;
}

/* Why us */
.why-us {
  background: linear-gradient(180deg, var(--kld-navy) 0%, #1e293b 100%);
  color: var(--kld-white);
}

.why-us .section-title h2,
.why-us .section-title p {
  color: var(--kld-white);
}

.why-us .section-title p {
  opacity: 0.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.why-card .num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--kld-red);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  color: var(--kld-white);
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* Credentials */
.credentials {
  background: var(--kld-bg);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

.credential-card {
  background: var(--kld-white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--kld-shadow);
  text-align: center;
  transition: transform 0.3s;
}

.credential-card:hover {
  transform: translateY(-6px);
}

.credential-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.credential-card img {
  border-radius: 12px;
  margin: 0 auto;
  max-height: 360px;
  object-fit: contain;
}

.credential-card p {
  margin-top: 16px;
  color: var(--kld-muted);
  font-size: 15px;
}

/* Partners */
.partners {
  background: var(--kld-bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--kld-white);
  border-top: 1px solid var(--kld-border);
  border-left: 1px solid var(--kld-border);
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 12px 16px;
  border-right: 1px solid var(--kld-border);
  border-bottom: 1px solid var(--kld-border);
  background: var(--kld-white);
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.partner-card img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 70px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

.partner-card:hover img {
  opacity: 1;
}

/* 手机端右下角悬浮拨号按钮 */
.mobile-call-fab {
  display: none;
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 999;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--kld-red);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(196, 18, 48, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.mobile-call-fab svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-call-fab:hover {
  background: var(--kld-red-dark);
  transform: translateY(-2px);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.contact-info h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--kld-text);
  font-size: 17px;
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: var(--kld-bg);
  border-radius: 14px;
  border: 1px solid var(--kld-border);
}

.contact-item .icon {
  width: 52px;
  height: 52px;
  background: var(--kld-red);
  color: var(--kld-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon svg {
  width: 24px;
  height: 24px;
}

.contact-item .text span {
  display: block;
  font-size: 14px;
  color: var(--kld-muted);
  margin-bottom: 2px;
}

.contact-item .text strong,
.contact-item .text a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--kld-navy);
}

.contact-item.phone-item {
  background: linear-gradient(135deg, var(--kld-red) 0%, var(--kld-red-dark) 100%);
  border: none;
}

.contact-item.phone-item .icon {
  background: rgba(255, 255, 255, 0.2);
}

.contact-item.phone-item .text span,
.contact-item.phone-item .text strong,
.contact-item.phone-item .text a {
  color: var(--kld-white);
}

.contact-qr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.qr-card {
  background: var(--kld-white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--kld-shadow);
  text-align: center;
  border: 1px solid var(--kld-border);
}

.qr-card img {
  border-radius: 10px;
  margin-bottom: 12px;
}

.qr-card span {
  font-size: 15px;
  color: var(--kld-dark);
  font-weight: 600;
}

.contact-map {
  margin-top: 32px;
}

.contact-map img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--kld-shadow);
  border: 1px solid var(--kld-border);
}

/* Footer */
.footer {
  background: var(--kld-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.footer-title {
  font-family: var(--font-display);
  color: var(--kld-white);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--kld-white);
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--kld-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a:hover {
  color: var(--kld-white);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 48px;
  }

  .stats-band .container,
  .why-grid,
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
	 
  }

  .about-image {
    order: -1;
    max-width: 560px;
    margin: 0 auto;
	  
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
	  
  }
}

/* 手机端顶部拨打按钮 */
.header-call {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--kld-red) 0%, var(--kld-red-dark) 100%);
  color: var(--kld-white);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(196, 18, 48, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-call:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(196, 18, 48, 0.45);
}

.header-call svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .header-call {
    display: inline-flex;
  }

  .mobile-call-fab {
    display: inline-flex;
  }

  .section {
    padding: 72px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .topbar-left,
  .topbar-right {
    gap: 12px;
    font-size: 12px;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--kld-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    box-shadow: var(--kld-shadow);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }

  .logo {
    gap: 10px;
  }

  .logo img {
    height: 44px;
  }

  .logo-text {
    flex-shrink: 1;
    min-width: 0;
  }

  .logo-text strong {
    font-size: 18px;
    white-space: nowrap;
  }

  .logo-text span {
    font-size: 10px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .header-cta .header-phone {
    display: none;
  }

  .header-cta {
    gap: 10px;
  }

  .hero {
    min-height: 640px;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p.lead {
    font-size: 17px;
  }

  .hero-stats {
    gap: 28px;
  }

  .hero-stat strong {
    font-size: 28px;
  }

  .stats-band {
    margin-top: -30px;
  }

  .stats-band .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .why-grid,
  .credentials-grid,
  .partners-grid,
  .about-features,
  .contact-qr,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card strong {
    font-size: 28px;
  }

  .stat-card span {
    font-size: 13px;
  }

  .about-image .experience-badge {
    width: 120px;
    height: 120px;
    right: 0;
    bottom: -16px;
  }

  .experience-badge strong {
    font-size: 36px;
  }

  .footer-grid {
    gap: 32px;
  }
}
