/* Hero Section */
.hth-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(2rem, 5vw, 3rem);
  overflow: hidden;
  margin-top: 0;
}

/* Animated Background Container */
.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(74, 93, 69, 0.8) 0%,
      rgba(74, 93, 69, 0) 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(74, 93, 69, 0.7) 0%,
      rgba(74, 93, 69, 0) 70%
    ),
    radial-gradient(
      ellipse at 50% 80%,
      rgba(74, 93, 69, 0.6) 0%,
      rgba(74, 93, 69, 0) 65%
    ),
    linear-gradient(135deg, #2f3a2d 0%, #4a5d45 100%);
  background-blend-mode: overlay, screen, hard-light;
  overflow: hidden;
  animation: aurora-drift 25s infinite alternate ease-in-out;
  z-index: 0;
}

.hero-bg-container::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02) 0px,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 60px
    );
  animation: grid-shift 20s linear infinite;
}

.hero-bg-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  animation: aurora-pulse 8s infinite alternate;
}

@keyframes aurora-drift {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%;
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    background-position: -10% -5%, 5% 10%, 0% 15%;
    filter: hue-rotate(15deg) brightness(1.1);
  }
  100% {
    background-position: 5% 10%, -10% -5%, 15% 0%;
    filter: hue-rotate(30deg) brightness(1);
  }
}

@keyframes grid-shift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes aurora-pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* Hero Content */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 850px;
  margin: 0 auto;
}

.hero-content-wrapper h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content-wrapper p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.8rem;
  background: #ffffff;
  color: #4a5d45;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  font-family: var(--font-accent);
}

.hero-link:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hth-hero {
    min-height: 100vh;
  }

  .hero-content-wrapper h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  }
}

@media (max-width: 640px) {
  .hth-hero {
    min-height: 100vh;
    padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2rem);
  }

  .hero-content-wrapper h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-content-wrapper p {
    font-size: 1rem;
  }

  .hero-link {
    font-size: 0.85rem;
    padding: 1rem 2.2rem;
  }
}

@media (max-width: 480px) {
  .hth-hero {
    min-height: 100vh;
    padding: 2.5rem 1.5rem;
  }

  .hero-content-wrapper h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .hero-link {
    font-size: 0.8rem;
    padding: 0.9rem 2rem;
  }
}

/* What is HTH Section */
.what-is-hth {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg);
}

.what-is-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.what-is-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.what-is-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(33, 36, 26, 0.15));
}

.what-is-copy {
  display: grid;
  gap: 1.5rem;
}

.what-is-copy .section-title {
  margin: 0;
  line-height: 1.2;
}

.what-is-copy p {
  color: rgba(31, 32, 24, 0.75);
  text-align: justify;
  line-height: 1.75;
  margin: 0;
  font-size: 1rem;
}

.what-is-copy p:first-of-type {
  font-size: 1.1rem;
  color: rgba(31, 32, 24, 0.85);
  font-weight: 500;
}

@media (max-width: 900px) {
  .what-is-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .what-is-image {
    order: -1;
  }

  .what-is-image img {
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .what-is-image img {
    max-width: 250px;
  }

  .what-is-copy p:first-of-type {
    font-size: 1.05rem;
  }
}

.p-FAQ {
  text-align: center;
  text-shadow: #2f3a2d;
  font-style: italic;
  margin-top: 0;
}

/* Strategy Section */
.strategy-section {
  border-radius: var(--radius-md);
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.strategy-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  box-shadow: 0 4px 20px rgba(33, 36, 26, 0.08);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
  position: relative;
}

.strategy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(33, 36, 26, 0.15);
}

.strategy-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(200, 182, 142, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.strategy-icon img {
  width: 50px;
  height: 50px;
}

.strategy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0;
}

.strategy-card p {
  color: rgba(31, 32, 24, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Timeline Section */
.timeline-section {
  background: var(--color-surface-alt);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.timeline {
  max-width: 900px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  position: relative;
  padding-left: 70px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 25px;
  bottom: 25px;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--color-primary) 0%,
    var(--color-secondary) 50%,
    var(--color-accent) 100%
  );
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -54px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 4px solid var(--color-surface-alt);
  box-shadow: 0 0 0 4px var(--color-primary);
  z-index: 2;
}

.timeline-content {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.2rem 2.5rem;
  box-shadow: 0 4px 20px rgba(33, 36, 26, 0.1);
  transition: transform var(--transition-base),
    box-shadow var(--transition-base);
}

.timeline-content:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(33, 36, 26, 0.15);
}

.timeline-phase {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  background: rgba(200, 182, 142, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin: 0 0 1rem;
  font-weight: 700;
}

.timeline-content p {
  color: rgba(31, 32, 24, 0.75);
  text-align: justify;
  line-height: 1.75;
  margin: 0;
}

.timeline-footer {
  margin-top: 3rem;
  text-align: center;
  background: #4A5D45;
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  box-shadow: 0 4px 20px rgba(33, 36, 26, 0.1);
}

.timeline-footer p {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

.guide-section {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.guide-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.guide-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.guide-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.guide-info {
  display: grid;
  gap: 1.3rem;
}

.guide-info .badge {
  background: rgba(250, 249, 242, 0.15);
  color: var(--color-accent);
}

.guide-info .section-title {
  color: var(--color-text-light);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}

.guide-subtitle {
  font-size: 1.15rem;
  color: var(--color-accent);
  font-weight: 600;
  margin: -0.5rem 0 0.5rem;
  letter-spacing: 0.02em;
}

.guide-info p {
  color: rgba(250, 249, 242, 0.88);
  text-align: justify;
  line-height: 1.75;
  font-size: 1rem;
  margin: 0;
}

.guide-stats {
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 249, 242, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(250, 249, 242, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.8rem;
  display: block;
}

/* Why Section */
.why-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--color-bg);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.why-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 150px);
  gap: 1.5rem;
  position: relative;
}

.why-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(33, 36, 26, 0.15);
}

.why-img-2 {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(33, 36, 26, 0.15);
}

.why-copy {
  display: grid;
  gap: 1.5rem;
}

.why-copy .section-title {
  margin: 0;
  line-height: 1.2;
}

.why-copy > p {
  color: rgba(31, 32, 24, 0.75);
  text-align: justify;
  line-height: 1.7;
  margin: 0;
}

.why-list {
  display: grid;
  text-align: justify;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.why-list li {
  display: grid;
  gap: 0.6rem;
  padding-left: 3rem;
  position: relative;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.why-list strong {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.05rem;
  display: block;
}

.why-list p {
  margin: 0;
  color: rgba(31, 32, 24, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* FAQ Section */
.faq-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--color-bg);
}

.faq-section .section-title {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 1.2rem;
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(33, 36, 26, 0.08);
  overflow: hidden;
  border: 1px solid rgba(87, 89, 69, 0.08);
  transition: box-shadow var(--transition-base);
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(33, 36, 26, 0.12);
}

.faq-item summary {
  padding: 2rem 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  list-style: none;
  user-select: none;
  transition: background var(--transition-base);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: rgba(87, 89, 69, 0.03);
}

.faq-item[open] summary {
  background: rgba(87, 89, 69, 0.05);
  border-bottom: 1px solid rgba(87, 89, 69, 0.1);
}

.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition-base),
    background var(--transition-base);
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: var(--color-accent);
}

.faq-item p {
  padding: 1.5rem 2.5rem 2rem;
  color: rgba(31, 32, 24, 0.75);
  line-height: 1.75;
  margin: 0;
  font-size: 0.97rem;
}

/* CTA Section */
.cta-section {
  position: relative;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: url("../assets/images/form.png") center/cover no-repeat;
  color: var(--color-text-light);
  padding: clamp(5rem, 10vw, 7rem) 0;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 29, 20, 0.6);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  display: grid;
  gap: 1.8rem;
}

.cta-content .section-title {
  color: var(--color-text-light);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
}

.cta-content p {
  color: rgba(250, 249, 242, 0.92);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}

.cta-content .btn {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-content {
    grid-template-columns: 280px 1fr;
    gap: 3rem;
  }

  .guide-image {
    position: static;
  }

  .guide-stats {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .hth-hero {
    padding: clamp(5rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  }

  .strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .guide-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .guide-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .guide-stats {
    justify-content: center;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-images {
    max-width: 500px;
    margin: 0 auto;
    grid-template-rows: repeat(3, 140px);
  }

  .timeline {
    padding-left: 55px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-marker {
    left: -44px;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 640px) {
  .hth-hero h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hth-hero p {
    font-size: 0.95rem;
  }

  .strategy-section {
    padding: clamp(2.5rem, 6vw, 3rem) clamp(1.5rem, 4vw, 2rem);
  }

  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .strategy-card {
    padding: 2.2rem 1.8rem;
  }

  .timeline {
    padding-left: 45px;
  }

  .timeline::before {
    left: 15px;
    width: 2px;
  }

  .timeline-marker {
    left: -36px;
    width: 16px;
    height: 16px;
  }

  .timeline-content {
    padding: 1.8rem 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.3rem;
  }

  .timeline-footer {
    padding: 1.5rem 1.2rem;
  }

  .timeline-footer p {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .guide-stats {
    gap: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .why-images {
    grid-template-rows: repeat(3, 120px);
  }

  .faq-item summary {
    padding: 1.5rem 1.5rem;
  }

  .faq-item h3 {
    font-size: 0.98rem;
  }

  .faq-item p {
    padding: 1.2rem 1.5rem 1.5rem;
    font-size: 0.93rem;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
    font-size: 1.4rem;
  }

  .cta-content {
    gap: 1.5rem;
  }

  .cta-content p {
    font-size: 0.98rem;
  }
}
