/*
Theme Name: HybridTax
Theme URI: https://hybridtax.ca
Author: Abdiaziz Abdirahman
Author URI: https://hybridtax.ca
Description: A professional cloud-based accounting and tax services WordPress theme. Features sections for services, pricing, testimonials, and contact — designed for Canadian accounting firms.
Version: 1.0.0
License: Copyrighted
License URI: https://hybridtax.ca
Text Domain: hybridtax
Tags: one-page, business, accounting, custom-menu, custom-logo, featured-images
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ===== CSS Custom Properties ===== */
:root {
  --ht-primary: #228b22;
  --ht-primary-fg: #f5f3ef;
  --ht-accent: #0d9488;
  --ht-accent-hover: #0f766e;
  --ht-accent-light: rgba(13, 148, 136, 0.1);
  --ht-accent-light-hover: rgba(13, 148, 136, 0.2);
  --ht-background: #f5f3ef;
  --ht-card: #f5f3ef;
  --ht-foreground: #228b22;
  --ht-muted: #4b0082;
  --ht-border: #e5e2dc;
  --ht-secondary-bg: #edebe6;
  --ht-radius: 0.625rem;
  --ht-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ht-font-serif: 'Playfair Display', Georgia, serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ht-font-sans);
  color: var(--ht-foreground);
  background-color: var(--ht-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ht-font-serif);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* ===== Utility ===== */
.ht-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ht-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.ht-section-header {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ht-section-label {
  font-family: var(--ht-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ht-accent);
}

.ht-section-title {
  margin-top: 0.75rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--ht-foreground);
}

.ht-section-desc {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ht-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== Buttons ===== */
.ht-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--ht-font-sans);
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--ht-radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.5;
}

.ht-btn-primary {
  background-color: var(--ht-primary);
  color: var(--ht-primary-fg);
}
.ht-btn-primary:hover {
  opacity: 0.9;
}

.ht-btn-secondary {
  background-color: var(--ht-secondary-bg);
  color: var(--ht-foreground);
}
.ht-btn-secondary:hover {
  background-color: var(--ht-border);
}

.ht-btn-outline {
  background-color: transparent;
  color: var(--ht-primary-fg);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.ht-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.ht-btn-outline-dark {
  background-color: transparent;
  color: var(--ht-foreground);
  border: 1px solid var(--ht-border);
}
.ht-btn-outline-dark:hover {
  background-color: var(--ht-secondary-bg);
}

.ht-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.ht-btn-full {
  width: 100%;
}

/* ===== Cards ===== */
.ht-card {
  background-color: var(--ht-card);
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.ht-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
}

/* ===== Icon Box ===== */
.ht-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: var(--ht-accent-light);
  flex-shrink: 0;
}
.ht-icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ht-accent);
}
.ht-icon-box-sm {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
}
.ht-icon-box-sm svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== Navigation ===== */
.ht-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ht-border);
}

.ht-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.ht-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ht-nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: var(--ht-primary);
  color: var(--ht-primary-fg);
  font-size: 0.875rem;
  font-weight: 700;
}

.ht-nav-logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-family: var(--ht-font-sans);
}
.ht-nav-logo-text .accent {
  color: var(--ht-accent);
}

.ht-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.ht-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ht-muted);
  transition: color 0.2s;
}
.ht-nav-links a:hover {
  color: var(--ht-foreground);
}

.ht-nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.ht-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ht-muted);
  transition: color 0.2s;
}
.ht-nav-phone:hover {
  color: var(--ht-foreground);
}
.ht-nav-phone svg {
  width: 1rem;
  height: 1rem;
}

.ht-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ht-foreground);
}
.ht-mobile-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ht-mobile-menu {
  display: none;
  border-top: 1px solid var(--ht-border);
  background-color: var(--ht-card);
  padding: 1rem 1.5rem;
}
.ht-mobile-menu.is-open {
  display: block;
}
.ht-mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ht-muted);
  transition: color 0.2s;
}
.ht-mobile-menu a:hover {
  color: var(--ht-foreground);
}

@media (min-width: 1024px) {
  .ht-nav-links {
    display: flex;
  }
  .ht-nav-actions {
    display: flex;
  }
  .ht-mobile-toggle {
    display: none;
  }
}

/* ===== Hero ===== */
.ht-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--ht-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-hero-bg {
  position: absolute;
  inset: 0;
}
.ht-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.ht-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 46, 0.6);
}

.ht-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.ht-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}
.ht-hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--ht-accent);
}
.ht-hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.ht-hero h1 {
  max-width: 56rem;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  color: var(--ht-primary-fg);
  line-height: 1.1;
}

.ht-hero-desc {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.ht-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.ht-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}


.ht-hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--ht-background), transparent);
}

@media (min-width: 640px) {
  .ht-hero-actions {
    flex-direction: row;
  }
  .ht-hero-highlights {
    gap: 3rem;
 .ht-hero-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ht-hero-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(13, 148, 136, 0.2);
}
.ht-hero-highlight-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ht-accent);
}

.ht-hero-highlight span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== Stats ===== */
.ht-stats {
  border-top: 1px solid var(--ht-border);
  border-bottom: 1px solid var(--ht-border);
  background-color: var(--ht-card);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ht-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.ht-stat-value {
  font-family: var(--ht-font-serif);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ht-accent);
}

.ht-stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ht-muted);
}

@media (min-width: 1024px) {
  .ht-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Services ===== */
.ht-services {
  background-color: var(--ht-background);
}

.ht-services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.ht-service-card {
  padding: 1.5rem;
}
.ht-service-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.ht-service-card .ht-icon-box {
  margin-bottom: 0.75rem;
}

.ht-service-card h3 {
  font-family: var(--ht-font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ht-foreground);
  margin-bottom: 0.5rem;
}

.ht-service-card p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ht-muted);
}

@media (min-width: 768px) {
  .ht-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ht-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Value / About ===== */
.ht-value {
  background-color: var(--ht-secondary-bg);
}

.ht-value-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.ht-value-text h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
}

.ht-value-text p {
  margin-top: 1rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ht-muted);
}
.ht-value-text p:first-of-type {
  font-size: 1.125rem;
}

.ht-value-cards {
  display: grid;
  gap: 1.5rem;
}

.ht-value-card {
  padding: 1.5rem;
}

.ht-value-card .ht-icon-box-sm {
  margin-bottom: 1rem;
}

.ht-value-card h3 {
  font-family: var(--ht-font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ht-foreground);
}

.ht-value-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ht-muted);
}

@media (min-width: 640px) {
  .ht-value-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ht-value-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Pricing ===== */
.ht-pricing {
  background-color: var(--ht-background);
}

.ht-pricing-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.ht-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.ht-pricing-card.is-popular {
  border-color: var(--ht-accent);
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.12);
}

.ht-pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background-color: var(--ht-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.ht-pricing-header {
  padding: 1.5rem 1.5rem 0;
}

.ht-pricing-name {
  font-family: var(--ht-font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ht-foreground);
}

.ht-pricing-price {
  font-family: var(--ht-font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ht-foreground);
  margin-top: 0.5rem;
}

.ht-pricing-desc {
  font-size: 0.875rem;
  color: var(--ht-muted);
}

.ht-pricing-features {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ht-pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.ht-pricing-feature svg {
  width: 1rem;
  height: 1rem;
  color: var(--ht-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.ht-pricing-feature span {
  font-size: 0.875rem;
  color: var(--ht-muted);
}

.ht-pricing-footer {
  padding: 0 1.5rem 1.5rem;
}

@media (min-width: 768px) {
  .ht-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ht-pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Testimonials ===== */
.ht-testimonials {
  background-color: var(--ht-secondary-bg);
}

.ht-testimonials-grid {
  display: none;
  gap: 1.5rem;
  margin-top: 4rem;
}

.ht-testimonials-mobile {
  margin-top: 4rem;
}

.ht-testimonial-card {
  padding: 1.5rem;
}

.ht-testimonial-quote {
  color: rgba(13, 148, 136, 0.3);
  margin-bottom: 1rem;
}
.ht-testimonial-quote svg {
  width: 2rem;
  height: 2rem;
}

.ht-testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.ht-testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  color: var(--ht-accent);
  fill: var(--ht-accent);
}

.ht-testimonial-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ht-muted);
}

.ht-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ht-testimonial-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--ht-primary);
  color: var(--ht-primary-fg);
  font-size: 0.875rem;
  font-weight: 700;
}

.ht-testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ht-foreground);
}

.ht-testimonial-author-role {
  font-size: 0.75rem;
  color: var(--ht-muted);
}

.ht-testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ht-testimonials-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--ht-border);
  background-color: var(--ht-card);
  color: var(--ht-foreground);
  cursor: pointer;
  transition: background-color 0.2s;
}
.ht-testimonials-nav-btn:hover {
  background-color: var(--ht-secondary-bg);
}
.ht-testimonials-nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ht-testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.ht-testimonials-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--ht-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}
.ht-testimonials-dot.is-active {
  background-color: var(--ht-accent);
}

@media (min-width: 1024px) {
  .ht-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .ht-testimonials-mobile {
    display: none;
  }
}

/* ===== CTA ===== */
.ht-cta {
  background-color: var(--ht-primary);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.ht-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.ht-cta h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  color: var(--ht-primary-fg);
}

.ht-cta p {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.ht-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .ht-cta-actions {
    flex-direction: row;
  }
}

/* ===== Contact ===== */
.ht-contact {
  background-color: var(--ht-background);
}

.ht-contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 4rem;
}

.ht-form-card {
  padding: 2rem;
}

.ht-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ht-form-row {
  display: grid;
  gap: 1.5rem;
}

.ht-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ht-form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ht-foreground);
}

.ht-form-group input,
.ht-form-group textarea {
  font-family: var(--ht-font-sans);
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--ht-border);
  border-radius: var(--ht-radius);
  background-color: var(--ht-card);
  color: var(--ht-foreground);
  transition: border-color 0.2s;
  outline: none;
}
.ht-form-group input:focus,
.ht-form-group textarea:focus {
  border-color: var(--ht-accent);
  box-shadow: 0 0 0 2px var(--ht-accent-light);
}
.ht-form-group input::placeholder,
.ht-form-group textarea::placeholder {
  color: var(--ht-muted);
}

.ht-form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.ht-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  text-align: center;
}

.ht-form-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--ht-accent-light);
  margin-bottom: 1rem;
}
.ht-form-success-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--ht-accent);
}

.ht-form-success h3 {
  font-size: 1.25rem;
  color: var(--ht-foreground);
}
.ht-form-success p {
  margin-top: 0.5rem;
  color: var(--ht-muted);
}

.ht-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ht-contact-image {
  border-radius: 0.75rem;
  overflow: hidden;
}
.ht-contact-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.ht-contact-team h3 {
  font-size: 1.25rem;
  color: var(--ht-foreground);
}
.ht-contact-team p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ht-muted);
}

.ht-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ht-contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ht-contact-info-item .ht-icon-box-sm svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ht-contact-info-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ht-muted);
}

.ht-contact-info-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ht-foreground);
}

@media (min-width: 640px) {
  .ht-form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ht-contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

/* ===== Footer ===== */
.ht-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--ht-primary);
  color: var(--ht-primary-fg);
}

.ht-footer-grid {
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.ht-footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

.ht-footer-col h4 {
  font-family: var(--ht-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ht-footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ht-footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.ht-footer-col ul a:hover {
  color: #fff;
}

.ht-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.ht-footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.ht-footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: var(--ht-primary-fg);
  color: var(--ht-primary);
  font-size: 0.875rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .ht-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ht-footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .ht-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
