/*
Theme Name: ChillGo
Theme URI: https://chillgo.vn
Description: Custom theme for ChillGo chauffeur service
Version: 2.0
Author: ChillGo Team
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  --blue:        #1a52a8;
  --blue-dark:   #0d1e3d;
  --blue-mid:    #1640a0;
  --yellow:      #f5c200;
  --yellow-light:#ffd740;
  --white:       #ffffff;
  --gray:        #f5f7fa;
  --text:        #1a1a2e;
  --muted:       #6b7280;
  --radius:      12px;
  --shadow:      0 8px 32px rgba(26,82,168,0.12);
  --shadow-lg:   30px 49px 100px 0px rgba(26,82,168,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 90px 0; }
.section-gray { background: var(--gray); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.tag {
  display: inline-block;
  background: rgba(245,194,0,0.15);
  color: var(--blue);
  border: 1.5px solid rgba(245,194,0,0.5);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}

.section-title span { color: var(--blue); }

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(245,194,0,0.35);
}

.btn-primary:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,194,0,0.45);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,82,168,0.3);
}

.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,82,168,0.08);
  transition: box-shadow 0.3s, height 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(26,82,168,0.12);
  height: 64px;
}

.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img { height: 42px; width: auto; }

.navbar-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar-links a {
  color: var(--text);
  text-shadow: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}

.navbar-links a:hover { color: var(--blue); }
.navbar-links a:hover::after { transform: scaleX(1); }

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.navbar-hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--blue); border-radius: 2px;
  transition: all 0.3s;
}

/* Open state → × icon */
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  width: 100%;
  height: 600px;
  margin-top: 76px;
  background-image: url('/wp-content/uploads/2026/03/hero-bg.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay — left side legible, right lets image show */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.82) 0%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* LEFT — text only */
.hero-text {
  max-width: 380px;
  color: var(--text);
  margin-left: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,82,168,0.09);
  border: 1.5px solid rgba(26,82,168,0.2);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--blue-dark);
}

.hero-title .highlight { color: var(--yellow); }

.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--blue) 0%, #2979d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-desc strong { color: var(--blue); }

/* App store buttons */
.hero-apps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.store-badge {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.22s, filter 0.22s;
}

.store-badge:hover { transform: translateY(-2px); filter: brightness(1.08); }

/* Stats row */
.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,82,168,0.12);
}

.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 600;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 768px) {
  .hero {
    background-position: right center;
    min-height: auto;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.88) 60%,
      rgba(255,255,255,0.5) 100%
    );
  }
  .hero-content { padding: 56px 28px; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 38px 30px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(26,82,168,0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26,82,168,0.18);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: rgba(26,82,168,0.08);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 22px;
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(245,194,0,0.18);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--blue);
  transition: gap 0.2s;
}

.service-link::after { content: '→'; }
.service-card:hover .service-link { gap: 10px; }

/* ===== PRICING TABLE ===== */
.pricing-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pricing-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 36px;
}

.pricing-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead tr {
  background: rgba(255,255,255,0.06);
}

.pricing-table thead th {
  padding: 16px 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-table thead th:first-child { text-align: left; }

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}

.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: rgba(255,255,255,0.06); }

.pt-featured { background: rgba(245,194,0,0.07) !important; }

.pricing-table tbody td {
  padding: 18px 24px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
  vertical-align: middle;
}

.pricing-table tbody td:first-child { text-align: left; }
.pricing-table tbody td strong { font-weight: 800; color: var(--white); }

.pt-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--yellow);
}

.pt-price small {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.pt-negotiate {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* Footer */
.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.pricing-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .pricing-table thead { display: none; }
  .pricing-table tbody tr {
    display: block;
    padding: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
  .pricing-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .pricing-table tbody td:last-child { border-bottom: none; }
  .pricing-table tbody td::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    margin-right: 12px;
    text-align: left;
  }
  .pricing-footer { flex-direction: column; align-items: flex-start; }
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 20px;
}

.stat-card-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* ===== WHY US ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,82,168,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(26,82,168,0.1), rgba(245,194,0,0.1));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon { transform: scale(1.12) rotate(-4deg); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ===== WELCOME SECTION ===== */
.welcome-section {
  padding: 80px 0;
  background: var(--gray);
}

.welcome-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.welcome-title span { color: var(--blue); }

.welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.welcome-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,82,168,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.welcome-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.welcome-icon {
  width: 88px; height: 88px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}

.welcome-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.welcome-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.welcome-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  border-radius: 20px;
  padding: 40px 32px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover { transform: translateY(-6px); border-color: rgba(26,82,168,0.15); }

.pricing-card.featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  position: relative;
  border-color: transparent;
}

.pricing-badge {
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.pricing-card h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
.pricing-card.featured h3 { color: rgba(255,255,255,0.7); }

.pricing-price { font-size: 2.4rem; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-card.featured .pricing-price { color: var(--yellow); }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.6); }

.pricing-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.12); }

.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; padding: 8px 0; }
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 900; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: var(--yellow); }

.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 30px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 800;
  background: var(--gray);
  color: var(--text);
  transition: all 0.2s;
}

.pricing-card.featured .pricing-cta { background: var(--yellow); color: var(--blue-dark); box-shadow: 0 6px 24px rgba(245,194,0,0.4); }
.pricing-cta:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,82,168,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,82,168,0.18); }

.news-img-wrap { overflow: hidden; height: 210px; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img-wrap img { transform: scale(1.06); }

.news-body { padding: 26px; }

.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 0.8rem; color: var(--muted); }
.news-cat { background: rgba(26,82,168,0.08); color: var(--blue); font-weight: 800; padding: 3px 12px; border-radius: 20px; }

.news-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; line-height: 1.4; }
.news-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.news-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 0.88rem; font-weight: 800; color: var(--blue); transition: gap 0.2s; }
.news-read-more:hover { gap: 10px; color: var(--blue-mid); }

/* ===== DOWNLOAD APP ===== */
.app-download-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.app-download-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1024px;
  margin: 0 auto;
  gap: 64px;
  align-items: center;
}

.app-download-left {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.app-download-img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.app-download-right { padding: 8px 0; }

.app-download-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.app-download-title span { color: var(--blue); }

.app-download-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.app-download-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  background: var(--gray);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(26,82,168,0.07);
  transition: background 0.2s, border-color 0.2s;
}

.app-feature-item:hover {
  background: rgba(26,82,168,0.06);
  border-color: rgba(26,82,168,0.15);
}

.app-feature-item span { font-size: 1.1rem; }

@media (max-width: 768px) {
  .app-download-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-download-left { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .app-download-features { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,82,168,0.06);
  transition: transform 0.3s;
  position: relative;
}

.testimonial-card:hover { transform: translateY(-5px); }

.testimonial-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(26,82,168,0.25);
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-header { text-align: center; margin-bottom: 18px; }
.testimonial-name { font-weight: 800; font-size: 0.95rem; color: var(--blue); }
.testimonial-role { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

.testimonial-stars { color: var(--yellow); font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 12px; text-align: center; }

.testimonial-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; font-style: italic; }

.testimonial-quote {
  font-size: 4rem;
  color: rgba(26,82,168,0.12);
  line-height: 1;
  font-family: Georgia, serif;
  text-align: right;
  margin-top: 12px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-header { text-align: left; margin-bottom: 36px; }
.contact-info .section-subtitle { margin: 0; }

.contact-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }

.contact-item-icon {
  width: 50px; height: 50px;
  background: rgba(26,82,168,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.contact-item:hover .contact-item-icon { background: rgba(245,194,0,0.2); transform: scale(1.1); }
.contact-item-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.contact-item-value { font-weight: 800; font-size: 0.98rem; }

.contact-form { background: var(--white); border-radius: 20px; padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid rgba(26,82,168,0.08); }
.contact-form h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 800; margin-bottom: 7px; color: var(--text); }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(26,82,168,0.1);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--gray);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); background: var(--white); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--blue-dark) 0%, #060e1f 100%);
  color: rgba(255,255,255,0.72);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 26px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { background: var(--yellow); transform: translateY(-3px); }

.footer-col h4 { color: var(--white); font-size: 0.88rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 11px; font-size: 0.88rem; color: rgba(255,255,255,0.62); }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.62); transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--yellow); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 252px;
  right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,82,168,0.3);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 998;
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ===== FLOATING WIDGET ===== */
.float-widget {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  cursor: pointer;
}

.float-btn:hover { transform: scale(1.12) !important; animation-play-state: paused !important; box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

.float-btn.phone { background: var(--yellow); animation: pulse-yellow 2s infinite, float 1.8s ease-in-out infinite 0.6s; display: none; }
.float-btn.zalo { background: #0068ff; animation: pulse-blue 2s infinite, float 1.8s ease-in-out infinite; }

.float-label {
  position: absolute;
  right: 60px;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.float-btn:hover .float-label { opacity: 1; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-3px, -3px) rotate(-5deg); }
  40% { transform: translate(3px, -5px) rotate(5deg); }
  60% { transform: translate(-3px, -3px) rotate(-3deg); }
  80% { transform: translate(3px, -2px) rotate(3deg); }
}


@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,194,0,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(245,194,0,0); }
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,104,255,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(0,104,255,0); }
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--blue-dark);
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  gap: 10px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 1.7rem; }
  .welcome-title { font-size: 1.7rem; }
  .page-hero { padding: 96px 0 48px; }
  .page-hero-title { font-size: 1.7rem; }
  .hero-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .welcome-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .single-layout { grid-template-columns: 1fr !important; }
  .single-sidebar { display: none !important; }
  .navbar-links { display: none; }
  .navbar-hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-text { margin-left: 0 !important; max-width: 100%; text-align: center; }
  .hero-apps { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .float-widget { bottom: 24px; }
  .float-btn.phone { display: flex; }
  .app-download-title { font-size: 1.6rem; }
  .single-nav { flex-direction: column; gap: 12px; }
  .single-nav a { max-width: 100%; }
  .back-to-top { bottom: 160px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero { height: auto; min-height: 500px; padding: 120px 0 60px; }
  .section-title { font-size: 1.5rem; }
  .welcome-title { font-size: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .store-badge { height: 40px; }
  .float-btn { width: 52px; height: 52px; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  padding: 120px 0 64px;
  text-align: center;
  color: var(--white);
}

.page-hero .tag { background: rgba(255,255,255,0.15); color: var(--white); margin: 0 auto 16px; }
.page-hero-title { font-size: 2.4rem; font-weight: 900; margin-bottom: 12px; color: var(--white); }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.8); }
.page-hero .news-meta { color: rgba(255,255,255,0.75); margin-bottom: 16px; }
.page-hero .news-cat { background: rgba(255,255,255,0.2); color: var(--white); }

/* ===== ARCHIVE ===== */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.archive-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,82,168,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.archive-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.archive-card-img { display: block; overflow: hidden; aspect-ratio: 16/9; }
.archive-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.archive-card:hover .archive-card-img img { transform: scale(1.05); }
.archive-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--gray); }

.archive-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.archive-card-body h2 { font-size: 1.05rem; font-weight: 800; margin: 10px 0 10px; line-height: 1.4; }
.archive-card-body h2 a { color: var(--text); text-decoration: none; }
.archive-card-body h2 a:hover { color: var(--blue); }
.archive-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; flex: 1; }
.archive-read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--blue); font-weight: 700; font-size: 0.88rem; text-decoration: none; }
.archive-read-more:hover { gap: 10px; }

.archive-pagination { margin-top: 48px; display: flex; justify-content: center; }
.archive-pagination .nav-links { display: flex; gap: 8px; align-items: center; }
.archive-pagination .page-numbers {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(26,82,168,0.15);
  transition: all 0.2s;
}
.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ===== SINGLE POST ===== */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.single-content { min-width: 0; }

.single-thumbnail { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.single-thumbnail img { width: 100%; height: auto; display: block; }

.single-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}
.single-body h2, .single-body h3 { font-weight: 800; margin: 28px 0 12px; color: var(--text); }
.single-body p { margin-bottom: 18px; }
.single-body img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
.single-body a { color: var(--blue); }
.single-body ul, .single-body ol { padding-left: 24px; margin-bottom: 18px; }
.single-body li { margin-bottom: 6px; }
.single-body blockquote { border-left: 4px solid var(--blue); padding: 12px 20px; margin: 24px 0; background: var(--gray); border-radius: 0 8px 8px 0; color: var(--muted); font-style: italic; }

.single-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(26,82,168,0.1); }
.tag-item { background: var(--gray); color: var(--blue); padding: 4px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 700; text-decoration: none; }

.single-nav { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(26,82,168,0.1); gap: 16px; }
.single-nav a { color: var(--blue); font-weight: 700; font-size: 0.88rem; text-decoration: none; display: flex; align-items: center; gap: 6px; max-width: 45%; }
.single-nav a:hover { color: var(--blue-dark); }

.single-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget { background: var(--white); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); border: 1px solid rgba(26,82,168,0.06); }
.sidebar-title { font-size: 1rem; font-weight: 800; margin-bottom: 18px; color: var(--text); padding-bottom: 12px; border-bottom: 2px solid var(--blue); }

.sidebar-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(26,82,168,0.06); }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-img { width: 72px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-info a { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); text-decoration: none; line-height: 1.4; margin-bottom: 4px; }
.sidebar-post-info a:hover { color: var(--blue); }
.sidebar-post-info span { font-size: 0.78rem; color: var(--muted); }

/* ===== SINGLE POST — new components ===== */

/* Reading Progress Bar */
#reading-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--yellow);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Breadcrumbs */
.sp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.sp-breadcrumb a { color: var(--blue); text-decoration: none; }
.sp-breadcrumb a:hover { text-decoration: underline; }
.sp-breadcrumb-sep { color: #bbb; }
.sp-breadcrumb-current {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 260px;
}

/* Category badge pills */
.sp-cate-cards { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.sp-cate-card {
  display: inline-block;
  padding: 3px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
}
.sp-cate-card:hover { background: var(--blue-dark); }

/* Post title */
.sp-post-title {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 14px;
}

/* Post meta bar */
.sp-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.sp-meta-item { display: inline-flex; align-items: center; gap: 6px; }

/* Tag pills */
.sp-tag-pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.sp-tag-pill:hover { background: var(--blue); color: var(--white); }

/* Author */
.sp-author {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(26,82,168,0.1);
  font-size: 0.9rem;
  color: var(--muted);
}
.sp-author span { font-weight: 700; color: var(--text); }

/* Related news */
.sp-related { margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(26,82,168,0.1); }
.sp-related-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.sp-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sp-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,82,168,0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}
.sp-related-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.sp-related-thumb { position: relative; padding-top: 56.25%; overflow: hidden; background: var(--gray); }
.sp-related-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-related-img-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #dde4f0; }
.sp-related-info { padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sp-related-post-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sp-related-meta { font-size: 0.76rem; color: var(--muted); }

/* Most Viewed sidebar list */
.sp-mv-list { display: flex; flex-direction: column; gap: 14px; }
.sp-mv-item { display: flex; align-items: flex-start; gap: 10px; }
.sp-mv-rank {
  font-size: 1.1rem;
  font-weight: 900;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 3px;
}
.sp-mv-thumb {
  display: block;
  width: 72px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.sp-mv-img { width: 72px; height: 54px; object-fit: cover; display: block; }
.sp-mv-content { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sp-mv-title {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sp-mv-title:hover { color: var(--blue); }
.sp-mv-meta { font-size: 0.75rem; color: var(--muted); }

/* Sidebar ad banner */
.sp-sidebar-ad { border-radius: var(--radius); overflow: hidden; }
.sp-sidebar-ad img { width: 100%; display: block; }

/* Responsive */
@media (max-width: 768px) {
  .sp-related-grid { grid-template-columns: 1fr; }
  .sp-breadcrumb-current { max-width: 180px; }
}

/* ===== COMMENT FORM ===== */
#comment-respond {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(26,82,168,0.1);
}
.comment-reply-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}
.comment-notes,
.required-field-message {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comment-form-author,
.comment-form-email,
.comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.comment-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(26,82,168,0.18);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
  border-color: var(--blue);
}
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
}
.form-submit { margin-top: 4px; }
.form-submit .submit {
  display: inline-block;
  padding: 10px 28px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit .submit:hover { background: var(--blue-dark); }
