:root {
  --blue: #3370ff;
  --blue-dark: #1c4dcc;
  --blue-ink: #153161;
  --green: #23c36b;
  --ink: #17233d;
  --muted: #627089;
  --line: #e5ecf5;
  --soft: #f5f9ff;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 72px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(216,227,241,.7);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1240px, calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  padding: 9px 8px;
  background: linear-gradient(145deg, #3b83ff, #275dde);
  box-shadow: 0 7px 16px rgba(51,112,255,.24);
}
.brand-mark i { width: 5px; border-radius: 4px; background: #fff; }
.brand-mark i:nth-child(1) { height: 9px; opacity: .72; }
.brand-mark i:nth-child(2) { height: 15px; }
.brand-mark i:nth-child(3) { height: 20px; background: #39d985; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 17px; letter-spacing: .08em; }
.brand-copy small { margin-top: 5px; font-size: 8px; color: #7c8aa3; letter-spacing: .22em; }
.main-nav { display: flex; align-items: center; gap: 36px; font-size: 14px; color: #3d4960; }
.main-nav a { transition: color .2s; }
.main-nav a:hover { color: var(--blue); }
.main-nav .nav-cta {
  padding: 11px 20px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(51,112,255,.2);
}
.main-nav .nav-cta:hover { color: #fff; background: var(--blue-dark); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px; background: #233451; }

.hero {
  min-height: 760px;
  padding: 150px 0 104px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(47,112,255,.11), transparent 29%),
    linear-gradient(135deg, #f8fbff 0%, #f2f7ff 62%, #f7fffb 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(51,112,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51,112,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 82%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 300px; height: 300px; right: -90px; top: 120px; background: rgba(44,196,114,.07); }
.orb-two { width: 190px; height: 190px; left: -70px; bottom: 50px; background: rgba(51,112,255,.06); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 62px; align-items: center; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px; border: 1px solid #d7e5fa; border-radius: 999px;
  color: #45638b; background: rgba(255,255,255,.72); font-size: 13px;
}
.eyebrow-pill span { width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px rgba(35,195,107,.12); }
.hero h1 { margin: 24px 0 23px; font-size: clamp(46px, 5vw, 68px); line-height: 1.14; letter-spacing: -.045em; font-weight: 750; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 610px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }
.btn {
  min-height: 50px; padding: 0 24px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center; gap: 13px;
  font-size: 15px; font-weight: 600; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, #3c7cff, #2b63e8); box-shadow: 0 12px 28px rgba(51,112,255,.26); }
.btn-ghost { border: 1px solid #dae4f1; background: rgba(255,255,255,.8); color: #34435c; }
.play { width: 25px; height: 25px; display: inline-grid; place-items: center; padding-left: 2px; border-radius: 50%; background: #e9f0ff; color: var(--blue); font-size: 9px; }
.trust-line { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 12px 25px; color: #78859b; font-size: 12px; }
.trust-line span::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 800; }

.hero-visual { position: relative; height: 480px; }
.visual-glow { position: absolute; width: 420px; height: 420px; top: 22px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(51,112,255,.18), rgba(51,112,255,0) 68%); }
.data-card, .float-card {
  position: absolute; background: rgba(255,255,255,.94); border: 1px solid rgba(216,227,241,.95);
  box-shadow: 0 24px 60px rgba(54,84,130,.14); backdrop-filter: blur(12px);
}
.main-card { width: 380px; height: 292px; top: 70px; left: 50%; transform: translateX(-50%) rotate(-1deg); border-radius: 20px; padding: 22px; }
.card-top { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; }
.card-top small { margin-left: auto; color: var(--green); font-weight: 500; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(35,195,107,.12); }
.storage { display: flex; align-items: center; gap: 27px; margin: 24px 0 20px; }
.storage-ring {
  width: 112px; height: 112px; border-radius: 50%; display: grid; place-content: center; text-align: center;
  background: radial-gradient(circle at center, white 57%, transparent 59%), conic-gradient(var(--blue) 0 68%, #eaf0f8 68%);
}
.storage-ring strong { font-size: 24px; }
.storage-ring span { margin-top: 3px; color: #8a96a8; font-size: 10px; }
.storage-info { flex: 1; }
.storage-info p { margin: 0; padding: 8px 0; display: flex; justify-content: space-between; border-bottom: 1px solid #edf1f6; font-size: 11px; color: #8b96a8; }
.storage-info b { color: #263750; font-size: 12px; }
.traffic-bars { height: 55px; display: flex; align-items: flex-end; gap: 7px; padding-top: 8px; border-top: 1px solid #edf1f6; }
.traffic-bars i { flex: 1; min-height: 8px; border-radius: 4px 4px 1px 1px; background: linear-gradient(to top, #3775f5, #75a2ff); opacity: .72; }
.float-card { display: flex; align-items: center; border-radius: 14px; padding: 13px 15px; }
.sync-card { width: 270px; left: -8px; top: 20px; transform: rotate(1deg); }
.ai-card { width: 240px; right: -12px; bottom: 28px; transform: rotate(1deg); }
.float-icon { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; font-weight: 800; }
.float-icon.blue { background: #eaf1ff; color: var(--blue); font-size: 24px; }
.float-icon.green { background: #e8fbf1; color: #18a85a; font-size: 12px; }
.float-card p { display: flex; flex-direction: column; margin: 0 10px; font-size: 11px; }
.float-card p b { color: #2a3951; margin-bottom: 4px; }
.float-card p small { color: #909bac; }
.float-card > strong { margin-left: auto; color: var(--blue); font-size: 12px; }
.online { margin-left: auto; padding: 4px 8px; border-radius: 20px; background: #e8fbf1; color: #19a759; font-size: 10px; }
.shield-badge {
  position: absolute; right: 0; top: 105px; width: 72px; height: 72px; border-radius: 18px;
  display: grid; place-items: center; color: white; background: linear-gradient(145deg, #34d884, #19b963);
  box-shadow: 0 16px 30px rgba(35,195,107,.3); font-size: 28px; font-weight: 800; transform: rotate(4deg);
}
.shield-badge span { position: absolute; width: 95px; top: 79px; right: -11px; color: #54705f; font-size: 10px; text-align: center; }

.metrics { position: relative; z-index: 3; background: white; border-bottom: 1px solid var(--line); }
.metric-grid { min-height: 120px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.metric-grid div { display: flex; align-items: baseline; justify-content: center; gap: 12px; border-right: 1px solid var(--line); }
.metric-grid div:last-child { border: 0; }
.metric-grid strong { font-size: 30px; color: #244275; }
.metric-grid sup { color: var(--blue); font-size: 17px; }
.metric-grid span { color: #8a96a8; font-size: 12px; }

.section { padding: 112px 0; }
.section-kicker { display: inline-block; margin-bottom: 14px; color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .16em; }
.section-kicker.light { color: #75a6ff; }
.section h2 { margin: 0; color: #172947; font-size: clamp(36px, 4vw, 48px); line-height: 1.28; letter-spacing: -.035em; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.product-visual { position: relative; height: 480px; border-radius: 32px; background: linear-gradient(145deg, #eff5ff, #f7fbff); overflow: hidden; }
.product-visual::before, .product-visual::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(51,112,255,.13); }
.product-visual::before { width: 390px; height: 390px; left: 65px; top: 42px; }
.product-visual::after { width: 300px; height: 300px; left: 108px; top: 86px; }
.server { position: absolute; left: 50%; width: 330px; border: 1px solid #bcc9d9; background: linear-gradient(145deg, #edf2f7, #b9c5d2); box-shadow: 0 30px 45px rgba(42,68,105,.2); }
.server-back { top: 120px; height: 215px; transform: translateX(-46%) rotate(8deg); border-radius: 18px; opacity: .7; }
.server-front { z-index: 2; top: 135px; height: 230px; transform: translateX(-54%) rotate(-3deg); border-radius: 20px; padding: 22px; }
.server-logo { font-size: 14px; font-weight: 800; letter-spacing: .06em; color: #3c4e67; }
.server-logo span { display: inline-grid; place-items: center; width: 27px; height: 27px; margin-right: 8px; color: #fff; border-radius: 8px; background: var(--blue); }
.drive-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 35px; }
.drive-row i { height: 90px; position: relative; border-radius: 8px; border: 1px solid #9eacbb; background: linear-gradient(90deg, #aebac6, #e8eef3, #a3b0bd); box-shadow: inset 0 0 0 3px rgba(255,255,255,.3); }
.drive-row i::before { content: ""; position: absolute; left: 8px; right: 8px; top: 12px; height: 4px; border-radius: 3px; background: #8c9aaa; }
.drive-row small { position: absolute; width: 5px; height: 5px; border-radius: 50%; left: 9px; bottom: 9px; background: #32d37d; box-shadow: 9px 0 0 #5f7793; }
.server-bottom { display: flex; gap: 8px; align-items: center; margin-top: 22px; }
.server-bottom span { width: 7px; height: 7px; border-radius: 50%; background: #27c971; }
.server-bottom span:nth-child(2) { background: #4d83ec; }
.server-bottom b { margin-left: auto; width: 42px; height: 7px; border-radius: 7px; background: #8997a8; }
.product-chip { position: absolute; z-index: 4; padding: 12px 16px; border: 1px solid #dce6f3; border-radius: 12px; background: rgba(255,255,255,.92); box-shadow: 0 12px 28px rgba(61,91,130,.13); color: #8895a8; font-size: 10px; line-height: 1.5; }
.product-chip b { color: #2d4364; font-size: 12px; }
.chip-one { left: 25px; top: 45px; }
.chip-two { right: 18px; bottom: 35px; }
.section-copy .lead { margin: 22px 0 28px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #edf1f6; }
.check-list li > i { flex: 0 0 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #e9fbf1; color: #20b965; font-style: normal; font-weight: 800; font-size: 12px; }
.check-list span { display: flex; flex-direction: column; gap: 5px; }
.check-list b { font-size: 14px; }
.check-list small { color: #8490a2; font-size: 12px; line-height: 1.6; }
.text-link { display: inline-flex; gap: 18px; margin-top: 28px; color: var(--blue); font-weight: 700; font-size: 14px; }

.solutions-section { background: #f7faff; }
.section-heading.centered { max-width: 680px; margin: 0 auto 55px; text-align: center; }
.section-heading p { color: var(--muted); line-height: 1.8; }
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.solution-card { position: relative; min-height: 405px; padding: 34px; overflow: hidden; border: 1px solid #e2eaf4; border-radius: 19px; background: white; transition: transform .25s, box-shadow .25s; }
.solution-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -70px; top: -70px; border-radius: 50%; opacity: .55; }
.solution-card.blue::after { background: #edf3ff; }
.solution-card.green::after { background: #eafbf2; }
.solution-card.purple::after { background: #f1edff; }
.solution-card:hover { transform: translateY(-7px); box-shadow: 0 22px 45px rgba(59,86,125,.11); }
.solution-icon { position: relative; z-index: 1; width: 56px; height: 56px; margin-bottom: 34px; display: grid; place-items: center; border-radius: 15px; font-weight: 800; }
.blue .solution-icon { color: #326ef2; background: #eaf1ff; }
.green .solution-icon { color: #17a958; background: #e7faef; }
.purple .solution-icon { color: #7655d9; background: #f0ebff; font-size: 13px; }
.card-eyebrow { color: #99a4b4; font-size: 11px; letter-spacing: .12em; }
.solution-card h3 { margin: 10px 0 14px; font-size: 23px; color: #213550; }
.solution-card p { min-height: 80px; margin: 0; color: #6c798d; font-size: 14px; line-height: 1.8; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 27px; }
.tags span { padding: 5px 9px; border-radius: 5px; color: #758196; background: #f5f7fa; font-size: 10px; }
.solution-card > a { color: var(--blue); font-size: 13px; font-weight: 700; }

.xinchuang-section { color: white; background: #172b4d; }
.split-heading { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 80px; margin-bottom: 50px; }
.split-heading h2 { color: white; }
.split-heading > p { margin: 0 0 5px; color: #a9b9d1; }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); }
.capability-grid article { min-height: 250px; padding: 34px 27px; background: #172b4d; transition: background .2s; }
.capability-grid article:hover { background: #1e3862; }
.capability-grid article > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; color: #8fb5ff; background: rgba(87,139,238,.16); font-weight: 800; }
.capability-grid h3 { margin: 32px 0 12px; font-size: 19px; }
.capability-grid p { margin: 0; color: #9fb0c9; font-size: 13px; line-height: 1.8; }

.process-section { background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-item { position: relative; display: flex; gap: 15px; padding: 34px 20px; }
.process-item > span { color: #9db9ef; font-size: 12px; font-weight: 800; }
.process-item h3 { margin: 0 0 10px; font-size: 17px; }
.process-item p { margin: 0; color: #7b8799; font-size: 12px; line-height: 1.6; }
.process-item > b { position: absolute; right: -5px; top: 44px; color: #b9c6d8; font-weight: 400; }

.about-section { padding-top: 40px; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.about-copy > p { margin: 25px 0; color: #68768b; font-size: 15px; line-height: 2; }
.qualification { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qualification span { padding: 17px; border-left: 3px solid var(--blue); background: #f7f9fc; color: #9aa4b2; font-size: 10px; line-height: 1.8; }
.qualification b { color: #33445f; font-size: 12px; }
.about-panel { position: relative; min-height: 390px; padding: 60px 50px; border-radius: 24px; color: white; background: linear-gradient(145deg, #3978ef, #2457c9); overflow: hidden; }
.about-panel::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; right: -90px; bottom: -90px; border: 45px solid rgba(255,255,255,.06); }
.quote-mark { font-family: Georgia, serif; font-size: 74px; line-height: .7; color: #7cafff; }
.about-panel blockquote { position: relative; z-index: 2; margin: 26px 0 58px; font-size: 21px; line-height: 1.8; font-weight: 600; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; position: relative; z-index: 2; }
.about-values span { display: flex; flex-direction: column; gap: 6px; }
.about-values i { color: #8bb7ff; font-size: 10px; font-style: normal; }
.about-values b { font-size: 12px; }

.contact-section { padding: 40px 0 100px; }
.contact-box {
  min-height: 245px; padding: 55px 65px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center;
  border-radius: 25px; color: white; background: linear-gradient(120deg, #2560d8 0%, #367cf7 68%, #2ac173 140%);
  box-shadow: 0 25px 50px rgba(40,93,202,.2);
}
.contact-box h2 { color: white; font-size: 35px; }
.contact-box p { margin: 15px 0 0; color: #d7e5ff; font-size: 14px; }
.contact-actions { justify-self: end; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.qr-card {
  width: 310px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 14px;
  color: #253a5b;
  background: white;
  box-shadow: 0 14px 32px rgba(20,62,145,.18);
}
.qr-card img {
  display: block;
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 7px;
}
.qr-card span { display: flex; flex-direction: column; gap: 7px; text-align: left; }
.qr-card b { color: #245ed3; font-size: 14px; }
.qr-card small { color: #738198; font-size: 11px; line-height: 1.6; }
.btn-white { background: white; color: #2c65db; min-width: 245px; }
.mail-link { color: #e9f1ff; font-size: 12px; }

footer { padding: 65px 0 20px; color: #8b98aa; background: #111e34; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.footer-brand { color: white; }
.footer-logo { width: 72px; height: 72px; }
.footer-grid > div > p { margin: 18px 0; font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-links > span { display: flex; flex-direction: column; gap: 13px; font-size: 11px; }
.footer-links b { margin-bottom: 4px; color: white; font-size: 12px; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 55px; padding-top: 19px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); font-size: 10px; }

@media (max-width: 960px) {
  .main-nav { gap: 18px; }
  .hero { padding-top: 120px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .trust-line { justify-content: center; }
  .hero-visual { width: min(520px, 100%); margin: 0 auto; }
  .product-grid { grid-template-columns: 1fr; gap: 55px; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
  .solution-card:last-child { grid-column: span 2; min-height: 340px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-box { grid-template-columns: 1fr; gap: 35px; text-align: center; }
  .contact-actions { justify-self: center; }
  .qr-card { width: min(310px, 100%); }
}

@media (max-width: 720px) {
  .container, .nav-wrap { width: min(100% - 32px, 1180px); }
  .site-header { height: 64px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0; padding: 22px 20px 28px;
    flex-direction: column; align-items: stretch; gap: 0; background: white; border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(39,60,92,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 8px; }
  .main-nav .nav-cta { margin-top: 10px; text-align: center; }
  .hero { min-height: auto; padding: 112px 0 70px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: 39px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .trust-line { gap: 10px 15px; }
  .hero-visual { height: 390px; transform: scale(.88); transform-origin: top center; margin-bottom: -40px; }
  .main-card { width: 340px; }
  .sync-card { left: -15px; }
  .ai-card { right: -15px; }
  .metric-grid { grid-template-columns: 1fr 1fr; padding: 20px 0; }
  .metric-grid div { min-height: 75px; border-bottom: 1px solid var(--line); }
  .metric-grid div:nth-child(2) { border-right: 0; }
  .metric-grid div:nth-child(3), .metric-grid div:nth-child(4) { border-bottom: 0; }
  .metric-grid strong { font-size: 25px; }
  .section { padding: 76px 0; }
  .section h2 { font-size: 34px; }
  .product-visual { height: 390px; }
  .server { width: 285px; }
  .server-front { height: 205px; }
  .server-back { height: 190px; }
  .drive-row { margin-top: 25px; }
  .drive-row i { height: 75px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card, .solution-card:last-child { grid-column: auto; min-height: auto; }
  .solution-card p { min-height: auto; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-item { border-bottom: 1px solid var(--line); }
  .process-item:last-child { border: 0; }
  .process-item > b { display: none; }
  .qualification { grid-template-columns: 1fr; }
  .about-panel { padding: 45px 30px; }
  .about-panel blockquote { font-size: 18px; }
  .contact-section { padding-top: 15px; }
  .contact-box { padding: 42px 22px; }
  .contact-box h2 { font-size: 29px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
