/* ===== Variables ===== */
:root {
  --primary: #1b3a28;
  --primary-2: #2d5a3d;
  --accent: #8baf6a;
  --accent-dark: #6a9050;
  --surface: #f5f3ee;
  --surface-2: #eef1ea;
  --text: #1f2a23;
  --muted: #5f6f64;
  --white: #ffffff;
  --border: #d8d4c9;
  --shadow: 0 4px 20px rgba(27,58,40,.10);
  --radius: 12px;
  --tr: .2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Microsoft YaHei","PingFang SC","Helvetica Neue",sans-serif; color: var(--text); background: var(--surface); line-height: 1.7; font-size: 15px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.4em; }
li { margin: 5px 0; }
h1,h2,h3,h4 { line-height: 1.25; }

/* ===== Layout ===== */
.container { width: min(1160px, 92vw); margin: 0 auto; }
.section { padding: 64px 0; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--primary); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); box-shadow: 0 2px 16px rgba(0,0,0,.18); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.logo { font-size: 18px; font-weight: 700; letter-spacing: .5px; white-space: nowrap; flex-shrink: 0; }
.nav-links { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.nav-links a { opacity: .88; padding: 7px 12px; border-radius: 8px; font-size: 14px; transition: background var(--tr), opacity var(--tr); }
.nav-links a.active, .nav-links a:hover { background: rgba(255,255,255,.14); opacity: 1; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--tr), opacity var(--tr); }

/* ===== Buttons ===== */
.btn { display: inline-block; border: 1px solid transparent; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--tr); white-space: nowrap; font-family: inherit; }
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #132116; }
.btn-primary:hover { background: var(--accent-dark); opacity: 1; }
.btn-secondary { border-color: var(--white); color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,.12); opacity: 1; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: var(--white); opacity: 1; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ===== Hero ===== */
.hero { background: linear-gradient(120deg,rgba(27,58,40,.92),rgba(45,90,61,.82)), url('assets/images/hero-bg.jpg') center/cover no-repeat; color: var(--white); padding: 100px 0 88px; }
.hero h1 { font-size: clamp(32px,5vw,56px); line-height: 1.15; margin-bottom: 18px; font-weight: 800; }
.hero p { max-width: 580px; color: rgba(255,255,255,.88); font-size: 16px; margin-bottom: 28px; }
.hero .tag { margin-bottom: 18px; }

/* ===== Page Hero ===== */
.page-hero { background: linear-gradient(135deg,#244c34,#1b3a28); color: var(--white); padding: 56px 0; }
.page-hero h1 { font-size: clamp(26px,4vw,40px); margin-bottom: 10px; font-weight: 700; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 15px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 6px; opacity: .5; }

/* ===== Section Header ===== */
.section-header { margin-bottom: 36px; }
.section-header h2 { font-size: clamp(22px,3vw,32px); color: var(--primary); margin-bottom: 10px; }
.section-header p { color: var(--muted); max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ===== KPI ===== */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 14px; }
.kpi { background: var(--surface-2); border: 1px solid #d7dfd1; border-radius: var(--radius); padding: 22px 16px; text-align: center; }
.kpi strong { display: block; font-size: 34px; color: var(--primary); font-weight: 800; line-height: 1.1; }
.kpi span { font-size: 13px; color: var(--muted); margin-top: 4px; display: block; }

/* ===== Cards ===== */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
a.card, .card-link { transition: box-shadow var(--tr), transform var(--tr); }
a.card:hover, .card-link:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 18px; }

/* ===== Tag ===== */
.tag { display: inline-block; font-size: 12px; padding: 4px 10px; border-radius: 999px; background: #e9efe5; color: var(--primary); font-weight: 500; }
.tag-accent { background: var(--accent); color: #132116; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* ===== Service Cards ===== */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 18px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; transition: box-shadow var(--tr), transform var(--tr); }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { width: 52px; height: 52px; background: var(--surface-2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.service-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; }

/* ===== Filter Bar ===== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-btn { padding: 7px 18px; border-radius: 999px; border: 1px solid var(--border); background: var(--white); font-size: 13px; cursor: pointer; transition: all var(--tr); color: var(--text); font-family: inherit; }
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== Project Cards ===== */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; }
.project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--tr), transform var(--tr); display: flex; flex-direction: column; }
.project-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.project-thumb { width: 100%; height: 200px; background: linear-gradient(135deg,var(--primary-2),var(--primary)); overflow: hidden; position: relative; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.project-card:hover .project-thumb img { transform: scale(1.04); }
.project-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.25); font-size: 48px; }
.project-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.project-body h3 { font-size: 15px; color: var(--primary); font-weight: 600; }
.project-body p { color: var(--muted); font-size: 13px; flex: 1; }
.project-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ===== Carousel ===== */
.carousel-wrap { border-radius: var(--radius); overflow: hidden; background: #1a2a1e; position: relative; }
.carousel-track-outer { overflow: hidden; }
.carousel-track { display: flex; transition: transform .4s ease; }
.carousel-slide { min-width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg,var(--primary-2),var(--primary)); position: relative; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); font-size: 64px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.22); border: none; color: var(--white); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background var(--tr); backdrop-filter: blur(4px); }
.carousel-btn:hover { background: rgba(255,255,255,.4); }
.carousel-btn.prev { left: 14px; }
.carousel-btn.next { right: 14px; }
.carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 10; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: all var(--tr); padding: 0; }
.carousel-dot.active { background: var(--white); width: 22px; border-radius: 4px; }
.carousel-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 10px; }
.carousel-thumb { aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--tr); background: var(--surface-2); }
.carousel-thumb.active { border-color: var(--accent); }
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.carousel-thumb-ph { width: 100%; height: 100%; background: linear-gradient(135deg,var(--primary-2),var(--primary)); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.25); font-size: 22px; }

/* ===== Project Detail ===== */
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.detail-content h2 { font-size: 20px; color: var(--primary); margin: 24px 0 10px; }
.detail-content h2:first-child { margin-top: 0; }
.detail-content p { color: var(--muted); margin-bottom: 12px; line-height: 1.8; }
.sticky-card { position: sticky; top: 88px; }
.info-item { padding: 11px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-label { font-size: 12px; color: var(--muted); margin-bottom: 3px; }
.info-value { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ===== News ===== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.news-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--tr), transform var(--tr); }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-thumb { width: 100%; height: 180px; background: linear-gradient(135deg,var(--primary-2),var(--primary)); overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.news-body h3 { font-size: 15px; color: var(--primary); line-height: 1.5; font-weight: 600; }
.news-body p { color: var(--muted); font-size: 13px; flex: 1; }
.news-meta { font-size: 12px; color: var(--muted); display: flex; gap: 10px; }
.news-detail-layout { display: grid; grid-template-columns: 1fr 260px; gap: 28px; align-items: start; }
.news-content h2 { font-size: 20px; color: var(--primary); margin: 22px 0 10px; }
.news-content p { color: var(--muted); margin-bottom: 14px; line-height: 1.85; }

/* ===== About ===== */
.two-col { display: grid; grid-template-columns: 1.4fr .6fr; gap: 28px; align-items: start; }
.two-col-even { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.timeline { position: relative; padding-left: 24px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 20px; }
.timeline-item::before { content: ''; position: absolute; left: -20px; top: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--accent); }
.timeline-year { font-size: 13px; color: var(--accent-dark); font-weight: 700; margin-bottom: 2px; }
.timeline-text { font-size: 14px; color: var(--muted); }
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 14px; }
.cert-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 18px; text-align: center; }
.cert-icon { font-size: 30px; margin-bottom: 10px; }
.cert-card h4 { font-size: 14px; color: var(--primary); margin-bottom: 4px; }
.cert-card p { font-size: 12px; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 18px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--surface-2); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--muted); }
.team-card h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--muted); }

/* ===== Contact ===== */
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.contact-item h4 { font-size: 12px; color: var(--muted); margin-bottom: 3px; }
.contact-item p { font-size: 15px; color: var(--primary); font-weight: 500; }
.map-ph { width: 100%; height: 260px; background: var(--surface-2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; border: 1px solid var(--border); margin-top: 16px; }

/* ===== Form ===== */
.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.input, textarea, select { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font: inherit; font-size: 14px; background: var(--white); color: var(--text); transition: border-color var(--tr); outline: none; }
.input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 110px; }

/* ===== CTA Band ===== */
.cta-band { background: var(--primary); color: var(--white); padding: 52px 0; }
.cta-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-wrap h3 { font-size: 24px; margin-bottom: 8px; }
.cta-wrap p { color: rgba(255,255,255,.8); font-size: 14px; }

/* ===== Footer ===== */
.site-footer { background: #102118; color: rgba(255,255,255,.88); padding: 48px 0 24px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand .logo { font-size: 17px; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.75; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 14px; letter-spacing: .8px; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 8px; transition: color var(--tr); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.4); font-size: 12px; }

/* ===== Misc ===== */
.meta { color: var(--muted); font-size: 13px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.highlight-band { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); counter-reset: step; }
.process-step { padding: 28px 20px; text-align: center; counter-increment: step; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.process-step::before { content: counter(step,decimal-leading-zero); display: block; font-size: 30px; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.process-step h4 { font-size: 14px; color: var(--primary); margin-bottom: 4px; }
.process-step p { font-size: 12px; color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 16px; }

/* ===== Project Cards ===== */
.project-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 20px; margin-top: 24px; }
.project-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: block; transition: box-shadow var(--tr), transform var(--tr); }
.project-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.project-thumb { height: 200px; background: linear-gradient(135deg,#2d5a3d,#1b3a28); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.project-thumb-ph { font-size: 48px; opacity: .5; }
.project-body { padding: 18px; }
.project-body .tags { margin-bottom: 10px; }
.project-body h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.project-body p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.project-meta { display: flex; gap: 12px; font-size: 12px; color: var(--muted); }

/* ===== News Cards ===== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; margin-top: 24px; }
.news-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: block; transition: box-shadow var(--tr), transform var(--tr); }
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-thumb { height: 180px; background: linear-gradient(135deg,#1b3a28,#2d5a3d); display: flex; align-items: center; justify-content: center; }
.news-thumb-ph { font-size: 48px; opacity: .5; }
.news-body { padding: 18px; }
.news-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.news-date { font-size: 12px; color: var(--muted); }
.news-body h3 { font-size: 15px; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.news-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== Carousel ===== */
.carousel { position: relative; }
.carousel-main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); aspect-ratio: 16/9; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .4s ease; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#2d5a3d,#1b3a28); }
.carousel-slide.active { opacity: 1; position: relative; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-slide-ph { font-size: 80px; opacity: .3; }
.carousel-prev, .carousel-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 22px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background var(--tr); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(0,0,0,.7); }
.carousel-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; cursor: pointer; padding: 0; transition: background var(--tr), transform var(--tr); }
.carousel-dot.active { background: #fff; transform: scale(1.2); }
.carousel-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.carousel-thumb { width: 80px; height: 56px; border-radius: 6px; overflow: hidden; border: 2px solid transparent; cursor: pointer; background: var(--surface-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: 0; transition: border-color var(--tr); }
.carousel-thumb.active { border-color: var(--accent); }
.carousel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.carousel-thumb-ph { font-size: 20px; opacity: .4; }

/* ===== Detail Layout ===== */
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.detail-main { min-width: 0; }
.detail-sidebar { position: sticky; top: 88px; }
.info-list { display: grid; gap: 10px; }
.info-list dt { font-size: 12px; color: var(--muted); }
.info-list dd { font-size: 14px; color: var(--text); font-weight: 500; margin: 0; }

/* ===== News Detail Layout ===== */
.news-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.news-article { min-width: 0; }
.news-sidebar { position: sticky; top: 88px; }
.news-cover { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg,#1b3a28,#2d5a3d); border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.news-cover-ph { font-size: 80px; opacity: .3; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { line-height: 1.85; color: var(--text); }
.article-body p { margin-bottom: 16px; }
.article-body h2, .article-body h3 { color: var(--primary); margin: 24px 0 12px; }
.article-footer { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }

/* ===== Contact ===== */
.contact-form { display: grid; gap: 14px; }
.form-input { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font: inherit; font-size: 14px; background: var(--white); color: var(--text); transition: border-color var(--tr); outline: none; }
.form-input:focus { border-color: var(--accent); }
textarea.form-input { resize: vertical; min-height: 120px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; padding: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

/* ===== Footer (updated) ===== */
.footer-logo { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.footer-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 12px; letter-spacing: .8px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.55); font-size: 13px; transition: color var(--tr); }
.footer-links a:hover { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }

/* ===== Two Col Even ===== */
.two-col { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; }
.two-col-even { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ===== Scroll Reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.revealed { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .two-col, .two-col-even, .detail-layout, .news-detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--primary); padding: 12px 16px 16px; gap: 2px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .nav-toggle { display: flex; }
  .hero { padding: 64px 0; }
  .section { padding: 44px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-wrap { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
}
