/* Brizzit Premium Website Stylesheet */
:root {
  --primary-teal: #0d9488;
  --primary-gradient: linear-gradient(135deg, #0d9488 0%, #059669 100%);
  --dark-bg: #090d16;
  --card-bg: rgba(17, 24, 39, 0.75);
  --border-color: rgba(13, 148, 136, 0.25);
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --accent-color: #34d399;
  --accent-glow: rgba(52, 211, 153, 0.15);
  --gold-color: #fbbf24;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--dark-bg);
  background-image: 
    radial-gradient(at 0% 0%, rgba(13, 148, 136, 0.18) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(5, 150, 105, 0.18) 0px, transparent 50%);
  color: var(--text-primary);
  line-height: 1.7;
  padding: 0;
  min-height: 100vh;
}

/* Header / Navigation */
header {
  backdrop-filter: blur(12px);
  background-color: rgba(9, 13, 22, 0.85);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.05rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-color);
}

/* Main Layout for legal pages */
.main-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .main-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sidebar {
    display: none;
  }
}

/* Sidebar Menu */
.sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0.75rem;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}

.sidebar-item a:hover, .sidebar-item.active a {
  color: var(--text-primary);
  border-left-color: var(--primary-teal);
  background-color: rgba(13, 148, 136, 0.08);
  padding-left: 1rem;
}

/* Document / Compliance Card */
.doc-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
  .doc-card {
    padding: 1.75rem;
  }
}

.doc-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.doc-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.06rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

@media (max-width: 600px) {
  .doc-title {
    font-size: 2rem;
  }
}

.doc-meta {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

/* Document Content */
.doc-section {
  scroll-margin-top: 100px;
  margin-bottom: 2.5rem;
}

.doc-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03rem;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.doc-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.doc-section p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.doc-section ul {
  list-style-type: none;
  margin-bottom: 1.25rem;
  padding-left: 0.5rem;
}

.doc-section li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.doc-section li::before {
  content: '✦';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* Callout Box */
.callout-box {
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid var(--primary-teal);
  padding: 1.5rem;
  border-radius: 0 16px 16px 0;
  margin: 2rem 0;
}

.callout-box p {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

/* Landing Page Specific (Hero, Features, Pricing) */
.hero-section {
  max-width: 1000px;
  margin: 6rem auto 4rem auto;
  text-align: center;
  padding: 0 2rem;
}

.hero-tagline {
  display: inline-block;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid var(--border-color);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px var(--accent-glow);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.08rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
}

/* Features Grid */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.05rem;
  margin-bottom: 3rem;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Billing Toggle */
.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 3rem 0;
}

.toggle-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-secondary);
}

.toggle-label.active {
  color: #fff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-color);
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--accent-color);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
}

input:checked + .slider {
  background-color: rgba(13, 148, 136, 0.2);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Pricing Grid */
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 6rem 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.15);
  transform: translateY(-4px);
}

.pricing-card.premium-tier {
  border-color: rgba(251, 191, 36, 0.4);
}

.pricing-card.premium-tier:hover {
  border-color: var(--gold-color);
  box-shadow: 0 15px 35px rgba(251, 191, 36, 0.15);
}

.pricing-card.popular {
  transform: scale(1.03);
  border-width: 2px;
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(13, 148, 136, 0.15);
}

@media (max-width: 900px) {
  .pricing-card.popular {
    transform: scale(1);
  }
}

.badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.badge.gold-badge {
  background: var(--gold-gradient);
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  height: 40px;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 0.25rem;
}

.price-subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: -1.75rem;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.features-list li {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.features-list li.disabled {
  color: rgba(255, 255, 255, 0.3);
}

.features-list li.disabled svg {
  color: rgba(255, 255, 255, 0.2);
}

.cta-button {
  width: 100%;
  background: var(--primary-gradient);
  border: none;
  border-radius: 12px;
  color: #fff;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
}

.cta-button:hover {
  opacity: 0.9;
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

.cta-button.gold-btn {
  background: var(--gold-gradient);
}

.cta-button.gold-btn:hover {
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* Contact Us Grid & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid var(--border-color);
  color: var(--accent-color);
  padding: 0.75rem;
  border-radius: 12px;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-details h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.info-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input, .form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.85rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
footer {
  background-color: rgba(9, 13, 22, 0.95);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 3rem 2rem;
  margin-top: 6rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand .logo-container {
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-links-group {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-links-group {
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
  }
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.85rem;
}
