/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Full-width header, white */
section[id] {
  scroll-margin-top: 90px;
}

.site-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* Centered inner container, max 1200px */
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT: Brand */
.brand {
  flex: 0 0 auto;
}

.brand-name {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
}

/* CENTER: Nav */
.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #444444;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: #2563eb;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: #000000;
}

/* RIGHT: Buttons */
.header-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 12px;
}

.btn {
  font-size: clamp(13px, 1.5vw, 15px);
  padding: clamp(8px, 1.2vw, 10px) clamp(14px, 2.5vw, 20px);
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-login {
  background-color: transparent;
  color: #333333;
  border-color: #d0d0d0;
}

.btn-signup {
  background-color: #2563eb;
  color: #ffffff;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
}

/* Hero section */
.hero {
  width: 100%;
  background-color: #ffffff;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  min-width: 0;
}

.hero-headline {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-subtext {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #555555;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  font-size: clamp(14px, 1.8vw, 16px);
  padding: clamp(10px, 1.5vw, 13px) clamp(18px, 3vw, 26px);
}

.btn-secondary {
  background-color: transparent;
  color: #333333;
  border-color: #d0d0d0;
  font-size: clamp(14px, 1.8vw, 16px);
  padding: clamp(10px, 1.5vw, 13px) clamp(18px, 3vw, 26px);
}

.hero-image {
  min-width: 0;
}

.hero-image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  border-radius: 16px;
  overflow: hidden;
}

/* Floating calendar cards */
.calendar-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: #ffffff;
  border-left: 4px solid #2563eb;
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: card-bounce 3s ease-in-out infinite;
}

.card-tag {
  font-size: 13px;
  font-weight: 600;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.card-1 {
  top: 14%;
  left: 8%;
  width: 60%;
  animation-delay: 0s;
}

.card-2 {
  top: 42%;
  right: 6%;
  width: 55%;
  border-left-color: #f97316;
  animation-delay: 0.6s;
}

.card-3 {
  bottom: 10%;
  left: 14%;
  width: 58%;
  border-left-color: #10b981;
  animation-delay: 1.2s;
}

@keyframes card-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Testimonials section */
.testimonials {
  width: 100%;
  background-color: #f8fafc;
}

.testimonials-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.testimonials-headline {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.testimonials-subtext {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #555555;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 20px;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-author-role {
  font-size: 13px;
  color: #888888;
}

/* Features section */
.features {
  width: 100%;
  background-color: #ffffff;
}

.features-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 48px;
}

.features-headline {
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 14px;
  white-space: nowrap;
}

.features-subtext {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  color: #555555;
  max-width: 800px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.feature-benefit {
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.6;
  color: #555555;
}

/* Learn more about features link */
.features-more {
  text-align: center;
  margin-top: 40px;
}

.features-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.features-more-link:hover {
  text-decoration: underline;
}

/* Blog section */
.blog {
  width: 100%;
  background-color: #ffffff;
}

.blog-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 14px;
}

.blog-card-meta {
  font-size: 13px;
  color: #888888;
}

/* Featured blog post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background-color: #f8fafc;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  text-decoration: none;
}

.blog-featured-image {
  aspect-ratio: 4/3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-image {
    aspect-ratio: 16/9;
  }
}

/* Highlights section */
.highlights {
  width: 100%;
  background-color: #f8fafc;
}

.highlights-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

/* Spotlight testimonial section */
.spotlight {
  width: 100%;
  background-color: #2563eb;
}

.spotlight-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 20px;
  text-align: center;
}

.spotlight-quote-mark {
  font-size: 64px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 800;
  margin-bottom: 8px;
}

.spotlight-quote {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
}

.spotlight-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.spotlight-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.spotlight-author-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
}

.spotlight-author-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.highlight-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.highlight-text {
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
  color: #555555;
}

/* Invite CTA */
.invite-cta {
  width: 100%;
  background-color: #f8fafc;
}

.invite-cta-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.invite-cta-card {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f97316;
  border-radius: 20px;
  padding: 48px;
  overflow: hidden;
}

.invite-cta-icon {
  position: absolute;
  top: 0;
  right: 24px;
  width: 160px;
  height: 160px;
  color: rgba(255, 255, 255, 0.12);
}

.invite-cta-icon svg {
  width: 100%;
  height: 100%;
}

.invite-cta-content {
  position: relative;
  max-width: 560px;
}

.invite-cta-headline {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.invite-cta-subtext {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.btn-invite {
  background-color: #ffffff;
  color: #f97316;
  font-size: clamp(14px, 1.8vw, 16px);
  padding: clamp(10px, 1.5vw, 13px) clamp(20px, 3vw, 28px);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Pricing section */
.pricing {
  width: 100%;
  background-color: #ffffff;
}

.pricing-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

/* Pricing billing toggle */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  background-color: #eef2f7;
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 40px;
}

.pricing-toggle-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border: none;
  border-radius: 999px;
  background-color: transparent;
  color: #555555;
  cursor: pointer;
}

.pricing-toggle-btn.active {
  background-color: #ffffff;
  color: #2563eb;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-yearly {
  display: none;
}

.savings-badge {
  display: none;
  background-color: #10b981;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transform: rotate(30deg);
}

.pricing-grid.billing-yearly .price-monthly {
  display: none;
}

.pricing-grid.billing-yearly .price-yearly {
  display: inline;
}

.pricing-grid.billing-yearly .savings-badge {
  display: inline-block;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 32px;
}

.pricing-featured {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2563eb;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 14px;
  font-weight: 500;
  color: #888888;
}

.pricing-tagline {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  min-height: 42px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1 1 auto;
}

.pricing-features li {
  font-size: 14px;
  color: #444444;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.pricing-btn {
  width: 100%;
}

/* Comparison section */
.comparison {
  width: 100%;
  background-color: #f8fafc;
}

.comparison-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 40px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  color: #444444;
  border-bottom: 1px solid #eaeaea;
}

.comparison-table th {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-feature-col {
  text-align: left;
  font-weight: 700;
  color: #1a1a1a;
}

.comparison-featured-col {
  background-color: #eff6ff;
}

.comparison-yes {
  color: #16a34a;
  font-weight: 800;
}

.comparison-no {
  color: #cbd5e1;
  font-weight: 800;
}

/* FAQ section */
.faq {
  width: 100%;
  background-color: #ffffff;
}

.faq-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 20px;
}

.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 18px 22px;
  background-color: #f8fafc;
}

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: #2563eb;
}

.faq-item[open] .faq-question::after {
  content: "\2212";
}

.faq-answer {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin-top: 12px;
}

/* Help center */
.help-search {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.help-search-input {
  flex: 1;
  font-size: 15px;
  padding: 14px 18px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-family: inherit;
}

.help-search-input:focus {
  outline: none;
  border-color: #2563eb;
}

.help-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-category-card {
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.help-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.help-category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  margin-top: 12px;
}

/* Contact / ticket form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-option {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.contact-option-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.contact-option-text {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.ticket-form {
  background-color: #f8fafc;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-family: inherit;
  background-color: #ffffff;
  color: #1a1a1a;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 900px) {
  .help-categories-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .help-search {
    flex-direction: column;
  }
}

/* About section */
.about {
  width: 100%;
  background-color: #f8fafc;
}

.about-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 48px;
}

.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  border-radius: 16px;
  overflow: hidden;
}

.about-image .calendar-card {
  position: absolute;
}

.about-image .card-1 {
  top: 20%;
  left: 10%;
  width: 65%;
}

.about-image .card-2 {
  bottom: 18%;
  right: 8%;
  width: 65%;
  border-left-color: #f97316;
  animation-delay: 0.6s;
}

.about-headline {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 18px;
}

.about-text {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.6;
  color: #555555;
  margin-bottom: 18px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.about-stat-number {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 14px;
  color: #888888;
}

/* Footer */
.site-footer {
  width: 100%;
  background-color: #1a1a1a;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #999999;
  margin: 12px 0 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2a2a2a;
  color: #ffffff;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: #2563eb;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: #999999;
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  text-align: center;
}

.footer-copyright {
  font-size: 13px;
  color: #888888;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav,
  .header-actions {
    display: none;
    flex-basis: 100%;
  }

  .main-nav {
    order: 3;
  }

  .header-actions {
    order: 4;
    justify-content: center;
    margin-top: 12px;
  }

  .header-inner.nav-open .main-nav,
  .header-inner.nav-open .header-actions {
    display: flex;
  }

  .header-inner.nav-open .main-nav {
    margin-top: 12px;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-image {
    display: none;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Option C: vertical icon-left list */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: none;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    box-shadow: none;
    padding: 20px 0;
  }

  .feature-card:last-child {
    border-bottom: none;
  }

  .feature-icon {
    flex: 0 0 48px;
    border-radius: 50%;
    margin-bottom: 0;
  }

  .feature-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .highlights-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-featured {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .invite-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .invite-cta-icon {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    display: none;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}
