/* ========== 全局重置 & 字体 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
  background-color: #F7F8FA;
  color: #333333;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
img{max-width: 100%;}

/* ========== 配色变量 ========== */
:root {
  --primary: #1B3A6B;
  --primary-light: #2A4F8A;
  --gold: #e87a2d;
  --gold-light: #fde9d8;
  --gold-dark: #c95f1a;
  --bg-light: #F7F8FA;
  --white: #FFFFFF;
  --text-dark: #333333;
  --text-mid: #777777;
  --text-gray: #5a5a5a;
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --radius: 12px;
}

/* ========== 通用容器 ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== 按钮 ========== */
.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--gold);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background-color: var(--gold-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* ========== 顶部导航 ========== */
.navbar {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
}
.logo i {
    font-size: 30px;
    color: var(--gold);
    background: var(--gold-light);
    padding: 6px;
    border-radius: 12px;
}
.logo span {
    color: var(--text-dark);
}
.logo .sub {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 4px;
}


.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a {
  position: relative;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
  /*background-color: #F0F3F8;*/
}

.nav-links a.active {
  color: var(--gold);
  font-weight: 700;
  /*background-color: #EEF2F8;*/
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2.5px;
  border-radius: 2px;
  background-color: var(--gold);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    background: var(--gold);
    padding: 6px 18px;
    border-radius: 40px;
    border: none;
    transition: 0.2s;
}


.nav-phone i {
  font-size: 15px;
}

/* ========== Banner ========== */
.banner {
    background: linear-gradient(145deg, #f9e3d4, #fad6b3);
    min-height: 380px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    scroll-margin-top: 64px;
    border-bottom: 4px solid var(--gold);
}
.banner-slide {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
    gap: 30px;
    flex-wrap: wrap;
}
.banner-text {
    flex: 1 1 auto;
    color: #2d1e12;
    text-align: center;
}
.banner-text h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}
.banner-text h1 span {
    color: var(--gold);
    background: #fff2e6;
    padding: 0 10px;
    border-radius: 12px;
}
.banner-text p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
    margin-top: 30px;
    /*max-width: 480px;*/
    text-align: center;
}
.banner-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-image {
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-image .phone-mock {
    width: 300px;
    height: 200px;
    background: #2d1e12;
    border-radius: 36px;
    border: 4px solid var(--primary);
    padding: 16px 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.phone-mock .number-display {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f5b041;
    margin-bottom: 6px;
}
.phone-mock .label {
    font-size: 13px;
    opacity: 0.8;
}
.phone-mock .tag {
    background: rgba(245, 176, 65, 0.25);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 12px;
    margin-top: 10px;
    border: 1px solid #f5b041;
}


/* ========== 快捷入口 ========== */
.quick-entry {
    max-width: 1200px;
    margin: -30px auto 0;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}
.quick-entry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 16px;
}
.quick-item {
    text-align: center;
    padding: 12px 4px;
    border-radius: 12px;
    transition: 0.2s;
    cursor: pointer;
}
.quick-item:hover {
    background: var(--gold-light);
}
.quick-item .icon {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 6px;
}
.quick-item .name {
    font-size: 15px;
    font-weight: 600;
}
.quick-item .desc {
    font-size: 12px;
    color: var(--text-gray);
}

/* ========== 板块标题通用 ========== */
.section-title {
  display: block;
  text-align: center;
  margin-bottom: 48px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.section-title:hover {
  opacity: 0.85;
}

.section-title h2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 16px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--gold);
}

.section-title h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.35), transparent);
}

.section-title h2 i {
  color: var(--gold);
  font-size: 26px;
}

.section-title p {
  font-size: 15px;
  color: var(--text-mid);
}

/* 深色板块里的标题 */
.why-section .section-title h2 {
  color: var(--white);
}

.why-section .section-title p {
  color: rgba(255, 255, 255, 0.65);
}

/* ========== 卡片通用 ========== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* ========== 靓号区 ========== */
.numbers-section {
  padding: 80px 0;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.number-card {
  padding: 28px 24px;
  text-align: center;
}

.number-card .number {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.number-card .meaning {
  display: inline-block;
  background-color: #FDF6E3;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.number-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.number-card .price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
}

.number-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 0;
}

.numbers-more {
  text-align: center;
  margin-top: 36px;
  font-size: 18px;
  color: var(--text-mid);
}

.numbers-more a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  /*display: inline-block;margin-left: 10px;*/
}

/* ========== 套餐区 ========== */
.plans-section {
  padding: 80px 0;
  background-color: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.plan-card {
  padding: 40px 32px 36px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
}

.plan-card.recommended {
  border-color: var(--gold);
}

.plan-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.plan-card .plan-sub {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.plan-card .plan-price {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
}

.plan-card .plan-price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
}

.plan-card ul {
  text-align: left;
  margin-bottom: 32px;
}

.plan-card ul li {
  font-size: 15px;
  color: var(--text-dark);
  padding: 10px 0;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-card ul li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

.plan-card .btn {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
}

/* ========== 办理流程 ========== */
.steps-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  text-align: center;
  padding: 40px 24px;
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-mid);
}

/* ========== 数据背书（深色区） ========== */
.why-section {
  background-color: var(--gold);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.06) 0%, transparent 45%);
  padding: 88px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.why-section::before {
  top: 0;
}

.why-section::after {
  bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  position: relative;
  text-align: center;
  padding: 40px 20px 32px;
  border-radius: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  border-color: var(--gold);
}

.why-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(27, 58, 107, 0.08);
  color: var(--gold);
  transition: all 0.35s ease;
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}

.why-num {
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 8px;
  font-family: "DIN Alternate", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.why-num span {
  font-size: 20px;
  font-weight: 600;
  margin-left: 2px;
  color: var(--text-gray);
}

.why-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.why-desc {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.5px;
}

.why-line {
  width: 24px;
  height: 2px;
  background-color: rgba(201, 162, 39, 0.4);
  margin: 18px auto 0;
  border-radius: 2px;
  transition: width 0.35s ease, background-color 0.35s ease;
}

.why-card:hover .why-line {
  width: 48px;
  background-color: var(--gold);
}

/* ========== 合作客户 ========== */
.partners-section {
  padding: 72px 0;
  background-color: var(--white);
}

.partners-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 12px;
  border-radius: 12px;
  background-color: #FAFBFC;
  border: 1px solid #EEF0F3;
  transition: all 0.3s ease;
}

.partner-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  /*opacity: 0.6;*/
  transition: all 0.3s ease;
}

.partner-item:hover {
  background-color: var(--white);
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========== 常见问题 ========== */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 28px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-item .faq-q {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item .faq-a {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 10px;
  display: none;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q::after {
  content: "−";
}

/* ========== 联系我们 ========== */
.contact-section {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  padding: 48px 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid #EEF0F3;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
}

.contact-main {
  margin-bottom: 32px;
}

.contact-phone-block {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F7F8FA, #EEF2F8);
}

.contact-phone-block i {
  font-size: 36px;
  color: var(--gold);
}

.contact-phone-num {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: left;
}

.contact-phone-sub {
  font-size: 13px;
  color: var(--text-mid);
  text-align: left;
  margin-top: 2px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  padding: 28px 0;
  border-top: 1px dashed #E5E8EE;
  border-bottom: 1px dashed #E5E8EE;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.contact-info-item i {
  font-size: 20px;
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 15px;
}

.btn-wechat {
  background-color: #07C160;
  color: #FFFFFF;
}

.btn-wechat:hover {
  background-color: #06AD56;
}

/* ========== 底部联系 ========== */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 22px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer .contact-phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer .contact-phone i,
.footer .contact-email i,
.footer .contact-addr i {
  color: var(--gold);
  margin-right: 6px;
  font-size: 15px;
}

.footer .contact-email,
.footer .contact-addr {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== 悬浮窗客服 ========== */
.float-btns {
    position: fixed;
    right: 16px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}
.float-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 24px rgba(232, 122, 45, 0.4);
    transition: 0.2s;
}
.float-btns a:hover {
    transform: scale(1.08);
    background: var(--gold-dark);
}
.float-btns .phone-btn {
    background: #c0392b;
    box-shadow: 0 6px 24px rgba(192, 57, 43, 0.4);
}

/*移动端导航*/
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: 0.3s;
}

 .mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    /*backdrop-filter: blur(2px);*/
}
.mobile-nav.open {
    display: block;
}
.mobile-nav-inner {
    background: #fff;
    padding: 24px 20px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.mobile-nav-inner a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f0ebe6;
    color: var(--text-dark);
}
.mobile-nav-inner a i {
    margin-right: 10px;
    color: var(--gold);
    width: 22px;
    text-align: center;
}
.mobile-nav-inner .m-phone {
    margin-top: 16px;
    background: var(--gold);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .partners-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .logo { font-size: 20px; }
  .logo .sub { display: none; }
   .hamburger { display: flex; }
   .nav-phone{display: none;}

  .navbar .container {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 24px;
    gap: 12px;
  }
  .nav-links {
    gap: 4px;
    flex-wrap: wrap;
    display: none;
  }
  .nav-links a {
    padding: 6px 10px;
    font-size: 14px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero-stats {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-search {
    width: 100%;
  }
  .numbers-grid,
  .plans-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .quick-entry-grid { grid-template-columns: repeat(2,1fr); }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .why-section {
    padding: 64px 0;
  }
  .why-card {
    padding: 28px 16px 24px;
  }
  .why-num {
    font-size: 30px;
  }
  .why-num span {
    font-size: 16px;
  }
  .why-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .why-icon svg {
    width: 22px;
    height: 22px;
  }
  .why-label {
    font-size: 14px;
  }
  .why-desc {
    font-size: 12px;
  }
  .partners-section {
    padding: 56px 0;
  }
  .partners-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .partner-item {
    height: 64px;
    padding: 10px;
  }
  .partner-item img {
    max-height: 32px;
  }
  .contact-section {
    padding: 56px 0;
  }
  .contact-card {
    padding: 36px 24px 32px;
  }
  .contact-phone-block {
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px;
  }
  .contact-phone-block i {
    font-size: 30px;
  }
  .contact-phone-num {
    font-size: 26px;
    text-align: center;
  }
  .contact-phone-sub {
    text-align: center;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .section-title h2 {
    font-size: 24px;
  }
  .section-title h2 i {
    font-size: 20px;
  }

  .float-btns { right: 12px; bottom: 70px; }
  .float-btns a { width: 46px; height: 46px; font-size: 18px; }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .quick-entry-grid { grid-template-columns: 1fr 1fr; }
}