@charset "utf-8";

/* ===== tokens ===== */
:root{
  --navy:#050b18;
  --navy-2:#070e1e;
  --panel:#0b1425;
  --panel-2:#0d1729;
  --line:rgba(255,255,255,.07);
  --line-2:rgba(255,255,255,.12);
  --white:#eef3ff;
  --gray:#8e9cb8;
  --gray-2:#63708c;
  --blue:#2f6bff;
  --blue-l:#5b9dff;
  --blue-soft:rgba(47,107,255,.14);
  --wrap:1200px;
  --hd:64px;
  --r:14px;
  --r-l:20px;
  --font:"Noto Sans KR",-apple-system,"Segoe UI",sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font);
  background:var(--navy);
  color:var(--white);
  line-height:1.6;
  letter-spacing:-.01em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
ul{list-style:none}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font-family:inherit;border:0;background:none;color:inherit;cursor:pointer}
svg{display:block}

.wrap{width:min(100% - 40px,var(--wrap));margin-inline:auto}

/* ===== buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-weight:700;border-radius:999px;white-space:nowrap;
  transition:.2s ease;
}
.btn-blue{background:var(--blue);color:#fff;box-shadow:0 6px 20px rgba(47,107,255,.3)}
.btn-blue:hover{background:#3d77ff;transform:translateY(-1px)}
.btn-ghost{border:1px solid var(--line-2);color:#cfd9ee;background:rgba(255,255,255,.02)}
.btn-ghost:hover{border-color:rgba(120,165,255,.6);color:#fff}
.btn-xs{padding:7px 14px;font-size:13px;font-weight:500}
.btn-s{padding:9px 18px;font-size:14px}
.btn-l{padding:13px 24px;font-size:14px}
.btn-l svg{width:15px;height:15px}

/* ===== header ===== */
.header{
  position:fixed;inset:0 0 auto;z-index:100;height:var(--hd);
  background:rgba(5,11,24,.82);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.header-in{height:var(--hd);display:flex;align-items:center;justify-content:space-between;gap:20px}

.brand{display:flex;align-items:center;gap:9px;flex-shrink:0}
.brand-ico{width:30px;height:30px;display:grid;place-items:center}
.brand-ico svg{width:26px;height:26px}
.brand-txt{display:flex;flex-direction:column;line-height:1.1}
.brand-txt b{font-size:15px;font-weight:700}
.brand-txt i{font-style:normal;font-size:8.5px;letter-spacing:.14em;color:var(--gray-2)}

.gnb{display:flex;align-items:center;gap:26px}
.gnb a{font-size:13px;font-weight:500;color:#c3cee6;transition:color .2s}
.gnb a:hover{color:#fff}

.header-act{display:flex;align-items:center;gap:14px}
.t-login{font-size:13px;color:var(--gray)}
.t-login:hover{color:#fff}

.lang-switch{position:relative}
.lang-btn{
  display:inline-flex;align-items:center;gap:5px;
  height:32px;padding:0 10px;border-radius:999px;
  border:1px solid var(--line-2);background:rgba(255,255,255,.03);
  color:#c3cee6;font-size:12px;font-weight:600;letter-spacing:.02em;
  transition:.2s;
}
.lang-btn:hover{border-color:rgba(120,165,255,.55);color:#fff}
.lang-ico{width:14px;height:14px;opacity:.9}
.lang-caret{width:10px;height:10px;opacity:.75}
.lang-menu{
  position:absolute;top:calc(100% + 8px);right:0;z-index:120;
  min-width:118px;padding:6px;
  background:#0b1425;border:1px solid var(--line-2);border-radius:12px;
  box-shadow:0 12px 28px rgba(0,0,0,.45);
}
.lang-opt{
  width:100%;text-align:center;padding:8px 10px;border-radius:8px;
  font-size:12.5px;font-weight:500;color:#c3cee6;
}
.lang-opt:hover{background:rgba(255,255,255,.05);color:#fff}
.lang-opt.on{background:rgba(47,107,255,.18);color:#9ec5ff;font-weight:700}

.burger{display:none;width:34px;height:34px;flex-direction:column;align-items:center;justify-content:center;gap:5px}
.burger span{width:18px;height:1.8px;background:#fff;border-radius:2px}

/* ===== hero ===== */
.hero{
  position:relative;
  padding:calc(var(--hd) + 74px) 0 86px;
  overflow:hidden;
}
.hero-photo{
  position:absolute;inset:0;
  background:url("../images/hero-bg.jpg") right center/cover no-repeat;
}
.hero-mask{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg,rgba(4,9,20,.96) 0%,rgba(4,9,20,.86) 34%,rgba(4,9,20,.35) 66%,rgba(4,9,20,.3) 100%),
    linear-gradient(180deg,rgba(4,9,20,.85) 0%,rgba(4,9,20,.15) 30%,rgba(5,11,24,.92) 100%);
}
.hero-in{
  position:relative;z-index:2;
  max-width:720px;
  width:min(100% - 40px,720px);
  /* wrap 중앙 정렬을 깨고 헤더 좌측(콘텐츠 시작선)에 맞춤 */
  margin-left:max(16px,calc((100% - var(--wrap)) / 2));
  margin-right:auto;
}

.pill-tag{
  display:inline-flex;align-items:center;gap:7px;
  padding:6px 14px;border-radius:999px;
  background:rgba(47,107,255,.13);border:1px solid rgba(91,157,255,.3);
  color:#8fbaff;font-size:11.5px;font-weight:500;margin-bottom:22px;
}
.pill-tag svg{width:12px;height:12px}

.hero h1{
  font-size:48px;font-weight:900;line-height:1.32;letter-spacing:-.035em;
  margin-bottom:18px;
}
.hero h1 em{font-style:normal;color:#a9c8ff}

.hero-desc{font-size:16px;line-height:1.85;color:#93a2bd;margin-bottom:30px}

.hero-spec{display:flex;gap:34px;flex-wrap:wrap;margin-bottom:32px}
.hero-spec li{display:flex;gap:10px;align-items:flex-start}
.hs-ico{
  width:34px;height:34px;flex-shrink:0;border-radius:9px;
  background:var(--blue-soft);color:var(--blue-l);display:grid;place-items:center;
}
.hs-ico svg{width:18px;height:18px}
.hs-txt{display:flex;flex-direction:column;line-height:1.45}
.hs-txt b{font-size:15px;font-weight:700}
.hs-txt i{font-style:normal;font-size:12.5px;color:var(--gray-2)}

.hero-btns{display:flex;gap:10px;flex-wrap:wrap}

/* ===== stats ===== */
.stats-sec{padding:0 0 10px;margin-top:-26px;position:relative;z-index:5}
.stats{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:var(--panel);border:1px solid var(--line);border-radius:var(--r);
  padding:22px 10px;
}
.stat{display:flex;align-items:center;justify-content:center;gap:13px;padding:2px 14px}
.stat+.stat{border-left:1px solid var(--line)}
.stat-ico{width:34px;height:34px;color:#c9d7f2;display:grid;place-items:center;flex-shrink:0}
.stat-ico svg{width:26px;height:26px}
.stat-txt{display:flex;flex-direction:column;line-height:1.25}
.stat-txt b{font-size:24px;font-weight:700;letter-spacing:-.03em}
.stat-txt i{font-style:normal;font-size:13px;color:var(--gray-2)}

/* ===== section common ===== */
.sec{padding:78px 0}
.sec-tight{padding:26px 0}
.eyebrow{
  text-align:center;font-size:13px;font-weight:500;color:#7f8ca7;
  margin-bottom:10px;
}
.eyebrow.left{text-align:left}
.sec-tit{
  text-align:center;font-size:34px;font-weight:900;letter-spacing:-.035em;
  line-height:1.35;margin-bottom:34px;
}
.sec-tit em{font-style:normal;color:var(--blue-l)}
.sec-tit.left{text-align:left;font-size:30px;margin-bottom:26px}

.center-link{text-align:center;margin-top:26px}
.center-link a{font-size:14px;color:#7fa9ff}
.center-link a:hover{text-decoration:underline}
.center-pill{text-align:center;margin-top:26px}
.center-pill.left{text-align:center}

/* ===== plans ===== */
.tabs{
  display:flex;justify-content:center;gap:4px;
  width:fit-content;max-width:100%;margin:0 auto 30px;
  padding:4px;border-radius:999px;
  background:rgba(255,255,255,.04);border:1px solid var(--line);
}
.tab{
  padding:8px 20px;border-radius:999px;font-size:14px;font-weight:500;
  color:var(--gray);transition:.2s;
}
.tab.on{background:var(--blue);color:#fff;font-weight:700}

.plans{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.plan{
  position:relative;
  background:var(--panel);border:1px solid var(--line);border-radius:var(--r);
  padding:24px 22px 20px;display:flex;flex-direction:column;
  transition:.25s ease;
}
.plan:hover{transform:translateY(-3px);border-color:var(--line-2)}
.plan.on{
  border-color:rgba(47,107,255,.75);
  background:linear-gradient(180deg,#0d1a33 0%,#0b1425 100%);
  box-shadow:0 0 0 1px rgba(47,107,255,.25),0 18px 40px rgba(47,107,255,.14);
}
.plan-badge{
  position:absolute;top:14px;right:14px;
  padding:3px 9px;border-radius:999px;background:var(--blue);
  font-size:11px;font-weight:700;color:#fff;
}
.plan h3{font-size:19px;font-weight:700;margin-bottom:6px}
.plan-sub{font-size:12px;line-height:1.5;color:var(--gray-2);min-height:32px;margin-bottom:16px}

.plan-spec{
  display:flex;flex-direction:column;gap:7px;
  padding:14px 0;margin-bottom:18px;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.plan-spec li{display:flex;justify-content:space-between;gap:8px;font-size:13px}
.plan-spec span{color:#c5d0e6;font-weight:500}
.plan-spec em{font-style:normal;color:var(--gray-2);font-size:12px}

.plan-bot{margin-top:auto;display:flex;align-items:center;justify-content:space-between;gap:8px}
.plan-price{font-size:13px;color:var(--gray)}
.plan-price b{font-size:24px;font-weight:900;color:#fff;letter-spacing:-.03em;margin:0 2px}
.plan.on .plan-price b{color:#fff}

.round-arw{
  width:30px;height:30px;flex-shrink:0;border-radius:50%;
  border:1px solid var(--line-2);display:grid;place-items:center;
  color:var(--gray);transition:.2s;
}
.round-arw svg{width:14px;height:14px}
.round-arw:hover,.plan.on .round-arw{background:var(--blue);border-color:var(--blue);color:#fff}
.plan.hide{display:none}

/* ===== features panel ===== */
.feat-panel{
  display:grid;grid-template-columns:repeat(5,1fr);
  background:var(--panel);border:1px solid var(--line);border-radius:var(--r);
  padding:26px 12px;
}
.feat-panel li{
  display:flex;flex-direction:column;align-items:flex-start;gap:9px;
  padding:4px 20px;
}
.feat-panel li+li{border-left:1px solid var(--line)}
.feat-ico{width:28px;height:28px;color:var(--blue-l)}
.feat-ico svg{width:28px;height:28px}
.feat-panel b{font-size:16px;font-weight:700}
.feat-panel i{font-style:normal;font-size:13.5px;line-height:1.55;color:var(--gray-2)}

/* ===== data centers ===== */
.dc-sec{background:radial-gradient(ellipse 60% 50% at 78% 55%,rgba(47,107,255,.1),transparent 62%)}
.dc-sec .eyebrow{font-size:14px}
.dc-sec .sec-tit{font-size:38px;margin-bottom:28px}

.dc-panel{
  display:grid;
  grid-template-columns:1fr min(36%,380px);
  gap:20px;
  align-items:center;
  border-radius:var(--r-l);
  overflow:hidden;
  border:1px solid rgba(60,140,255,.12);
  box-shadow:0 0 48px rgba(40,120,255,.08) inset;
  background:#040818;
  padding:22px 22px 22px 24px;
}
.dc-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  min-width:0;
}
.dc{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  transition:.25s;
}
.dc:hover{transform:translateY(-3px);border-color:rgba(91,157,255,.35)}
.dc-img{height:92px;background-size:cover;background-position:center}
.dc-in{padding:13px 14px 15px}
.dc-in h3{font-size:16px;font-weight:700;display:flex;align-items:center;gap:5px;margin-bottom:4px;line-height:1.3}
.flag{
  display:block;width:22px;height:15px;
  border-radius:2px;object-fit:cover;flex-shrink:0;
  box-shadow:0 0 0 1px rgba(255,255,255,.08);
}
.dc-in p{font-size:13px;color:var(--gray-2);margin-bottom:11px;line-height:1.45}
.dc-sec .btn-xs{font-size:13px;padding:8px 15px}
.dc .btn-xs{width:100%}
.center-pill .btn{display:inline-flex;width:auto}

.dc-map{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:0;
  padding:8px 4px 8px 0;
}
.dc-map-inner{
  position:relative;
  width:100%;
  max-width:340px;
}
.dc-map-inner img{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}
.map-fx{
  position:absolute;inset:0;
  width:100%;height:100%;
  pointer-events:none;
}
.map-routes .route{
  stroke-dasharray:4 8;
  animation:map-flow 3s linear infinite;
}
.map-routes .route:nth-child(2){animation-duration:2.4s}
.map-routes .route:nth-child(3){animation-duration:2.8s}
.map-routes .route:nth-child(4){animation-duration:2.2s}
.map-routes .route:nth-child(5){animation-duration:2.6s}
.map-routes .route:nth-child(6){animation-duration:3.2s}
@keyframes map-flow{to{stroke-dashoffset:-48}}

/* ===== reviews ===== */
.rv-sec .eyebrow{font-size:14px}
.rv-sec .sec-tit{font-size:38px}
.rv-panel{
  position:relative;
  background:var(--panel-2);border:1px solid var(--line);border-radius:var(--r-l);
  padding:26px 58px;
  overflow:hidden;
}
.rv-track{
  display:flex;gap:16px;
  will-change:transform;
  transition:transform .85s cubic-bezier(.22,.61,.36,1);
  cursor:grab;
  touch-action:pan-y;
  user-select:none;
  -webkit-user-select:none;
}
.rv-track.is-dragging{cursor:grabbing;transition:none}
.rv{
  flex:0 0 calc((100% - 32px) / 3);
  min-width:0;
  background:#101c33;border:1px solid var(--line);border-radius:var(--r);
  padding:20px 18px;display:flex;flex-direction:column;min-height:170px;
  pointer-events:none;
}
.rv-track.is-dragging .rv{pointer-events:none}
.stars{color:#4d8dff;font-size:14px;letter-spacing:2.5px;margin-bottom:11px}
.rv-txt{font-size:14px;line-height:1.8;color:#a3b0c9;flex:1}
.rv-foot{
  margin-top:16px;display:flex;align-items:center;justify-content:space-between;gap:12px;
}
.rv-who{display:flex;flex-direction:column;line-height:1.35;min-width:0}
.rv-who b{font-size:14.5px;font-weight:700}
.rv-who i{font-style:normal;font-size:13px;color:var(--gray-2)}
.rv-avatar{
  width:48px;height:48px;flex-shrink:0;border-radius:50%;
  object-fit:cover;border:2px solid rgba(91,157,255,.35);
  box-shadow:0 4px 12px rgba(0,0,0,.35);
}

.rv-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:32px;height:32px;border-radius:50%;
  border:1px solid var(--line-2);background:rgba(255,255,255,.03);
  display:grid;place-items:center;color:#b9c6de;transition:.2s;
  z-index:2;
}
.rv-nav svg{width:15px;height:15px}
.rv-nav:hover{background:var(--blue);border-color:var(--blue);color:#fff}
.rv-nav.prev{left:14px}
.rv-nav.next{right:14px}
.rv-nav:disabled{opacity:.4;pointer-events:none}

/* ===== partners ===== */
.partners{
  display:grid;grid-template-columns:repeat(6,1fr);align-items:center;
  background:var(--panel);border:1px solid var(--line);border-radius:var(--r);
  padding:24px 16px;
}
.partners li{
  display:flex;align-items:center;justify-content:center;gap:6px;
  color:#c2cde3;font-weight:700;opacity:.82;user-select:none;
}
.p-dell .dell-ring{
  display:grid;place-items:center;width:58px;height:58px;border-radius:50%;
  border:2px solid #c2cde3;font-size:14.5px;letter-spacing:.06em;
}
.p-intel{font-size:28px;font-weight:400;letter-spacing:-.02em}
.p-amd{font-size:27px;letter-spacing:.02em}
.p-amd svg{width:22px;height:13px}
.p-samsung{font-size:21px;letter-spacing:.13em}
.p-cisco{flex-direction:column;gap:3px}
.cisco-bars{width:52px;height:15px}
.p-cisco span{font-size:14px;letter-spacing:.22em;font-weight:500}
.p-juniper{font-size:19px;letter-spacing:.05em;font-weight:500}

/* ===== faq + contact ===== */
.faq-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:26px;align-items:start}
.faq-col{
  background:var(--panel);border:1px solid var(--line);border-radius:var(--r-l);
  padding:30px 28px;
}
.acc{display:flex;flex-direction:column;gap:9px}
.acc-it{background:#101c33;border:1px solid var(--line);border-radius:10px;overflow:hidden}
.acc-q{
  width:100%;text-align:left;padding:15px 16px;
  font-size:13.5px;font-weight:500;color:#d2dcf0;
  display:flex;align-items:center;justify-content:space-between;gap:14px;
}
.arw{
  width:8px;height:8px;flex-shrink:0;
  border-right:1.6px solid #7c89a5;border-bottom:1.6px solid #7c89a5;
  transform:rotate(45deg);transition:.25s;
}
.acc-it.open .arw{transform:rotate(-135deg);border-color:var(--blue-l)}
.acc-a{display:none;padding:0 16px 15px}
.acc-it.open .acc-a{display:block}
.acc-a p{font-size:13px;line-height:1.8;color:var(--gray)}

.contact{
  position:relative;overflow:hidden;
  background:
    radial-gradient(circle at 88% 22%,rgba(47,107,255,.2),transparent 46%),
    linear-gradient(160deg,#0e1a33,#0a1224);
  border:1px solid rgba(75,140,255,.22);border-radius:var(--r-l);
  padding:30px 28px 34px;min-height:330px;
}
.contact h3{font-size:20px;font-weight:700;margin-bottom:9px}
.contact-sub{font-size:12.5px;line-height:1.7;color:var(--gray);margin-bottom:24px}
.contact-list{display:flex;flex-direction:column;gap:11px;max-width:250px}
.contact-list li{display:flex;align-items:center;gap:11px}
.c-ico{
  width:34px;height:34px;flex-shrink:0;border-radius:10px;
  background:var(--blue-soft);color:var(--blue-l);display:grid;place-items:center;
}
.c-ico svg{width:17px;height:17px}
.c-txt{display:flex;flex-direction:column;line-height:1.35}
.c-txt b{font-size:13px;font-weight:700}
.c-txt i{font-style:normal;font-size:12px;color:var(--gray-2)}

.headset{position:absolute;right:8px;bottom:14px;width:210px;pointer-events:none}
.headset svg{width:100%;height:auto;animation:float 4s ease-in-out infinite}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-7px)}
}

/* ===== footer ===== */
.footer{background:#030812;border-top:1px solid var(--line);padding-top:52px}
.foot-top{
  display:grid;grid-template-columns:1.5fr .8fr .8fr .8fr 1.3fr;gap:26px;
  padding-bottom:40px;
}
.foot-brand .brand{margin-bottom:14px}
.footer .brand-txt b{font-size:17px}
.footer .brand-txt i{font-size:10px}
.foot-brand p{font-size:13.5px;line-height:1.8;color:var(--gray-2);margin-bottom:18px}
.sns{display:flex;gap:8px}
.sns a{
  width:30px;height:30px;border-radius:8px;
  border:1px solid var(--line);display:grid;place-items:center;
  font-size:13px;color:var(--gray);transition:.2s;
}
.sns a:hover{background:var(--blue);border-color:var(--blue);color:#fff}

.foot-col h4,.foot-news h4{font-size:15px;font-weight:700;margin-bottom:14px}
.foot-col a{display:block;font-size:13.5px;color:var(--gray-2);margin-bottom:9px}
.foot-col a:hover{color:#fff}

.foot-news p{font-size:13.5px;line-height:1.7;color:var(--gray-2);margin-bottom:12px}
.news{display:flex;gap:7px}
.news input{
  flex:1;min-width:0;padding:10px 14px;border-radius:999px;
  border:1px solid var(--line-2);background:rgba(255,255,255,.04);
  color:#fff;font-family:inherit;font-size:14px;outline:none;
}
.news input::placeholder{color:#5d6a86}
.news input:focus{border-color:var(--blue-l)}
.footer .btn-s{font-size:14px;padding:10px 18px}

.foot-bot{border-top:1px solid var(--line);padding:16px 0 22px}
.foot-bot p{text-align:center;font-size:13.5px;color:#4f5c76}

/* ===== responsive ===== */
@media (max-width:1100px){
  .plans{grid-template-columns:repeat(2,1fr)}
  .feat-panel{grid-template-columns:repeat(3,1fr);row-gap:24px}
  .feat-panel li:nth-child(3n+1){border-left:0}
  .dc-panel{grid-template-columns:1fr min(34%,320px);padding:18px;gap:16px}
  .dc-map-inner{max-width:300px}
  .faq-grid{grid-template-columns:1fr}
  .rv-track{/* keep flex */}
  .rv{flex-basis:calc((100% - 16px) / 2)}
  .foot-top{grid-template-columns:repeat(2,1fr);row-gap:34px}
  .partners{grid-template-columns:repeat(3,1fr);row-gap:24px}
  .hero h1{font-size:40px}
  .dc-sec .sec-tit,.rv-sec .sec-tit{font-size:32px}
}

@media (max-width:820px){
  .gnb{
    position:fixed;inset:var(--hd) 0 auto;display:none;
    flex-direction:column;align-items:stretch;gap:0;
    background:rgba(5,11,24,.97);border-bottom:1px solid var(--line);
    padding:10px 20px 16px;
  }
  .gnb.open{display:flex}
  .gnb a{padding:12px 4px;border-bottom:1px solid var(--line)}
  .burger{display:flex}
  .t-login{display:none}
  .stats{grid-template-columns:repeat(2,1fr);row-gap:20px}
  .stat:nth-child(odd){border-left:0}
  .dc-panel{
    grid-template-columns:1fr;
    padding:18px 18px 20px;
  }
  .dc-cards{grid-template-columns:1fr;gap:12px}
  .dc-map{padding:0;justify-content:center}
  .dc-map img{max-width:min(100%,360px)}
  .dc-map-inner{max-width:min(100%,360px)}
  .dc-img{height:120px}
  .rv-panel{padding:22px 20px 44px}
  .rv-nav{top:auto;bottom:12px;transform:none}
  .rv-nav.prev{left:calc(50% - 40px)}
  .rv-nav.next{right:calc(50% - 40px)}
  .headset{position:static;width:170px;margin:22px auto 0}
  .contact-list{max-width:none}
}

@media (max-width:560px){
  .hero{padding-top:calc(var(--hd) + 52px)}
  .hero h1{font-size:32px}
  .hero-desc{font-size:14.5px}
  .hs-txt b{font-size:14px}
  .hs-txt i{font-size:12px}
  .hero-spec{gap:16px}
  .hero-mask{background:linear-gradient(180deg,rgba(4,9,20,.9) 0%,rgba(4,9,20,.8) 55%,rgba(5,11,24,.95) 100%)}
  .plans,.feat-panel,.stats,.partners{grid-template-columns:1fr}
  .rv{flex-basis:100%}
  .feat-panel li,.stat{border-left:0!important}
  .sec-tit{font-size:26px}
  .dc-sec .sec-tit,.rv-sec .sec-tit{font-size:28px}
  .foot-top{grid-template-columns:1fr}
  .news{flex-direction:column}
  .news input,.news .btn{width:100%}
}
