:root {
  --color-bg: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --font-family:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 16px;
  --sp: 8px;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}



/* Header Layout */
.site-header {
  background: transparent;
  border-bottom: 1px solid rgba(107, 114, 128, 0.2);
  padding: calc(var(--sp) * 2) calc(var(--sp) * 4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: calc(var(--sp) * 1.5);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.desktop-nav {
  display: flex;
  gap: calc(var(--sp) * 4);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: var(--sp);
}

.burger-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Nav (Bottom Menu) */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg);
  border-top: 1px solid rgba(107, 114, 128, 0.2);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: calc(var(--sp) * 4);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(17, 24, 39, 0.08);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-nav.is-open {
  transform: translateY(0);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--sp) * 3);
  width: 100%;
}

.mobile-nav-inner a {
  font-size: 1.25rem;
  padding: calc(var(--sp) * 1);
}

.close-btn {
  background: var(--color-text);
  color: var(--color-bg);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: calc(var(--sp) * 3);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.15);
}

.close-btn svg {
  width: 20px;
  height: 20px;
}

/* Footer Layout (Centered Stack) */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid rgba(107, 114, 128, 0.2);
  padding: calc(var(--sp) * 8) calc(var(--sp) * 4);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: calc(var(--sp) * 5);
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: calc(var(--sp) * 1);
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tagline {
  color: var(--color-muted);
  font-weight: 500;
  margin: 0;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: calc(var(--sp) * 1.5);
  padding: calc(var(--sp) * 1.5) calc(var(--sp) * 3);
  border-radius: var(--radius);
  background: rgba(107, 114, 128, 0.05);
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: calc(var(--sp) * 3);
  justify-content: center;
}

.footer-links a {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.footer-copyright {
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .burger-btn {
    display: block;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */

.asddasd {
  width: 100%;
  max-width: 550px;
}

/* ============================================
   TERMS & CONDITIONS STYLES
   TowerAdvisory - Business Consulting Theme
   Color scheme: #111827, #3B82F6, #F9FAFB
   ============================================ */

/* Card Wrapper */
.card-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
}

/* Soft Shadow */
.soft-shadow {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease;
}

.soft-shadow:hover {
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

/* Radius Squircle */
.radius-squircle {
  border-radius: 28px;
}

/* Background White */
.bg-white {
  background-color: #ffffff;
}

/* Padding 8pt (32px) */
.p-eightpt {
  padding: 32px;
}

/* Accent Links */
.accent-links a {
  color: #3B82F6;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.accent-links a:hover {
  color: #2563EB;
  border-bottom-color: #3B82F6;
}

/* Typography */
.card-wrapper h1 {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: #111827;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.card-wrapper .last-updated {
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}

.card-wrapper h2 {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  margin-top: 28px;
  margin-bottom: 14px;
  position: relative;
  padding-left: 0;
}

.card-wrapper h2:first-of-type {
  margin-top: 0;
}

.card-wrapper p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 16px;
}

.card-wrapper p:last-child {
  margin-bottom: 0;
}

/* List Styles */
.card-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px 0;
  background-color: #F9FAFB;
  border-radius: 20px;
  padding: 20px 24px;
  border: 1px solid #E5E7EB;
}

.card-wrapper ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.card-wrapper ul li:last-child {
  margin-bottom: 0;
}

.card-wrapper ul li strong {
  color: #111827;
  font-weight: 600;
  min-width: 70px;
  display: inline-block;
}

/* Links in list */
.card-wrapper ul li a {
  color: #3B82F6;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-all;
}

.card-wrapper ul li a:hover {
  color: #2563EB;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .p-eightpt {
    padding: 24px;
  }
  
  .card-wrapper h1 {
    font-size: 1.8rem;
  }
  
  .card-wrapper h2 {
    font-size: 1.25rem;
    margin-top: 24px;
  }
  
  .card-wrapper p,
  .card-wrapper ul li {
    font-size: 0.9rem;
  }
  
  .card-wrapper ul {
    padding: 16px 20px;
  }
  
  .card-wrapper ul li {
    flex-direction: column;
    gap: 4px;
  }
  
  .card-wrapper ul li strong {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .p-eightpt {
    padding: 20px;
  }
  
  .radius-squircle {
    border-radius: 20px;
  }
  
  .card-wrapper h1 {
    font-size: 1.5rem;
  }
  
  .card-wrapper h2 {
    font-size: 1.15rem;
  }
  
  .card-wrapper .last-updated {
    font-size: 0.75rem;
    margin-bottom: 24px;
  }
}