/* roulang page: index */
:root{
  --primary:#8C5A3C;
  --primary-dark:#6E4327;
  --primary-light:#A9744F;
  --accent:#C9A063;
  --accent-dark:#A88544;
  --bg:#FAF6F0;
  --bg-soft:#F3ECE3;
  --bg-white:#FFFFFF;
  --text:#2B2620;
  --text-soft:#6E6457;
  --text-light:#8C8278;
  --border:#E5DCD2;
  --border-weak:#F0E8DF;
  --green:#6B8E63;
  --orange:#C08A4A;
  --shadow-sm:0 1px 3px rgba(43,38,32,.06);
  --shadow-md:0 4px 18px rgba(43,38,32,.08);
  --shadow-lg:0 12px 36px rgba(43,38,32,.12);
  --radius-sm:8px;
  --radius-md:12px;
  --radius-lg:18px;
  --container-w:1200px;
  --space-xl:96px;
  --space-lg:72px;
  --space-md:48px;
  --font-main:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-main);
  font-size:16px;
  line-height:1.75;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none;transition:color .25s}
button,input,select,textarea{font-family:inherit;font-size:inherit}
.container{
  width:min(var(--container-w),100% - 48px);
  margin-inline:auto;
}
.main{
  overflow:hidden;
}
.section{
  padding-block:var(--space-xl);
  position:relative;
}
.section--spaced{
  padding-block:var(--space-lg);
}
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--bg-soft);
  border:1px solid var(--border-weak);
  border-radius:999px;
  padding:6px 16px;
  font-size:13px;
  font-weight:600;
  color:var(--primary);
  letter-spacing:.04em;
  margin-bottom:16px;
}
.section-tag i{
  font-size:12px;
  color:var(--accent-dark);
}
.section-title{
  font-size:32px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-.01em;
  color:var(--text);
}
.section-desc{
  margin-top:14px;
  max-width:720px;
  font-size:16px;
  line-height:1.8;
  color:var(--text-soft);
}
.section-head{
  margin-bottom:48px;
}
.section-head.with-desc{
  display:flex;
  flex-direction:column;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 26px;
  border-radius:10px;
  font-weight:600;
  font-size:15px;
  line-height:1.4;
  border:1px solid transparent;
  cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
}
.btn-primary:hover{
  background:var(--primary-dark);
  border-color:var(--primary-dark);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}
.btn-primary:active{
  transform:translateY(0);
  box-shadow:var(--shadow-sm);
}
.btn-outline{
  background:var(--bg-white);
  color:var(--primary);
  border-color:var(--border);
}
.btn-outline:hover{
  border-color:var(--primary);
  background:var(--bg-soft);
  transform:translateY(-2px);
}
.btn-outline:active{
  transform:translateY(0);
}
.btn-light{
  background:var(--bg-white);
  color:var(--primary-dark);
  border-color:var(--bg-white);
}
.btn-light:hover{
  background:var(--bg-soft);
  border-color:var(--bg-soft);
  transform:translateY(-2px);
}
.btn:focus-visible,
.category-card a:focus-visible,
.faq-q:focus-visible,
.footer-links a:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}
.tag{
  display:inline-flex;
  align-items:center;
  padding:4px 14px;
  border-radius:999px;
  background:var(--bg-soft);
  border:1px solid var(--border-weak);
  font-size:13px;
  font-weight:600;
  color:var(--primary);
}
.tag--green{
  background:rgba(107,142,99,.1);
  border-color:rgba(107,142,99,.22);
  color:var(--green);
}
.tag--orange{
  background:rgba(192,138,74,.1);
  border-color:rgba(192,138,74,.25);
  color:var(--orange);
}
/* Topbar */
.topbar{
  background:var(--primary-dark);
  color:rgba(255,255,255,.9);
  font-size:13px;
  padding:8px 0;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.topbar-left{
  display:flex;
  align-items:center;
  gap:8px;
  letter-spacing:.03em;
}
.topbar-right{
  display:flex;
  align-items:center;
  gap:12px;
}
.topbar-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.18);
  padding:3px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}
.topbar-badge .dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#A8D5A2;
  display:inline-block;
}
/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid transparent;
  transition:all .3s ease;
}
.site-header.scrolled{
  background:rgba(250,246,240,.92);
  backdrop-filter:blur(12px);
  border-bottom-color:var(--border-weak);
  box-shadow:var(--shadow-sm);
}
.main-nav{
  background:transparent;
  padding:14px 0;
  transition:padding .3s ease;
}
.site-header.scrolled .main-nav{
  padding:10px 0;
}
.main-nav .container{
  display:flex;
  align-items:center;
  gap:28px;
}
.logo{
  font-size:22px;
  font-weight:800;
  color:var(--primary-dark);
  display:flex;
  align-items:center;
  gap:8px;
  line-height:1.2;
  flex-shrink:0;
}
.logo i{
  font-size:20px;
  color:var(--accent-dark);
}
.logo span{
  font-weight:500;
  color:var(--text-soft);
  font-size:13px;
  margin-left:2px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:auto;
  list-style:none;
}
.nav-links a{
  display:block;
  padding:8px 16px;
  border-radius:8px;
  font-size:15px;
  font-weight:500;
  color:var(--text);
  transition:all .25s;
}
.nav-links a:hover{
  background:var(--bg-soft);
  color:var(--primary);
}
.nav-links a.active{
  color:var(--primary);
  background:var(--bg-soft);
  font-weight:600;
}
.nav-countdown{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--bg-soft);
  border:1px solid var(--border-weak);
  border-radius:999px;
  padding:5px 14px;
  font-size:13px;
  color:var(--primary);
  font-weight:600;
}
.nav-countdown i{
  color:var(--accent-dark);
}
.nav-cta{
  flex-shrink:0;
}
.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--bg-white);
  color:var(--text);
  font-size:18px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  transition:all .3s;
}
.nav-toggle:hover{
  border-color:var(--primary);
  color:var(--primary);
}
.nav-toggle.active i::before{
  content:"\f00d";
}
/* Hero */
.hero{
  position:relative;
  padding:72px 0 64px;
  background:linear-gradient(145deg,var(--bg) 0%,var(--bg-soft) 60%,#F7EFE6 100%);
  border-bottom:1px solid var(--border-weak);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('/assets/images/backpic/back-1.jpg');
  background-size:cover;
  background-position:center;
  opacity:.05;
  pointer-events:none;
}
.hero .container{
  position:relative;
  z-index:1;
}
.hero-status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.8);
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 16px;
  font-size:13px;
  font-weight:600;
  color:var(--primary);
  box-shadow:var(--shadow-sm);
}
.hero-status i{
  color:var(--green);
}
.hero-title{
  font-size:44px;
  font-weight:800;
  line-height:1.35;
  letter-spacing:-.02em;
  max-width:820px;
  margin-top:24px;
  color:var(--text);
}
.hero-title em{
  font-style:normal;
  color:var(--primary);
  position:relative;
}
.hero-tagline{
  margin-top:20px;
  font-size:17px;
  line-height:1.85;
  color:var(--text-soft);
  max-width:600px;
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--bg-white);
  border:1px solid var(--border-weak);
  border-radius:999px;
  padding:8px 18px;
  font-size:14px;
  font-weight:600;
  color:var(--text-soft);
  transition:all .3s;
}
.pill i{
  color:var(--primary-light);
  font-size:14px;
}
.pill:hover{
  border-color:var(--primary);
  color:var(--primary);
  transform:translateY(-2px);
  box-shadow:var(--shadow-sm);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}
/* Metrics */
.metrics-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:52px;
}
.metric-card{
  background:var(--bg-white);
  border:1px solid var(--border-weak);
  border-radius:var(--radius-md);
  padding:22px 24px;
  box-shadow:var(--shadow-sm);
  transition:all .3s ease;
}
.metric-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
  border-color:var(--border);
}
.metric-value{
  font-size:38px;
  font-weight:800;
  color:var(--primary-dark);
  line-height:1.2;
  letter-spacing:-.02em;
}
.metric-value i{
  font-size:24px;
  color:var(--accent-dark);
  margin-left:4px;
  vertical-align:middle;
}
.metric-label{
  font-size:14px;
  color:var(--text-soft);
  margin-top:6px;
  line-height:1.5;
}
.metric-sub{
  font-size:12px;
  color:var(--text-light);
  margin-top:2px;
}
/* Category nav */
.category-section{
  background:var(--bg-white);
  border-bottom:1px solid var(--border-weak);
}
.category-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.category-card{
  padding:30px 26px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border-weak);
  background:var(--bg);
  transition:all .3s ease;
  display:flex;
  flex-direction:column;
}
.category-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--border);
  background:var(--bg-white);
}
.category-icon{
  width:52px;
  height:52px;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin-bottom:18px;
  transition:background .3s;
}
.category-card:hover .category-icon{
  background:var(--primary-dark);
}
.category-card h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:8px;
  color:var(--text);
}
.category-card p{
  font-size:14px;
  line-height:1.7;
  color:var(--text-soft);
  flex:1;
}
.category-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:16px;
  font-size:14px;
  font-weight:600;
  color:var(--primary);
}
.category-link i{
  transition:transform .3s;
}
.category-card:hover .category-link i{
  transform:translateX(4px);
}
/* Service showcase */
.service-section{
  background:var(--bg);
}
.service-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:24px;
}
.service-card{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--border-weak);
  background:var(--bg-white);
  box-shadow:var(--shadow-sm);
  transition:all .35s ease;
  display:flex;
  flex-direction:column;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:var(--border);
}
.service-card__img{
  overflow:hidden;
  position:relative;
  aspect-ratio:16/9;
}
.service-card__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.service-card:hover .service-card__img img{
  transform:scale(1.05);
}
.service-card--large .service-card__img{
  aspect-ratio:4/3;
}
.service-card--large{
  min-height:520px;
}
.service-card--large .service-card__body{
  padding:28px 30px 30px;
}
.service-card__body{
  padding:22px 24px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.service-card__body h3{
  font-size:19px;
  font-weight:700;
  color:var(--text);
  margin:12px 0 8px;
}
.service-card__body p{
  font-size:14px;
  line-height:1.75;
  color:var(--text-soft);
  flex:1;
}
.service-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  color:var(--primary);
  margin-top:16px;
}
.service-link i{
  transition:transform .3s;
}
.service-card:hover .service-link i{
  transform:translateX(4px);
}
.service-side{
  display:grid;
  gap:24px;
}
.service-card--small{
  flex-direction:row;
  align-items:stretch;
}
.service-card--small .service-card__img{
  width:42%;
  aspect-ratio:auto;
  flex-shrink:0;
}
.service-card--small .service-card__img img{
  height:100%;
  object-fit:cover;
}
.service-card--small .service-card__body{
  padding:18px 20px;
}
.service-card--small .service-card__body h3{
  font-size:17px;
  margin-top:8px;
}
.service-banner{
  grid-column:1/-1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:24px 30px;
  background:var(--bg-soft);
  border-radius:var(--radius-lg);
  border:1px solid var(--border-weak);
  transition:all .3s ease;
}
.service-banner:hover{
  box-shadow:var(--shadow-md);
}
.service-banner .banner-text h3{
  font-size:18px;
  font-weight:700;
  color:var(--text);
}
.service-banner .banner-text p{
  font-size:14px;
  color:var(--text-soft);
  margin-top:4px;
}
/* Compare */
.compare-section{
  background:var(--bg-white);
  border-bottom:1px solid var(--border-weak);
}
.compare-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.compare-col{
  border-radius:var(--radius-lg);
  padding:32px;
  border:1px solid var(--border-weak);
  background:var(--bg);
}
.compare-col--bad{
  background:#FBF4F0;
  border-color:#F0DCCF;
}
.compare-col--good{
  background:#F5F7F3;
  border-color:#DDE5D9;
}
.compare-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  padding:6px 16px;
  border-radius:999px;
  margin-bottom:20px;
}
.compare-col--bad .compare-label{
  background:rgba(192,138,74,.12);
  color:var(--orange);
}
.compare-col--good .compare-label{
  background:rgba(107,142,99,.12);
  color:var(--green);
}
.compare-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.compare-list li{
  display:flex;
  gap:12px;
  font-size:15px;
  line-height:1.7;
  color:var(--text);
}
.compare-list li i{
  margin-top:5px;
  font-size:14px;
  flex-shrink:0;
}
.compare-col--bad .compare-list li i{
  color:var(--orange);
}
.compare-col--good .compare-list li i{
  color:var(--green);
}
/* News */
.news-section{
  background:var(--bg);
}
.news-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:40px;
}
.news-list{
  list-style:none;
  border:1px solid var(--border-weak);
  border-radius:var(--radius-lg);
  background:var(--bg-white);
  overflow:hidden;
}
.news-item{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:22px 26px;
  border-bottom:1px solid var(--border-weak);
  transition:background .25s;
}
.news-item:last-child{
  border-bottom:none;
}
.news-item:hover{
  background:var(--bg-soft);
}
.news-left{
  flex:1;
}
.news-title{
  font-size:16px;
  font-weight:600;
  color:var(--text);
  line-height:1.6;
  transition:color .25s;
}
.news-title:hover{
  color:var(--primary);
}
.news-meta{
  display:flex;
  gap:12px;
  margin-top:6px;
  font-size:13px;
  color:var(--text-light);
}
.news-meta i{
  margin-right:4px;
}
.news-type{
  flex-shrink:0;
}
.news-side{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.side-card{
  background:var(--bg-white);
  border:1px solid var(--border-weak);
  border-radius:var(--radius-lg);
  padding:26px;
}
.side-title{
  font-size:16px;
  font-weight:700;
  color:var(--text);
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:8px;
}
.side-title i{
  color:var(--accent-dark);
  font-size:14px;
}
.tag-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.tag-cloud a{
  display:inline-block;
  padding:5px 14px;
  border-radius:999px;
  background:var(--bg-soft);
  border:1px solid var(--border-weak);
  font-size:13px;
  color:var(--text-soft);
  transition:all .25s;
}
.tag-cloud a:hover{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
}
.popular-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.popular-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.popular-rank{
  width:24px;
  height:24px;
  border-radius:8px;
  background:var(--bg-soft);
  color:var(--primary);
  font-size:12px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-top:2px;
}
.popular-item:nth-child(1) .popular-rank{
  background:var(--primary);
  color:#fff;
}
.popular-item a{
  font-size:14px;
  line-height:1.6;
  color:var(--text);
}
.popular-item a:hover{
  color:var(--primary);
}
/* Membership */
.membership-section{
  padding:96px 0;
  background-image:linear-gradient(rgba(43,38,32,.85),rgba(43,38,32,.88)),url('/assets/images/backpic/back-2.jpg');
  background-size:cover;
  background-position:center;
  color:rgba(255,255,255,.9);
}
.membership-section .section-tag{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.16);
  color:#fff;
}
.membership-section .section-tag i{
  color:var(--accent);
}
.membership-section .section-title{
  color:#fff;
}
.membership-section .section-desc{
  color:rgba(255,255,255,.7);
}
.member-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:48px;
}
.member-card{
  background:var(--bg-white);
  border-radius:var(--radius-lg);
  border:1px solid var(--border-weak);
  padding:34px 30px;
  position:relative;
  transition:all .3s ease;
  display:flex;
  flex-direction:column;
}
.member-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}
.member-card--featured{
  background:var(--bg-white);
  border:2px solid var(--accent);
  box-shadow:var(--shadow-lg);
}
.member-badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--accent);
  color:var(--primary-dark);
  font-size:12px;
  font-weight:700;
  padding:4px 16px;
  border-radius:999px;
  white-space:nowrap;
}
.member-name{
  font-size:18px;
  font-weight:700;
  color:var(--text);
}
.member-price{
  font-size:34px;
  font-weight:800;
  color:var(--primary-dark);
  margin-top:12px;
  line-height:1.2;
}
.member-price span{
  font-size:14px;
  font-weight:500;
  color:var(--text-soft);
  margin-left:4px;
}
.member-price note{
  display:block;
  font-size:13px;
  color:var(--text-light);
  font-weight:400;
  margin-top:4px;
}
.member-features{
  list-style:none;
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}
.member-features li{
  display:flex;
  gap:10px;
  font-size:14px;
  line-height:1.6;
  color:var(--text-soft);
}
.member-features li i{
  color:var(--green);
  font-size:13px;
  margin-top:4px;
  flex-shrink:0;
}
.member-cta{
  margin-top:26px;
}
.member-featured-tip{
  text-align:center;
  margin-top:20px;
  font-size:13px;
  color:var(--text-light);
}
/* FAQ */
.faq-section{
  background:var(--bg-white);
  border-bottom:1px solid var(--border-weak);
}
.faq-wrap{
  max-width:820px;
}
.faq-item{
  border:1px solid var(--border-weak);
  border-radius:var(--radius-md);
  background:var(--bg);
  margin-bottom:14px;
  overflow:hidden;
  transition:all .3s ease;
}
.faq-item.active{
  background:var(--bg-white);
  border-color:var(--border);
  box-shadow:var(--shadow-sm);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:20px 26px;
  background:transparent;
  border:none;
  text-align:left;
  cursor:pointer;
  font-size:16px;
  font-weight:600;
  color:var(--text);
  transition:color .25s;
}
.faq-q:hover{
  color:var(--primary);
}
.faq-q .faq-icon{
  flex-shrink:0;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--bg-soft);
  border:1px solid var(--border-weak);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  color:var(--text-soft);
  transition:all .3s;
}
.faq-item.active .faq-icon{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
  transform:rotate(45deg);
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-a-inner{
  padding:0 26px 24px;
  font-size:15px;
  line-height:1.8;
  color:var(--text-soft);
}
/* Contact / 表单 */
.contact-section{
  background:var(--bg);
}
.contact-card{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:48px;
  background:var(--bg-white);
  border:1px solid var(--border-weak);
  border-radius:var(--radius-lg);
  padding:52px;
  box-shadow:var(--shadow-sm);
}
.contact-info-title{
  font-size:20px;
  font-weight:700;
  color:var(--text);
  margin-bottom:16px;
}
.contact-info p{
  font-size:15px;
  line-height:1.85;
  color:var(--text-soft);
}
.trust-list{
  list-style:none;
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.trust-list li{
  display:flex;
  gap:12px;
  font-size:14px;
  color:var(--text-soft);
  line-height:1.6;
}
.trust-list li i{
  color:var(--green);
  font-size:15px;
  margin-top:3px;
  flex-shrink:0;
}
.form-group{
  margin-bottom:20px;
}
.form-group label{
  display:block;
  font-size:14px;
  font-weight:600;
  color:var(--text);
  margin-bottom:6px;
}
.form-group label span{
  color:var(--text-light);
  font-weight:400;
  font-size:12px;
}
.form-control{
  width:100%;
  padding:12px 16px;
  border-radius:10px;
  border:1px solid var(--border);
  background:var(--bg);
  color:var(--text);
  font-size:15px;
  transition:all .25s;
}
.form-control:focus{
  outline:none;
  border-color:var(--primary);
  background:var(--bg-white);
  box-shadow:0 0 0 3px rgba(140,90,60,.08);
}
.form-control::placeholder{
  color:var(--text-light);
}
select.form-control{
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C5A3C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:12px 8px;
}
textarea.form-control{
  min-height:90px;
  resize:vertical;
}
.form-success{
  display:none;
  text-align:center;
  padding:48px 24px;
}
.form-success i{
  font-size:48px;
  color:var(--green);
  margin-bottom:16px;
}
.form-success h3{
  font-size:22px;
  font-weight:700;
  margin-bottom:8px;
}
.form-success p{
  color:var(--text-soft);
  font-size:15px;
}
/* Footer */
.site-footer{
  background:var(--primary-dark);
  color:rgba(255,255,255,.85);
  padding:64px 0 32px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand .logo{
  color:#fff;
}
.footer-brand .logo span{
  color:rgba(255,255,255,.6);
}
.footer-desc{
  margin-top:16px;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.7);
  max-width:320px;
}
.footer-group h4{
  font-size:15px;
  font-weight:600;
  color:#fff;
  margin-bottom:18px;
  letter-spacing:.03em;
}
.footer-links{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-links a{
  font-size:14px;
  color:rgba(255,255,255,.65);
  transition:all .25s;
}
.footer-links a:hover{
  color:var(--accent);
}
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding-top:28px;
  font-size:13px;
  color:rgba(255,255,255,.5);
}
.footer-bottom-left{
  display:flex;
  gap:16px;
  align-items:center;
}
.footer-bottom a{
  color:rgba(255,255,255,.55);
}
.footer-bottom a:hover{
  color:var(--accent);
}
.back-top{
  position:fixed;
  right:28px;
  bottom:28px;
  width:46px;
  height:46px;
  border-radius:12px;
  background:var(--primary);
  color:#fff;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  cursor:pointer;
  box-shadow:var(--shadow-md);
  transition:all .3s;
  z-index:99;
}
.back-top:hover{
  background:var(--primary-dark);
  transform:translateY(-3px);
}
/* Responsive */
@media (max-width:1023px){
  .section{
    padding-block:var(--space-lg);
  }
  .hero-title{
    font-size:34px;
  }
  .metrics-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .service-grid{
    grid-template-columns:1fr;
  }
  .service-side{
    grid-template-columns:1fr 1fr;
  }
  .service-card--small{
    flex-direction:column;
  }
  .service-card--small .service-card__img{
    width:100%;
    aspect-ratio:16/9;
  }
  .compare-grid{
    grid-template-columns:1fr;
  }
  .news-grid{
    grid-template-columns:1fr;
  }
  .member-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .contact-card{
    grid-template-columns:1fr;
    padding:36px;
  }
  .footer-top{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width:767px){
  :root{
    --space-xl:56px;
    --space-lg:44px;
    --space-md:28px;
  }
  .topbar-right .topbar-badge{
    display:none;
  }
  .main-nav .container{
    gap:12px;
  }
  .nav-countdown{
    display:none;
  }
  .nav-links{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:78%;
    max-width:340px;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    background:var(--bg-white);
    padding:80px 32px 32px;
    box-shadow:var(--shadow-lg);
    transform:translateX(105%);
    transition:transform .35s ease;
    z-index:99;
    margin-left:0;
    gap:4px;
    border-left:1px solid var(--border-weak);
  }
  .nav-links.open{
    transform:translateX(0);
  }
  .nav-links a{
    width:100%;
    font-size:17px;
    padding:12px 14px;
  }
  .nav-toggle{
    display:inline-flex;
    margin-left:auto;
    position:relative;
    z-index:101;
  }
  .nav-cta{
    display:none;
  }
  .hero{
    padding-top:56px;
  }
  .hero-title{
    font-size:28px;
  }
  .hero-tagline{
    font-size:16px;
  }
  .hero-actions .btn{
    width:100%;
  }
  .metrics-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:34px;
  }
  .metric-card{
    padding:16px;
  }
  .metric-value{
    font-size:28px;
  }
  .section-title{
    font-size:24px;
  }
  .category-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .category-card{
    padding:22px 20px;
  }
  .service-side{
    grid-template-columns:1fr;
  }
  .service-card--large{
    min-height:auto;
  }
  .service-card--large .service-card__img{
    aspect-ratio:16/10;
  }
  .service-banner{
    flex-direction:column;
    align-items:flex-start;
    padding:20px;
  }
  .compare-col{
    padding:24px 20px;
  }
  .news-item{
    padding:16px 18px;
  }
  .member-grid{
    grid-template-columns:1fr;
  }
  .member-card{
    padding:28px 22px;
  }
  .contact-card{
    padding:24px 20px;
    gap:32px;
  }
  .site-footer{
    padding-top:48px;
  }
  .footer-top{
    grid-template-columns:1fr;
    gap:32px;
    padding-bottom:32px;
  }
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .back-top{
    right:16px;
    bottom:16px;
    width:40px;
    height:40px;
  }
}
@media (max-width:520px){
  .metrics-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero-pills{
    gap:8px;
  }
  .pill{
    padding:7px 14px;
    font-size:13px;
  }
  .nav-links{
    width:100%;
    max-width:none;
  }
}
