:root {
  --bg: #F9FAFB;
  --surface: #FFFFFF;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --text-soft: #9CA3AF;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-soft: #DBEAFE;
  --success: #10B981;
  --success-soft: #F0FDF4;
  --border: #E5E7EB;
  --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  resize: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 251, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-secondary);
  font-weight: 600;
  transition: 0.2s ease;
}

.main-nav a:hover {
  color: var(--text-primary);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: 0.2s ease;
}

.header-cta:hover {
  background: var(--accent-hover);
}

/* =========================
   SHARED
   ========================= */

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.9rem;
  line-height: 1.1;
}

.section-link {
  color: var(--accent);
  font-weight: 700;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
}

.meta-dot,
.dot {
  width: 4px;
  height: 4px;
  background: #CBD5E1;
  border-radius: 50%;
  display: inline-block;
}

.mini-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: white;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #F3F4F6;
}

.btn-ghost {
  background: #F8FAFC;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: #EEF2F7;
}

.btn-link {
  color: var(--accent);
  font-weight: 700;
  padding: 0;
}

.btn-linkish {
  background: #EFF6FF;
  color: var(--accent);
  border: 1px solid #DBEAFE;
}

.btn-linkish:hover {
  background: #DBEAFE;
}

.full {
  width: 100%;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* =========================
   HOME PAGE
   ========================= */

.home-hero {
  padding: 48px 0 34px;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 850px;
}

.hero-text {
  margin: 0;
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stat-box {
  min-width: 180px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.stat-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.stat-box span {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hero-panel-card {
  background: linear-gradient(135deg, #EFF6FF, #F8FAFC);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-panel-card h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.hero-panel-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.manifesto-section {
  padding: 12px 0 24px;
}

.manifesto-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.manifesto-card p {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: #374151;
}

.manifesto-card p:last-child {
  margin-bottom: 0;
}

.featured-news-section {
  padding: 26px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
  transition: 0.2s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: #D1D5DB;
}

.large-card {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.news-card-category {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.news-card p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.news-card-meta {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.categories-section {
  padding: 26px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
  transition: 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.category-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.why-section {
  padding: 26px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.why-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =========================
   ARTICLE DETAIL PAGE
   ========================= */

.hero {
  padding: 38px 0 22px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.category-badge,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.meta-item,
.meta-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-title,
.article-title {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-summary,
.article-summary {
  max-width: 800px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.12rem;
  line-height: 1.8;
}

.article-section {
  padding: 24px 0 70px;
}

.article-layout,
.news-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 34px;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.featured-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.article-body {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
}

.article-body .lead {
  font-size: 1.16rem;
  line-height: 1.9;
  color: #374151;
}

.article-body p {
  margin: 0 0 22px;
  color: #374151;
  font-size: 1.04rem;
  line-height: 1.95;
}

.article-body h2 {
  margin: 38px 0 14px;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.article-body blockquote,
.highlight-box {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--success);
  background: var(--success-soft);
  border-radius: 0 18px 18px 0;
  color: #065F46;
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 600;
}

.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.article-tags a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #F3F4F6;
  color: var(--text-secondary);
  font-weight: 600;
  transition: 0.2s ease;
}

.article-tags a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.article-sidebar,
.side-panel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 100px;
}

.sidebar-card,
.panel-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.sidebar-card h3,
.panel-head h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.sidebar-card p,
.panel-section p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.98rem;
}

.share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.share-btn {
  min-width: 92px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text-primary);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.share-btn:hover {
  background: #F3F4F6;
}

.newsletter-form {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.newsletter-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form button {
  height: 48px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.newsletter-form button:hover {
  background: var(--accent-hover);
}

.related-news-section {
  padding: 10px 0 80px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Operation panel support */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.topbar h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.article-card {
  padding: 28px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.article-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.divider {
  margin: 28px 0;
  height: 1px;
  background: var(--border);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pill.waiting {
  background: #FEF3C7;
  color: #92400E;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list span {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.info-list strong {
  text-align: right;
  font-size: 0.92rem;
}

.post-box {
  white-space: pre-wrap;
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  line-height: 1.7;
  color: #374151;
  font-size: 0.95rem;
  max-height: 320px;
  overflow: auto;
}

.quick-actions {
  display: grid;
  gap: 10px;
}

.text-btn {
  color: var(--accent);
  font-weight: 700;
  padding: 0;
}

/* =========================
   BLOG PAGE
   ========================= */

.blog-hero {
  padding: 52px 0 24px;
}

.blog-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.blog-hero-text {
  max-width: 780px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.85;
}

.featured-post-section {
  padding: 18px 0 18px;
}

.featured-post-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
  transition: 0.2s ease;
}

.featured-post-card:hover {
  transform: translateY(-2px);
}

.featured-post-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.featured-post-copy h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.featured-post-copy p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1rem;
}

.post-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.featured-post-visual {
  overflow: hidden;
  border-radius: 22px;
  min-height: 100%;
}

.featured-post-visual img {
  height: 100%;
  object-fit: cover;
}

.blog-filter-section {
  padding: 12px 0 8px;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid var(--border);
  background: white;
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.2s ease;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: #BFDBFE;
}

.blog-list-section {
  padding: 22px 0 34px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: #D1D5DB;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-image img {
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
}

.blog-card-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #EEF2FF;
  color: #4338CA;
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-card h3 {
  margin: 0 0 12px;
  font-size: 1.16rem;
  line-height: 1.42;
}

.blog-card p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.97rem;
}

.blog-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.blog-cta-section {
  padding: 8px 0 80px;
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-hero {
  padding: 52px 0 24px;
}

.about-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-hero-text {
  max-width: 780px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-intro-section {
  padding: 18px 0 20px;
}

.about-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.about-intro-copy h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-intro-copy p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1rem;
}

.about-intro-copy p:last-child {
  margin-bottom: 0;
}

.about-intro-box {
  background: linear-gradient(135deg, #EFF6FF, #F8FAFC);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro-box h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.45;
}

.mission-section {
  padding: 26px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.mission-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.mission-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.approach-section {
  padding: 26px 0;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
}

.approach-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.approach-content p {
  margin: 0 0 18px;
  color: var(--text-secondary);
  line-height: 1.9;
}

.approach-content blockquote {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--success);
  background: var(--success-soft);
  border-radius: 0 16px 16px 0;
  color: #065F46;
  font-size: 1.04rem;
  line-height: 1.8;
  font-weight: 600;
}

.approach-steps {
  display: grid;
  gap: 16px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent);
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.step-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.values-section {
  padding: 26px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.value-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.about-cta-section {
  padding: 30px 0 80px;
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact-hero {
  padding: 52px 0 24px;
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.contact-hero-text {
  max-width: 720px;
  color: var(--text-secondary);
  line-height: 1.85;
}

.contact-section {
  padding: 20px 0 30px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin: 0 0 10px;
}

.info-card p {
  margin: 0 0 8px;
  color: var(--text-secondary);
}

.info-card a {
  color: var(--accent);
  font-weight: 700;
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.contact-form-card h2 {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  color: var(--text-primary);
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  resize: none;
}

.faq-section {
  padding: 26px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.faq-card h3 {
  margin: 0 0 10px;
}

.faq-card p {
  margin: 0;
  color: var(--text-secondary);
}

.contact-cta-section {
  padding: 20px 0 80px;
}

/* =========================
   CTA / FOOTER
   ========================= */

.cta-section,
.blog-cta-section,
.about-cta-section,
.contact-cta-section {
  padding-bottom: 80px;
}

.cta-box {
  background: linear-gradient(135deg, #EFF6FF, #FFFFFF);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.15;
}

.cta-text {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #FFFFFF;
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* =========================
   TOAST
   ========================= */

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--text-primary);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 50;
  font-weight: 600;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
  .home-hero-inner,
  .featured-post-card,
  .about-intro-card,
  .approach-layout,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    grid-row: auto;
    grid-column: span 2;
  }

  .category-grid,
  .why-grid,
  .mission-grid,
  .values-grid,
  .blog-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout,
  .news-detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .side-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 16px;
  }

  .home-hero,
  .blog-hero,
  .about-hero,
  .contact-hero,
  .hero {
    padding-top: 28px;
  }

  .hero-copy h1,
  .blog-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .hero-title,
  .article-title {
    font-size: 2.1rem;
  }

  .hero-text,
  .blog-hero-text,
  .about-hero-text,
  .contact-hero-text,
  .hero-summary,
  .article-summary {
    font-size: 1rem;
  }

  .featured-post-copy h2,
  .about-intro-copy h2,
  .cta-box h2,
  .section-head h2 {
    font-size: 1.6rem;
  }

  .news-grid,
  .category-grid,
  .why-grid,
  .mission-grid,
  .values-grid,
  .blog-grid,
  .related-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    grid-column: span 1;
  }

  .section-head,
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-body,
  .article-card,
  .side-panel,
  .cta-box,
  .contact-form-card {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }
}