/* ============================================================
   EASYRENT — Official Website Stylesheet
   ============================================================ */

/* ---------- Reset & Tokens ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-soft: #eff4ff;
  --accent: #06b6d4;
  --gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --gradient-soft: linear-gradient(135deg, rgba(37,99,235,.10) 0%, rgba(6,182,212,.10) 100%);

  --navy: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --border: #e6ebf2;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .14);

  --header-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI",
          "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 24px; }

/* ---------- Typography helpers ---------- */
.section { padding: 96px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-soft); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2;
  color: var(--navy); letter-spacing: -.02em; margin-bottom: 14px;
}
.section-sub { font-size: 17px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: 0 10px 24px rgba(37, 99, 235, .32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37, 99, 235, .42); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-h);
  background: rgba(255, 255, 255, .72); backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent; transition: all .3s var(--ease);
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .92); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; background: var(--gradient);
  color: #fff; font-weight: 800; font-size: 22px; display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(37, 99, 235, .34);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 19px; color: var(--navy); letter-spacing: .01em; }
.brand-slogan { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: .02em; }

.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.nav-link {
  position: relative; font-weight: 600; font-size: 15px; color: var(--slate);
  padding: 8px 14px; border-radius: 10px; transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--primary); background: var(--primary-soft); }
.nav-link.is-active { color: var(--primary); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--gradient); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.lang-btn {
  font-size: 13px; font-weight: 700; color: var(--muted); padding: 6px 12px; border-radius: 999px;
  transition: all .2s var(--ease);
}
.lang-btn:hover { color: var(--primary); }
.lang-btn.is-active { background: #fff; color: var(--primary); box-shadow: var(--shadow-sm); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + 64px) 0 72px; overflow: hidden; background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.blob-1 { width: 460px; height: 460px; background: #bcd3ff; top: -120px; right: -80px; }
.blob-2 { width: 420px; height: 420px; background: #b6f0fb; bottom: -160px; left: -120px; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--primary); background: #fff; border: 1px solid var(--border); padding: 7px 16px; border-radius: 999px;
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(46px, 8vw, 82px); font-weight: 800; line-height: .98; letter-spacing: -.03em;
  background: linear-gradient(120deg, #0f172a 10%, #2563eb 55%, #06b6d4 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
}
.hero-subtitle { font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--slate); margin: 8px 0 18px; letter-spacing: .01em; }
.hero-desc { font-size: 17px; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-points { display: flex; flex-direction: column; gap: 10px; }
.hero-points li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--slate); }
.hero-points .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(37,99,235,.12); }

/* hero visual */
.hero-visual { position: relative; height: 420px; display: grid; place-items: center; }
.hero-ring {
  width: 320px; height: 320px; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(from 0deg, rgba(37,99,235,.14), rgba(6,182,212,.14), rgba(37,99,235,.14));
  position: relative; animation: spin 22s linear infinite;
}
.hero-ring::before {
  content: ""; position: absolute; inset: 16px; border-radius: 50%; background: #fff;
  box-shadow: inset 0 0 0 1px var(--border);
}
.ring-inner { position: relative; text-align: center; animation: spin 22s linear infinite reverse; }
.ring-logo { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.02em; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ring-slogan { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 4px; }
@keyframes spin { to { transform: rotate(360deg); } }

.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px; background: #fff;
  padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); z-index: 2;
}
.float-card .fc-icon { font-size: 26px; width: 46px; height: 46px; display: grid; place-items: center; background: var(--gradient-soft); border-radius: 12px; }
.float-card .fc-text { display: flex; flex-direction: column; }
.float-card strong { font-size: 15px; color: var(--navy); font-weight: 700; }
.float-card span { font-size: 12.5px; color: var(--muted); }
.card-a { top: 40px; left: -6px; animation: floaty 6s ease-in-out infinite; }
.card-b { bottom: 44px; right: -6px; animation: floaty 6s ease-in-out infinite 3s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* stats */
.stats-bar {
  position: relative; margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.stat { background: #fff; padding: 28px 20px; text-align: center; }
.stat-num { display: block; font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); position: relative; overflow: hidden;
}
.service-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 27px; background: var(--gradient-soft); margin-bottom: 18px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- Products ---------- */
.products { background: #fff; }
.product-notice {
  max-width: 720px; margin: 0 auto 28px; text-align: center; font-size: 14px; color: #92400e;
  background: #fffbeb; border: 1px solid #fde68a; padding: 12px 18px; border-radius: 12px;
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.pc-media { position: relative; height: 210px; background: linear-gradient(160deg, #f8fafc, #eef3fb); display: grid; place-items: center; padding: 20px; }
.pc-media img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.06); }
.pc-brand {
  position: absolute; top: 14px; left: 14px; font-size: 12px; font-weight: 700; color: var(--primary);
  background: #fff; border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.pc-sort { position: absolute; top: 14px; right: 14px; font-size: 11px; font-weight: 700; color: #fff; background: var(--navy); padding: 4px 10px; border-radius: 999px; opacity: .85; }

.pc-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pc-title { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pc-specs { font-size: 13px; color: var(--muted); margin-bottom: 14px; display: flex; flex-direction: column; gap: 3px; }
.pc-specs span { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.pc-toggle { align-self: flex-start; font-size: 12.5px; font-weight: 700; color: var(--primary); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 4px; }
.pc-toggle:hover { text-decoration: underline; }
.pc-specs-full { display: none; }
.product-card.is-open .pc-specs { display: none; }
.product-card.is-open .pc-specs-full { display: flex; }
.pc-specs-full { font-size: 13px; color: var(--slate); margin-bottom: 14px; flex-direction: column; gap: 5px; white-space: pre-line; max-height: 220px; overflow-y: auto; padding-right: 6px; background: var(--bg-soft); border-radius: 12px; padding: 14px; }

.pc-period { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.pc-period .lbl { font-size: 12px; color: var(--muted); font-weight: 600; margin-right: 2px; }
.chip { font-size: 12px; font-weight: 700; color: var(--primary-dark); background: var(--primary-soft); border: 1px solid #dbe6ff; padding: 4px 10px; border-radius: 8px; }

.pc-remark { font-size: 12.5px; color: #b45309; background: #fffbeb; border: 1px dashed #fde68a; border-radius: 10px; padding: 8px 12px; margin-bottom: 16px; }
.pc-remark b { font-weight: 700; }

.pc-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.pc-price { display: flex; flex-direction: column; }
.pc-price .cur { font-size: 24px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.pc-price .per { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.pc-rent { flex-shrink: 0; }

/* skeleton */
.product-card.skeleton { pointer-events: none; }
.sk-img { height: 210px; background: linear-gradient(100deg, #eef2f7 30%, #f7fafc 50%, #eef2f7 70%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.sk-line { height: 14px; margin: 14px 22px; border-radius: 8px; background: linear-gradient(100deg, #eef2f7 30%, #f7fafc 50%, #eef2f7 70%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
.sk-line.w60 { width: 60%; } .sk-line.w90 { width: 82%; } .sk-line.w40 { width: 40%; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- About ---------- */
.about { background: var(--bg-soft); }
.about-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-badge {
  background: var(--gradient); color: #fff; border-radius: var(--radius-lg); padding: 40px 34px;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-badge::after { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.12); top: -80px; right: -70px; }
.ab-num { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.02em; }
.ab-text { display: block; font-size: 15px; opacity: .92; margin-top: 8px; font-weight: 500; }
.about-visual { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.av-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--primary); opacity: .25; }
.av-dot.av-2 { opacity: .55; } .av-dot.av-3 { opacity: .9; background: var(--accent); }

.about-content .section-tag { margin-bottom: 14px; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 15.5px; }
.about-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { position: relative; padding-left: 30px; font-weight: 600; color: var(--slate); font-size: 15px; }
.about-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--gradient); color: #fff; font-size: 12px; font-weight: 800; display: grid; place-items: center; }

/* ---------- Contact ---------- */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.contact-card {
  display: flex; align-items: center; gap: 18px; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--primary); background: #fff; }
.cc-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; background: var(--gradient); box-shadow: 0 8px 20px rgba(37,99,235,.28); flex-shrink: 0; }
.cc-body { display: flex; flex-direction: column; min-width: 0; }
.cc-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.cc-value { font-size: 18px; font-weight: 700; color: var(--navy); word-break: break-word; }
.contact-cta {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
}
.contact-cta::after { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(6,182,212,.35), transparent 70%); bottom: -90px; right: -60px; }
.contact-cta h3 { font-size: 20px; font-weight: 700; }
.contact-cta p { font-size: 14px; color: rgba(255,255,255,.72); margin-bottom: 8px; }
.contact-cta .btn { align-self: flex-start; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1220; color: #94a3b8; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding: 60px 24px 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-slogan { color: #64748b; }
.footer-desc { margin-top: 16px; font-size: 14.5px; max-width: 320px; color: #94a3b8; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: #94a3b8; padding: 5px 0; transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: 13.5px; text-align: center; color: #64748b; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); color: #fff; font-size: 20px; box-shadow: var(--shadow-lg);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s var(--ease); z-index: 900;
}
.back-to-top.is-show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { height: 340px; order: -1; }
  .hero-content { text-align: center; }
  .hero-desc { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; align-items: center; }
  .about-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-content .section-title { text-align: center; }
  .about-content { text-align: center; }
  .about-list { align-items: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; padding: 16px 20px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
    transform: translateY(-140%); opacity: 0; transition: transform .35s var(--ease), opacity .3s var(--ease); z-index: -1;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; }
  .nav-link { padding: 13px 14px; font-size: 16px; border-radius: 12px; }
  .nav-link.is-active::after { display: none; }
  .nav-link.is-active { background: var(--primary-soft); }
  .stats-bar { grid-template-columns: 1fr 1fr; margin-top: 48px; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .container { padding-inline: 18px; }
  .lang-btn { padding: 6px 9px; font-size: 12px; }
  .brand-slogan { display: none; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero-visual { height: 300px; }
  .hero-ring { width: 250px; height: 250px; }
  .ring-logo { font-size: 24px; }
  .float-card { padding: 11px 14px; }
  .float-card .fc-icon { width: 40px; height: 40px; font-size: 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 44px 24px 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .pc-foot { flex-direction: column; align-items: stretch; }
  .pc-rent { width: 100%; }
}
