/* ============================================
   BizTech Anchor — Global Stylesheet
   ============================================ */

/* —— CSS Reset —— */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #0F172A;
  background-color: #F8FAFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* —— Typography —— */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0F172A;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: #475569;
}

a {
  color: #0F172A;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #D4AF37;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: #475569;
}

/* —— Layout Utilities —— */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-padding-sm {
  padding: 3rem 0;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.logo-part-a {
  color: #0F172A;
}

.logo-part-b {
  color: #D4AF37;
}

/* —— Navigation —— */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0F172A;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #D4AF37;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #D4AF37;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background-color: #B8962F;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* —— Mobile Menu Toggle —— */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #0F172A;
  transition: all 0.3s ease;
}

/* —— Hero Section —— */
.hero-wrap {
  background-color: #0F172A;
  padding: 10rem 0 6rem;
  position: relative;
}

.hero-content {
  max-width: 800px;
}

.hero-accent {
  width: 60px;
  height: 3px;
  background-color: #D4AF37;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 640px;
}

.hero-cta {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #D4AF37;
  color: #FFFFFF;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.hero-cta:hover {
  background-color: #B8962F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* —— Stats Ticker —— */
.stats-ticker {
  background-color: #0F172A;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem 0;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

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

.stat-value {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #D4AF37;
}

.stat-label {
  font-size: 0.875rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}

/* —— Cards —— */
.info-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: #D4AF37;
}

.card-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

/* —— Section Headers —— */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-accent {
  width: 40px;
  height: 3px;
  background-color: #D4AF37;
  margin: 0 auto 1rem;
  display: block;
}

.section-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  max-width: 640px;
  margin: 0 auto;
}

/* —— Grid Layouts —— */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

/* —— Service Block —— */
.service-block {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-block h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 1rem;
}

.service-block p {
  color: #475569;
  margin-bottom: 1rem;
}

.service-meta {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background-color: #F1F5F9;
  border-radius: 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 1rem;
}

/* —— Quote Block —— */
.quote-block {
  background-color: #FFFFFF;
  border-left: 4px solid #D4AF37;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
}

.quote-text {
  font-size: 1.0625rem;
  font-style: italic;
  color: #475569;
  margin-bottom: 0.75rem;
}

.quote-author {
  font-weight: 600;
  color: #0F172A;
  font-size: 0.9375rem;
}

.quote-role {
  font-size: 0.8125rem;
  color: #94A3B8;
}

/* —— Pricing Card —— */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #D4AF37;
}

.pricing-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.pricing-range {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 1rem;
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.9375rem;
  color: #475569;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* —— Form Styles —— */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #E2E8F0;
  border-radius: 4px;
  background-color: #FFFFFF;
  font-size: 0.9375rem;
  color: #0F172A;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.act-btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background-color: #D4AF37;
  color: #FFFFFF;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.act-btn:hover {
  background-color: #B8962F;
  transform: translateY(-2px);
}

/* —— Contact Layout —— */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.contact-sidebar {
  background-color: #0F172A;
  padding: 2.5rem;
  border-radius: 6px;
  height: fit-content;
}

.contact-sidebar h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 0.9375rem;
  color: #CBD5E1;
}

.contact-detail-value a {
  color: #D4AF37;
  text-decoration: none;
}

.contact-detail-value a:hover {
  color: #E8C547;
}

/* —— Footer —— */
.site-footer {
  background-color: #0F172A;
  border-top: 2px solid #D4AF37;
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.875rem;
  max-width: 320px;
}

.footer-heading {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #CBD5E1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #D4AF37;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: #64748B;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #D4AF37;
}

/* —— Cookie Banner —— */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: #0F172A;
  border-top: 1px solid #1E293B;
  padding: 1.25rem 0;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.875rem;
  color: #CBD5E1;
  flex: 1;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.cookie-btn-accept {
  background-color: #D4AF37;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #B8962F;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #94A3B8;
  border: 1px solid #334155;
}

.cookie-btn-decline:hover {
  background-color: #1E293B;
  color: #CBD5E1;
}

/* —— Page Header —— */
.page-header {
  background-color: #0F172A;
  padding: 8rem 0 4rem;
}

.page-header .hero-accent {
  margin-bottom: 1rem;
}

.page-header h1 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: #94A3B8;
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* —— Breadcrumbs —— */
.breadcrumbs {
  padding: 1rem 0;
  background-color: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
}

.breadcrumbs-inner {
  font-size: 0.8125rem;
  color: #64748B;
}

.breadcrumbs-inner a {
  color: #475569;
  text-decoration: none;
}

.breadcrumbs-inner a:hover {
  color: #D4AF37;
}

.breadcrumbs-sep {
  margin: 0 0.5rem;
  color: #94A3B8;
}

/* —— Legal Content —— */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

.legal-date {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #F1F5F9;
  border-radius: 4px;
  font-size: 0.8125rem;
  color: #475569;
  margin-bottom: 2rem;
}

/* —— Thanks Page —— */
.thanks-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 0;
}

.thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #D4AF37;
}

.thanks-wrap h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thanks-wrap p {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

/* —— Team Section —— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 2rem;
}

.team-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: #D4AF37;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .three-col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.05);
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  .three-col-grid,
  .two-col-grid,
  .pricing-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-inner {
    gap: 2rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* —— Utility Classes —— */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }
.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;
}
