/* 1. Reset & Base */
:root {
  --bg-color: #f5f1eb;
  --primary: #2b5a2b;
  --primary-hover: #1e4420;
  --text-main: #1a1a1a;
  --text-sec: #555;
  --text-muted: #888;
  --border: #d4cfc7;
  --card-bg: #faf8f4;
  --dark-bg: #1e3320;
  --font-heading: 'DM Serif Display', serif;
  --font-logo: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 2. Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-main);
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.5rem; }

/* 3. Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 4. Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.logo {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  margin-bottom: 5px;
  transition: 0.3s;
}
.hamburger span:last-child {
  margin-bottom: 0;
}

/* 5. Buttons */
button, .btn-primary, .btn-secondary, .btn-white, .btn-outline-white, .btn-join {
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s ease;
  border-radius: 50px;
  text-align: center;
}

.btn-primary, .btn-join {
  background-color: var(--primary);
  color: #ffffff;
  padding: 14px 28px;
  border: none;
}

.btn-primary:hover, .btn-join:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  padding: 14px 28px;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  padding: 14px 28px;
  border: none;
}

.btn-white:hover {
  background-color: #f0f0f0;
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-nav-login {
  background: transparent;
  border: none;
  font-weight: 500;
  color: var(--text-main);
}

/* 6. Hero */
.hero {
  padding: 80px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title em {
  font-family: var(--font-logo);
  color: var(--primary);
  font-style: italic;
}

.hero-desc {
  color: var(--text-sec);
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-image {
  border-radius: 16px;
  overflow: hidden;
  height: auto;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.hero-small-text {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* 7. Section Styles */
.section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-sec);
  max-width: 600px;
  margin-bottom: 60px;
  font-size: 1.125rem;
}

.section--dark {
  background-color: var(--dark-bg);
  color: #ffffff;
}

.section--dark .section-title,
.section--dark .section-subtitle,
.section--dark h2,
.section--dark h3 {
  color: #ffffff;
}

/* 8. Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
}

.card-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  margin-bottom: 16px;
}

.card-desc {
  color: var(--text-sec);
  margin-bottom: 32px;
}

.card-list {
  list-style: none;
  margin-bottom: 32px;
}

.card-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.card-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.card-link {
  font-weight: 600;
  color: var(--text-main);
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-link::after {
  content:none;
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

/* 9. Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.feature-card {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-icon {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
}

/* 10. Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step-number {
  font-family: var(--font-logo);
  font-style: italic;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-muted);
}

/* 11. Founder Section */
.founder-section .grid-2-col {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.founder-image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: var(--bg-color);
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.founder-image-label .label-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.founder-image-label .label-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.founder-content {
  max-width: 560px;
}

.founder-content .section-title {
  margin-bottom: 28px;
}

.founder-quote {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-style: normal;
  line-height: 1.75;
  color: var(--text-sec);
  margin-bottom: 32px;
}

.founder-quote p + p {
  margin-top: 16px;
}

.founder-sig {
  font-weight: 600;
}

.founder-sig span {
  display: block;
  font-weight: 400;
  color: var(--text-sec);
  font-size: 0.9rem;
}

/* 12. Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.benefit-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
}

/* 13. Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px;
  text-align: center;
}

.pricing-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

.pricing-note {
  color: var(--text-muted);
  text-align: center;
  font-size: 0.875rem;
  margin-top: 32px;
}

/* 14. FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  border-radius: 0;
}

.faq-question .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  font-family: var(--font-body);
  font-weight: 300;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-muted);
}

/* 15. Problem Section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  padding: 44px;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.problem-statement {
  text-align: center;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 2.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* 16. Footer */
.footer {
  background-color: var(--dark-bg);
  color: #ffffff;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .container {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.footer-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-logo {
  font-family: var(--font-logo);
  font-style: italic;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin: 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-align: right;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 820px) {
  .footer-bar {
    padding: 18px 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-branding,
  .footer-copy {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-left: 0;
  }

  .footer-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
  }
}

@media (max-width: 560px) {
  .footer-nav {
    gap: 10px 14px;
  }

  .footer-nav a {
    font-size: 0.8rem;
  }
}

/* 17. Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: #ffffff;
  max-width: 640px;
  width: 100%;
  border-radius: 20px;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-sec);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.role-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.role-card h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-main);
}

.role-card p {
  margin: 0;
  color: var(--text-sec);
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.role-card .btn {
  margin-top: auto;
  width: 100%;
}

/* 18. Forms */
.form-page {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(circle at top, rgba(43, 90, 43, 0.08), transparent 30%), var(--bg-color);
}

.form-container {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.form-shell {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 90, 43, 0.12);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(28, 35, 30, 0.06);
  backdrop-filter: blur(6px);
  padding: 32px 28px;
}

.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.form-shell h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 8px;
}

.subtitle {
  color: var(--text-sec);
  margin-bottom: 28px;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.required {
  color: var(--primary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 16px 18px;
  min-height: 58px;
  border: 1px solid rgba(43, 90, 43, 0.15);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.phone-field {
  display: flex;
  gap: 10px;
}

.phone-field .country-code {
  width: 112px;
  flex: 0 0 112px;
  min-height: 58px;
  padding: 0 10px;
  border: 1px solid rgba(43, 90, 43, 0.15);
  border-radius: 16px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.7);
  font: 600 0.92rem var(--font-body);
}

.phone-field .country-code:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(43, 90, 43, 0.08); }
.phone-field .form-input { min-width: 0; }

.form-input::placeholder {
  color: #9da39b;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(43, 90, 43, 0.08);
}

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

.form-error {
  display: block;
  color: #b42318;
  font-size: 0.8rem;
  margin-top: 8px;
  min-height: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

#form-error-message {
  margin-top: 4px;
  margin-bottom: 18px;
}

.error-alert {
  background: rgba(180, 35, 24, 0.06);
  border: 1px solid rgba(180, 35, 24, 0.12);
  color: #8d1f1f;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.92rem;
}

#form-loading,
#form-success {
  text-align: center;
  padding-top: 12px;
}

#form-loading p,
#form-success p {
  margin-top: 14px;
  color: var(--text-sec);
}

#form-success h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

#form-success .btn-primary {
  margin-top: 18px;
}

.spinner {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(43, 90, 43, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

.hidden {
  display: none !important;
}

.full-width {
  width: 100%;
  min-height: 58px;
  padding: 16px 20px;
  font-size: 1rem;
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-layout {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.form-visual {
  background: linear-gradient(180deg, rgba(43, 90, 43, 0.08), rgba(43, 90, 43, 0.02));
  border: 1px solid rgba(43, 90, 43, 0.12);
  border-radius: 30px;
  padding: 34px 28px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-visual--brand {
  background: linear-gradient(180deg, rgba(43, 90, 43, 0.05), rgba(43, 90, 43, 0.02));
}

.visual-badge,
.form-eyebrow,
.login-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.form-visual h2 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.06;
  margin: 16px 0 24px;
  max-width: 420px;
}

.visual-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(43, 90, 43, 0.12);
  border-radius: 24px;
  padding: 22px 20px;
  max-width: 360px;
  box-shadow: 0 12px 28px rgba(28, 35, 30, 0.05);
}

.creator-example-card {
  max-width: 390px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(43, 90, 43, 0.14);
}

.creator-example-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.creator-example-header--stacked {
  margin-top: 6px;
}

.creator-example-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid rgba(43, 90, 43, 0.18);
  box-shadow: 0 10px 20px rgba(28, 35, 30, 0.08);
  display: block;
}

.creator-example-avatar--large {
  width: 170px;
  height: 170px;
  border-width: 4px;
  object-position: center 20%;
  box-shadow: 0 18px 26px rgba(28, 35, 30, 0.1);
}

@media (max-width: 480px) {
  .creator-example-avatar--large {
    width: 148px;
    height: 148px;
  }
}

.creator-example-profile {
  flex: 1;
  min-width: 0;
}

.creator-example-profile--centered {
  text-align: center;
  margin-bottom: 10px;
}

.creator-example-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.creator-example-name-row strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.creator-verification-check {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.creator-example-header small,
.visual-list,
.visual-stats small {
  color: var(--text-sec);
}

.creator-example-meta {
  margin-bottom: 16px;
}

.creator-example-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(43, 90, 43, 0.08);
  border: 1px solid rgba(43, 90, 43, 0.12);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.visual-stats div {
  background: rgba(43, 90, 43, 0.04);
  border-radius: 16px;
  padding: 12px 8px;
  text-align: center;
}

.visual-stats span {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.creator-example-stats span {
  font-size: 1rem;
  line-height: 1.2;
}

.creator-example-stats small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.4rem;
}

.visual-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.visual-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text-main);
}

.visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.form-footnote,
.auth-switch,
.login-meta,
.login-actions p {
  font-size: 0.88rem;
  color: var(--text-sec);
}

.form-footnote {
  text-align: center;
  margin-top: 16px;
}

.form-footnote a,
.auth-switch a,
.login-meta a,
.login-links-row a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
}

.google-signup {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(43, 90, 43, 0.18);
  border-radius: 16px;
  color: var(--text-main);
  background: #fff;
  font: 600 0.98rem var(--font-body);
  cursor: pointer;
}

.google-signup:hover { background: #fbfaf8; border-color: var(--primary); }
.google-signup:disabled { cursor: wait; opacity: .7; }
.google-mark { color: #4285f4; font-family: Arial, sans-serif; font-size: 1.25rem; font-weight: 700; }
.signup-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--text-muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.signup-divider::before, .signup-divider::after { content: ''; height: 1px; flex: 1; background: rgba(43, 90, 43, .15); }

.login-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(circle at top, rgba(43, 90, 43, 0.08), transparent 30%), var(--bg-color);
}

.login-shell {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 90, 43, 0.12);
  border-radius: 30px;
  box-shadow: 0 18px 36px rgba(28, 35, 30, 0.05);
  padding: 32px 28px;
}

.login-intro {
  text-align: center;
  margin-bottom: 26px;
}

.login-intro h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 12px 0 10px;
}

.login-intro p {
  color: var(--text-sec);
}

.login-form {
  display: grid;
  gap: 6px;
}

.login-meta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 18px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(43, 90, 43, 0.18);
}

.login-links-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.small-btn {
  padding: 12px 18px;
  min-height: auto;
  font-size: 0.92rem;
}

.nav-actions--compact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions--compact .login-link {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

/* 18b. Signed-in member landing */
.dashboard-nav { position: relative; }
.dashboard-nav-actions { display: flex; align-items: center; gap: 22px; }
.dashboard-home-link, .dashboard-signout { color: var(--text-main); font: 600 0.9rem var(--font-body); text-decoration: none; }
.dashboard-signout { border: 0; background: transparent; padding: 0; cursor: pointer; }
.dashboard-home-link:hover, .dashboard-signout:hover { color: var(--primary); }
.member-page { min-height: calc(100vh - 61px); padding: 72px 0 96px; background: radial-gradient(circle at 88% 9%, rgba(136, 177, 125, 0.2), transparent 23%), radial-gradient(circle at 7% 39%, rgba(43, 90, 43, 0.08), transparent 22%), var(--bg-color); }
.member-hero { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.member-kicker { color: var(--primary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.member-kicker span { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--primary); }
.member-hero h1 { font-size: clamp(3rem, 5.6vw, 5.2rem); max-width: 760px; margin: 16px 0; letter-spacing: -0.04em; }
.member-hero h1 span { color: var(--primary); font-style: italic; }
.member-lead { max-width: 570px; color: var(--text-sec); font-size: 1.1rem; }
.member-profile-card { min-width: 290px; display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid rgba(43, 90, 43, 0.18); border-radius: 18px; background: rgba(255,255,255,.62); }
.member-avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: white; background: var(--primary); font: 1.4rem var(--font-heading); }
.member-role { color: var(--primary); font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.member-email { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text-sec); font-size: .88rem; }
.member-content { padding-top: 40px; }
.member-status { display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: #e5efe1; border-radius: 18px; }
.status-icon { display: grid; flex: 0 0 auto; place-items: center; width: 30px; height: 30px; color: white; border-radius: 50%; background: var(--primary); font-weight: 700; }
.status-label { font-weight: 700; }.member-status p:last-child { color: var(--text-sec); font-size: .9rem; }.member-status .btn-primary { margin-left: auto; white-space: nowrap; }
.member-section-heading { margin: 76px 0 28px; }.member-section-heading h2 { margin-top: 10px; font-size: clamp(2.3rem, 4vw, 3.35rem); }
.member-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.member-card { min-height: 270px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.6); }.member-card--accent { background: var(--dark-bg); border-color: var(--dark-bg); }.card-number { color: var(--primary); font: italic 1.3rem var(--font-logo); }.member-card h3 { margin: 38px 0 10px; font-size: 1.55rem; }.member-card p { color: var(--text-sec); }.member-card a { margin-top: auto; color: var(--primary); font-size: .9rem; font-weight: 700; text-decoration: none; }.member-card--accent h3, .member-card--accent p, .member-card--accent a { color: #fff; }.member-card--accent p { color: rgba(255,255,255,.7); }.member-card--accent .card-number { color: #a4cb92; }

@media (max-width: 980px) {
  .form-layout {
    grid-template-columns: 1fr;
  }

  .form-visual {
    min-height: unset;
    padding: 24px 18px;
  }
}

@media (max-width: 640px) {
  .form-shell,
  .login-shell {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .form-page,
  .login-page {
    padding: 24px 14px;
  }

  .nav-actions--compact {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

/* 19. States */
.success-state {
  text-align: center;
  padding: 80px 20px;
}

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s linear infinite;
  display: inline-block;
}

.error-message {
  background-color: #fef2f2;
  color: #991b1b;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* 20. Admin */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.admin-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.admin-tab {
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  color: var(--text-sec);
  border-radius: 0;
}

.admin-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.admin-status {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
}
.admin-status.pending { background-color: #fef3c7; color: #92400e; }
.admin-status.approved { background-color: #d1fae5; color: #065f46; }
.admin-status.rejected { background-color: #fee2e2; color: #991b1b; }
.admin-status.contacted { background-color: #dbeafe; color: #1e40af; }

/* 21. Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 22. Responsive */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .card-grid, .features-grid, .founder-section .grid-2-col, .benefits-grid, .problem-grid {
    grid-template-columns: 1fr;
  }
  .founder-content {
    max-width: 100%;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .navbar .container {
    height: 64px;
    gap: 8px;
  }

  .logo {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .btn-nav-login {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .btn-join {
    padding: 10px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hamburger {
    display: block;
    padding: 6px;
  }

  .hero {
    padding: 52px 0 36px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 9vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 12ch;
  }

  .hero-desc {
    font-size: 0.98rem;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-white {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .visual-card {
    max-width: 100%;
    padding: 18px 14px;
  }

  .visual-card-header {
    margin-bottom: 14px;
  }

  .visual-card-header strong {
    font-size: 0.95rem;
  }

  .visual-stats {
    gap: 8px;
  }

  .visual-stats div {
    padding: 10px 6px;
  }

  .visual-stats span {
    font-size: 1rem;
  }

  .visual-stats small {
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .navbar .container {
    height: 60px;
  }

  .logo {
    font-size: 1.08rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .btn-nav-login {
    font-size: 0.76rem;
  }

  .btn-join {
    padding: 8px 12px;
    font-size: 0.74rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 2.7rem);
    line-height: 0.98;
    max-width: 11ch;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .hero-badge {
    padding: 5px 12px;
    font-size: 0.75rem;
    margin-bottom: 16px;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-small-text {
    font-size: 0.8rem;
  }

  .form-page,
  .login-page {
    padding: 20px 12px;
  }

  .form-shell,
  .login-shell {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .visual-card {
    padding: 14px 12px;
  }

  .visual-list li {
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .dashboard-nav-actions { gap: 12px; }
  .dashboard-home-link, .dashboard-signout { font-size: 0.78rem; }
  .member-page { padding: 44px 0 64px; }
  .member-hero { align-items: flex-start; flex-direction: column; gap: 28px; padding-bottom: 42px; }
  .member-profile-card { min-width: 0; width: 100%; }
  .member-status { align-items: flex-start; flex-wrap: wrap; padding: 20px; }
  .member-status .btn-primary { width: 100%; margin: 8px 0 0; }
  .member-section-heading { margin-top: 52px; }
  .member-cards { grid-template-columns: 1fr; }
  .member-card { min-height: 220px; }

  .container {
    padding: 0 20px;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: block;
  }
  
  .steps-grid, .pricing-grid, .form-row, .modal-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* Mobile-first refinements for signup and member pages */
@media (max-width: 640px) {
  body { line-height: 1.5; }

  .form-page {
    display: block;
    min-height: auto;
    padding: 20px 12px 36px;
  }

  .form-layout { display: block; width: 100%; }
  .form-visual { display: none; }
  .form-container { max-width: 100%; }
  .form-shell { padding: 25px 18px; border-radius: 20px; }
  .form-shell h1 { font-size: 2.35rem; letter-spacing: -0.03em; }
  .subtitle { margin-bottom: 22px; font-size: .95rem; }
  .form-group { margin-bottom: 17px; }
  .form-input, .form-select, .form-textarea { min-height: 54px; padding: 14px 15px; border-radius: 14px; }
  .phone-field { gap: 8px; }
  .phone-field .country-code { width: 102px; flex-basis: 102px; min-height: 54px; border-radius: 14px; }
  .google-signup { min-height: 52px; border-radius: 14px; }
  .signup-divider { margin: 17px 0; }
  .full-width { min-height: 54px; }

  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal { max-width: none; border-radius: 24px 24px 0 0; padding: 34px 20px 28px; }
  .modal-close { top: 16px; right: 18px; }
  .modal h2 { font-size: 2rem; padding-right: 28px; }
  .modal-grid { gap: 12px; margin-top: 24px; }
  .role-card { align-items: flex-start; text-align: left; padding: 18px; border: 1px solid var(--border); border-radius: 16px; }
  .role-card .btn-primary { width: 100%; }

  .campaigns-intro { padding-bottom: 30px; }
  .campaigns-intro h1 { font-size: 3rem; }
  .campaign-card { padding: 23px 20px; border-radius: 18px; }
  .campaign-card h2 { font-size: 1.9rem; }

  .member-hero h1 { font-size: 3.1rem; }
  .member-section-heading h2 { font-size: 2.35rem; }
}

/* 22b. Campaign explorer */
.campaigns-page { min-height: calc(100vh - 61px); padding: 72px 0 96px; background: radial-gradient(circle at 80% 5%, rgba(166, 133, 203, .13), transparent 26%), var(--bg-color); }
.campaigns-intro { padding-bottom: 48px; }.campaigns-intro h1 { margin: 14px 0 12px; font-size: clamp(3rem, 6vw, 5.2rem); letter-spacing: -.04em; }.campaigns-intro > p:last-child { max-width: 490px; color: var(--text-sec); font-size: 1.08rem; }
.campaign-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.campaign-card { display: flex; min-height: 464px; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: 22px; background: rgba(255,255,255,.66); }.campaign-card--forest { color: #fff; border-color: var(--dark-bg); background: var(--dark-bg); }.campaign-card-top { display: flex; align-items: center; justify-content: space-between; }.campaign-brand { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 13px; color: white; font: 1.4rem var(--font-heading); }.campaign-brand--mango { background: #df684b; }.campaign-brand--leaf { color: var(--dark-bg); background: #accf8b; }.campaign-brand--violet { background: #8070af; }.campaign-status { padding: 5px 10px; border: 1px solid rgba(43,90,43,.2); border-radius: 99px; color: var(--primary); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }.campaign-status--light { color: #c5e4b1; border-color: rgba(197,228,177,.35); }.campaign-category { margin-top: 34px; color: var(--primary); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }.campaign-card--forest .campaign-category { color: #accf8b; }.campaign-card h2 { margin: 9px 0 14px; font-size: 2.1rem; line-height: 1.05; }.campaign-card--forest h2 { color: #fff; }.campaign-description { color: var(--text-sec); }.campaign-card--forest .campaign-description { color: rgba(255,255,255,.72); }.campaign-details { display: grid; gap: 7px; margin: 26px 0; color: var(--text-sec); font-size: .82rem; }.campaign-details span::before { content: '•'; margin-right: 8px; color: var(--primary); }.campaign-card--forest .campaign-details { color: rgba(255,255,255,.72); }.campaign-card--forest .campaign-details span::before { color: #accf8b; }.campaign-apply { width: 100%; margin-top: auto; padding: 13px 16px; border: 1px solid var(--primary); border-radius: 999px; color: white; background: var(--primary); font: 700 .9rem var(--font-body); cursor: pointer; }.campaign-apply--light { color: var(--dark-bg); border-color: #accf8b; background: #accf8b; }.campaign-apply:disabled { cursor: default; opacity: .75; }.campaign-feedback { min-height: 25px; margin: 26px auto 0; color: var(--primary); text-align: center; font-weight: 600; }

@media (max-width: 768px) { .campaign-grid { grid-template-columns: 1fr; }.campaign-card { min-height: 360px; }.campaigns-page { padding-top: 44px; } }

/* 23. Accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Signed-in profile overview */
.profile-page { min-height: calc(100vh - 61px); padding: 56px 0 82px; background: radial-gradient(circle at 90% 8%, rgba(43,90,43,.1), transparent 25%), var(--bg-color); }
.profile-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; align-items: start; }.profile-summary { position: sticky; top: 84px; }.profile-greeting { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }.profile-greeting p { color: var(--text-sec); }.profile-greeting strong { font-size: 1.1rem; }.profile-photo { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; color: #fff; background: var(--primary); font: 1.4rem var(--font-heading); }.profile-summary h1 { margin: 16px 0; font-size: clamp(3rem, 5vw, 4.7rem); line-height: 1.02; }.profile-summary > p { color: var(--text-sec); }.completion-card { display: flex; align-items: center; gap: 15px; margin-top: 35px; padding: 17px; border: 1px solid rgba(43,90,43,.16); border-radius: 18px; background: rgba(255,255,255,.68); }.completion-ring { --completion: 0deg; position: relative; display: grid; place-items: center; flex: 0 0 auto; width: 76px; height: 76px; border-radius: 50%; background: conic-gradient(var(--primary) var(--completion), #dce5d8 0); }.completion-ring::before { content: ''; position: absolute; width: 62px; height: 62px; border-radius: 50%; background: var(--card-bg); }.completion-ring span { position: relative; font-weight: 700; }.completion-card strong { display: block; }.completion-card p { color: var(--text-sec); font-size: .84rem; }.profile-form-card { padding: 30px; border: 1px solid rgba(43,90,43,.15); border-radius: 24px; background: rgba(255,255,255,.72); }.profile-form-heading h2 { margin: 8px 0; font-size: 2.4rem; }.profile-form-heading > p:last-child { color: var(--text-sec); }.account-card { margin: 28px 0; padding: 24px; border-radius: 20px; color: #fff; background: linear-gradient(120deg, #111, #373737); }.account-card span { color: rgba(255,255,255,.72); font-size: .84rem; }.account-card > div:first-child strong { display: block; font: 2.3rem var(--font-heading); }.account-card-divider { height: 1px; margin: 18px 0; background: rgba(255,255,255,.2); }.account-card-row { display: flex; justify-content: space-between; gap: 12px; }.account-progress { height: 7px; margin: 16px 0; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.24); }.account-progress i { display: block; width: 2%; height: 100%; background: #fff; }.account-card-row--small span { font-size: .76rem; }.profile-detail-links { padding: 8px 18px; border-radius: 18px; background: #fae8e8; }.profile-detail-links > p { margin: 10px 0 4px; font-weight: 600; }.profile-detail-links a { display: flex; align-items: center; gap: 12px; min-height: 58px; border-bottom: 1px solid rgba(81,57,57,.14); color: var(--text-main); text-decoration: none; }.profile-detail-links a:last-child { border: 0; }.detail-icon { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 6px; color: var(--primary); background: rgba(255,255,255,.8); }.profile-detail-links small { margin-left: auto; padding: 3px 7px; border-radius: 999px; color: #9c5b24; background: #fff2dc; font-size: .68rem; font-weight: 700; }.profile-detail-links small.is-complete { color: #14663d; background: #dff3e5; }.profile-detail-links b { margin-left: 0; color: var(--text-muted); font-size: 1.1rem; font-weight: 400; }

@media (max-width: 780px) { .profile-page { padding: 28px 0 52px; }.profile-layout { grid-template-columns: 1fr; gap: 20px; }.profile-summary { position: static; }.profile-summary > .member-kicker, .profile-summary > h1, .profile-summary > p:not(.member-kicker) { display: none; }.profile-greeting { margin-bottom: 16px; }.completion-card { margin-top: 0; }.profile-form-card { padding: 20px 16px; border-radius: 20px; }.profile-form-heading h2 { font-size: 2.1rem; }.account-card { padding: 21px 20px; } }

/* Creator profile onboarding */
.detail-page { width: min(100%, 680px); min-height: 100vh; margin: 0 auto; padding: 0 24px 36px; background: #fcf8f6; }
.detail-topbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 68px; margin: 0 -24px 24px; padding: 0 24px; border-bottom: 1px solid #e6e0dd; background: rgba(255,255,255,.72); }
.detail-topbar h1 { font: 600 1.08rem var(--font-body); }.detail-back { color: var(--text-main); font-size: .96rem; text-decoration: none; }
.detail-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }.detail-tabs a { display: grid; min-height: 48px; place-items: center; padding: 8px; border: 1px solid #e3dfdc; border-radius: 10px; color: var(--text-main); background: white; font-size: .85rem; text-align: center; text-decoration: none; }.detail-tabs a.active { border-color: #e64c54; background: #fdeced; }
.detail-card, .detail-section { padding: 24px 20px; border: 1px solid #e5dfdc; border-radius: 18px; background: #fff; }.detail-section h2 { margin-bottom: 8px; font: 600 1.25rem var(--font-body); }.detail-section > p { margin-bottom: 22px; color: var(--text-sec); font-size: .92rem; }.detail-subheading { margin: 28px 0 14px !important; }
.detail-form .form-group { margin-bottom: 20px; }.detail-form .form-label { font-weight: 500; }.detail-form .form-label::after { content: ' *'; color: #df4048; }.detail-form .form-input, .detail-form .form-select { min-height: 54px; border-color: #e4e0dd; border-radius: 9px; background: white; }.detail-form input[readonly] { color: var(--text-sec); background: #f7f6f5; }
.detail-save { width: 100%; min-height: 54px; border: 0; border-radius: 10px; color: white; background: #181818; font: 600 1rem var(--font-body); cursor: pointer; }.detail-save:hover { background: #333; }.profile-feedback { min-height: 22px; margin: 12px 0; color: var(--primary); font-size: .86rem; font-weight: 600; }.profile-feedback.is-error { color: #b42318; }
.image-editor { display: grid; justify-items: center; gap: 10px; margin: -5px auto 26px; }.image-editor img { width: 112px; height: 112px; border: 2px solid #fff; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px #d9d2cf; }.image-editor img.no-image { background: linear-gradient(135deg, #2b5a2b, #8dae7d); }.image-change { color: var(--primary); font-size: .85rem; font-weight: 700; cursor: pointer; }.radio-card { padding: 8px 0 10px; }.radio-card p { margin-bottom: 18px; }.radio-card label { display: inline-flex; align-items: center; gap: 8px; margin-right: 28px; cursor: pointer; }.radio-card input { width: 24px; height: 24px; accent-color: #171717; }
.category-count { color: var(--text-main) !important; font-weight: 600; }.category-grid { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 80px; }.category-chip { padding: 9px 13px; border: 1px solid #e0e3e6; border-radius: 999px; color: var(--text-main); background: #f5f6f7; font: 500 .84rem var(--font-body); cursor: pointer; }.category-chip.selected { border-color: #ec5158; background: #fff8f8; }.category-chip.selected::before { content: '✓ '; color: #d84248; }.detail-save--sticky { position: sticky; bottom: 12px; z-index: 4; }
.social-price { position: relative; margin-bottom: 13px; }.social-price .form-group { margin-bottom: 0; }.social-price .form-label { position: absolute; left: 56px; top: 18px; z-index: 1; pointer-events: none; color: var(--text-sec); }.social-price .form-label::after { content: ''; }.social-price .form-input { padding-left: 58px; }.social-logo { display: inline-grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; color: white; font-weight: 700; }.social-logo.instagram { background: linear-gradient(135deg, #f9c546, #e1348a, #6a3abe); }.social-logo.youtube { background: #f20d0d; font-size: .72rem; }.social-price .social-logo { position: absolute; z-index: 2; top: 15px; left: 17px; }.social-connect-card { margin: 13px 0; padding: 15px; border: 1px solid #d9dfe3; border-radius: 10px; }.social-connect-card > div { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }.social-connect-card .form-input { min-height: 48px; }.terms-check { display: block; margin: 26px 0 18px; color: var(--text-sec); font-size: .84rem; }.terms-check input { margin-right: 7px; accent-color: var(--primary); }.terms-check a { color: var(--primary); }.social-help { width: 100%; padding: 16px; border: 1px solid #d9dfe3; border-radius: 10px; color: var(--text-main); background: white; font: 500 .9rem var(--font-body); text-align: left; cursor: pointer; }.detail-load-error { padding: 18px; border: 1px solid #f2c5c5; border-radius: 10px; color: #8d1f1f; background: #fff3f3; }

@media (max-width: 520px) { .detail-page { padding: 0 16px 28px; }.detail-topbar { margin: 0 -16px 20px; padding: 0 16px; }.detail-tabs { gap: 8px; }.detail-tabs a { min-height: 46px; font-size: .74rem; }.detail-card, .detail-section { padding: 20px 14px; border-radius: 14px; }.detail-form .form-input, .detail-form .form-select { padding: 12px; }.category-grid { gap: 8px; }.category-chip { padding: 8px 11px; font-size: .79rem; } }
/* Personal Details profile photo */

.personal-profile-photo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0 32px;
}

.personal-profile-photo .profile-photo {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 42px;
    font-weight: 600;
}

.personal-profile-photo .profile-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.personal-profile-photo .change-photo {
    display: block;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #246b2f;
}