/* AnHonestHost Section Layouts */

/* ========== Hero Section ========== */
.anhh-hero {
  display: flex;
  align-items: center;
  padding: var(--anhh-space-4xl) var(--anhh-space-2xl) 80px;
  max-width: var(--anhh-max-width);
  margin: 0 auto;
  gap: 60px;
}

.anhh-hero-content {
  flex: 1;
}

.anhh-hero-visual {
  flex: 1;
}

.anhh-hero h1 {
  margin-bottom: 20px;
}

.anhh-hero p {
  font-size: var(--anhh-font-size-md);
  margin-bottom: var(--anhh-space-xl);
  max-width: 460px;
}

.anhh-hero-buttons {
  display: flex;
  gap: 12px;
}

/* ========== Features Section ========== */
.anhh-features {
  padding: var(--anhh-space-4xl) var(--anhh-space-2xl);
  max-width: var(--anhh-max-width);
  margin: 0 auto;
}

.anhh-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.anhh-features .anhh-card h3 {
  margin-bottom: 10px;
}

.anhh-features .anhh-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ========== Pricing Section ========== */
.anhh-pricing {
  padding: var(--anhh-space-4xl) var(--anhh-space-2xl);
  max-width: var(--anhh-max-width);
  margin: 0 auto;
  text-align: center;
}

.anhh-pricing .anhh-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.anhh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* ========== Honesty Section ========== */
.anhh-honesty {
  padding: var(--anhh-space-4xl) var(--anhh-space-2xl);
  max-width: var(--anhh-max-width);
  margin: 0 auto;
}

.anhh-honesty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--anhh-space-3xl);
  align-items: center;
}

.anhh-honesty h2 {
  margin-bottom: 18px;
}

.anhh-honesty p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.anhh-honesty-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}

.anhh-honesty-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: var(--anhh-font-size-base);
  color: var(--anhh-text-secondary);
}

.anhh-honesty-icon {
  color: var(--anhh-accent);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== Footer ========== */
.anhh-footer {
  border-top: 1px solid var(--anhh-border-color);
  padding: 56px var(--anhh-space-2xl);
  margin-top: 40px;
}

.anhh-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--anhh-space-2xl);
  max-width: var(--anhh-max-width);
  margin: 0 auto;
}

.anhh-footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--anhh-text-primary);
}

.anhh-footer-logo {
  height: 24px;
  width: auto;
}

.anhh-footer-desc {
  color: var(--anhh-text-muted);
  font-size: var(--anhh-font-size-sm);
  line-height: 1.6;
}

.anhh-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--anhh-text-muted);
  margin-bottom: 18px;
}

.anhh-footer-col a {
  display: block;
  color: var(--anhh-text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color var(--anhh-transition-base);
}

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

.anhh-footer-bottom {
  max-width: var(--anhh-max-width);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--anhh-border-color);
  display: flex;
  justify-content: space-between;
  color: var(--anhh-text-muted);
  font-size: 12px;
}
