body.subpage {
  background: #0d0d0d;
  color: #fff;
}

.subpage-hero {
  padding: 140px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.subpage-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.subpage-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.subpage-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.subpage-section {
  margin-bottom: 48px;
}

.subpage-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.subpage-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin: 0 0 12px;
}

.subpage-section a {
  color: #10b981;
  text-decoration: none;
}

.subpage-section a:hover {
  text-decoration: underline;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.value-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}

.value-card:hover {
  border-color: rgba(16,185,129,0.3);
}

.value-card .value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16,185,129,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #10b981;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

.search-bar {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.search-bar svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
}

.search-bar input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.search-bar input::placeholder {
  color: rgba(255,255,255,0.3);
}

.search-bar input:focus {
  border-color: #10b981;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #141414;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #10b981;
}

.faq-question .faq-toggle {
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: transform 0.2s;
}

.faq-item.active .faq-question .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

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

.blog-placeholder {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-placeholder:hover {
  border-color: rgba(16,185,129,0.3);
  transform: translateY(-2px);
}

.blog-placeholder .blog-img {
  height: 160px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-placeholder .blog-badge {
  background: rgba(16,185,129,0.15);
  color: #10b981;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-placeholder .blog-body {
  padding: 20px;
}

.blog-placeholder h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.blog-placeholder p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0 0 14px;
}

.blog-placeholder .blog-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  cursor: default;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #10b981;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form select option {
  background: #1a1a1a;
  color: #fff;
}

.contact-form .form-submit {
  width: 100%;
  padding: 14px;
  background: #10b981;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form .form-submit:hover {
  background: #0ea472;
}

.contact-form .form-success {
  text-align: center;
  padding: 24px 0;
}

.contact-form .form-success svg {
  color: #10b981;
  margin-bottom: 12px;
}

.contact-form .form-success h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 6px;
}

.contact-form .form-success p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 0;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-sidebar .sidebar-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
}

.contact-sidebar .sidebar-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(16,185,129,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  margin-bottom: 12px;
}

.contact-sidebar .sidebar-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.contact-sidebar .sidebar-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

.contact-sidebar .sidebar-card a {
  color: #10b981;
  text-decoration: none;
  font-size: 0.85rem;
}

.contact-sidebar .sidebar-card a:hover {
  text-decoration: underline;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-content a {
  color: #10b981;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-disclaimer {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.legal-disclaimer p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.7;
}

.legal-disclaimer strong {
  color: #10b981;
}

@media (max-width: 768px) {
  .subpage-hero {
    padding: 120px 20px 40px;
  }

  .subpage-hero h1 {
    font-size: 2rem;
  }

  .subpage-content {
    padding: 40px 20px 60px;
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .subpage-section h2 {
    font-size: 1.3rem;
  }
}
