/* VowHarbor global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f8f5f3;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  background: #ffffff80;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #8b5e6b;
}
.logo span {
  color: #1f2937;
}
.nav-menu {
  display: flex;
  gap: 20px;
  font-weight: 500;
}
.nav-menu a:hover {
  text-decoration: underline;
}
.hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8e7ea, #f3ede6);
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1f2937;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #4b5563;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn.primary {
  background: #8b5e6b;
  color: white;
}
.btn.primary:hover {
  background: #734f5a;
}
.btn.secondary {
  border: 2px solid #8b5e6b;
  color: #8b5e6b;
}
.btn.secondary:hover {
  background: #8b5e6b;
  color: white;
}
.features {
  padding: 80px 0;
}
.feature-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.feature-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1f2937;
}
.feature-card p {
  font-size: 0.95rem;
  color: #4b5563;
}
.site-footer {
  background: #1f2937;
  color: #f9fafb;
  padding: 40px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  margin-left: 15px;
  color: #f9fafb;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
}
/* Modal styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.modal-overlay.hidden {
  display: none;
}
.modal-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  width: 80%;
  max-width: 780px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b7280;
}
.cpa-frame {
  flex: 1;
  overflow: auto;
  padding: 20px;
}