/* ─── Reset & Base ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #F5F0E8;
  color: #2D1B0E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ─── Container ─── */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E0D5C8;
  height: 60px;
}

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

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: #2D1B0E;
  letter-spacing: -0.01em;
}

.nav-logo span {
  color: #C73B2B;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #7A6A5A;
  transition: color 200ms ease-out;
}

.nav-link:hover {
  color: #2D1B0E;
}

.nav-cta {
  font-size: 13px;
  padding: 7px 18px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2D1B0E;
  border-radius: 1px;
  transition: transform 200ms ease-out, opacity 200ms ease-out;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease-out, box-shadow 200ms ease-out;
  border-radius: 8px;
  font-size: 14px;
  padding: 10px 22px;
}

.btn-primary {
  background: linear-gradient(180deg, #C73B2B 0%, #A02E20 100%);
  color: #fff;
  border: 1px solid #8A281C;
  border-bottom: 3px solid #6B1E15;
  box-shadow: 0 3px 8px rgba(199, 59, 43, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 5px 14px rgba(199, 59, 43, 0.4);
}

.btn-primary:active {
  border-bottom-width: 1px;
  transform: translateY(2px);
}

.btn-lg {
  font-size: 15px;
  padding: 14px 32px;
}

.btn-full {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: #2D1B0E;
  border: 1px solid #DBC9B5;
  box-shadow: none;
}

.btn-outline:hover {
  background: #F5EDE6;
  box-shadow: none;
}

.btn-outline:active {
  transform: translateY(2px);
}

/* ─── Hero ─── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #2D1B0E;
}

.hero-sub {
  font-size: 16px;
  color: #7A6A5A;
  max-width: 55ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-desk {
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -20px;
  height: 80px;
  background: linear-gradient(180deg, #D4B896 0%, #C4A882 100%);
  border-radius: 4px;
  box-shadow: 0 -2px 6px rgba(60, 40, 20, 0.08);
}

.hero-desk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(180deg, #E0CDB4, transparent);
}

.hero-paper {
  position: absolute;
  background: #FDFAF5;
  border: 1px solid #E0D5C8;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.12);
  padding: 20px;
}

.hero-paper-1 {
  width: 220px;
  height: 150px;
  bottom: 60px;
  left: 10px;
  --rot: -2deg;
  transform: rotate(-2deg);
}

.hero-paper-2 {
  width: 180px;
  height: 120px;
  bottom: 50px;
  right: 10px;
  --rot: 1.5deg;
  transform: rotate(1.5deg);
}

.hero-paper-line {
  height: 6px;
  background: #E8DDD0;
  border-radius: 3px;
  margin-bottom: 8px;
  width: 100%;
}

.hero-paper-line.short {
  width: 65%;
}

.hero-paper-line.medium {
  width: 80%;
}

.hero-stamp {
  position: absolute;
  bottom: 100px;
  right: 30px;
  width: 60px;
  height: 70px;
  background: linear-gradient(180deg, #C73B2B 0%, #8A281C 100%);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(199, 59, 43, 0.35);
  transform: rotate(4deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stamp::after {
  content: 'M';
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

/* ─── Sections ─── */
.section {
  padding: 80px 0;
  border-top: 1px solid #E0D5C8;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
}

.section:nth-of-type(even)::before {
  background-image: radial-gradient(#D4C9B8 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}

.section:nth-of-type(odd)::before {
  background-image: 
    linear-gradient(45deg, #E8DDD0 0.8px, transparent 0.8px),
    linear-gradient(-45deg, #E8DDD0 0.8px, transparent 0.8px);
  background-size: 30px 30px;
}

.section-cta::before {
  display: none;
}

.section:first-of-type {
  border-top: none;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #2D1B0E;
}

.section-sub {
  font-size: 16px;
  color: #7A6A5A;
  line-height: 1.6;
}

/* ─── Card Base ─── */
.card {
  background: #FDFAF5;
  border: 1px solid #E0D5C8;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(60, 40, 20, 0.10);
  transition: box-shadow 300ms ease-out, transform 300ms ease-out;
}

.card:hover {
  box-shadow: 0 4px 16px rgba(60, 40, 20, 0.15);
  transform: translateY(-1px);
}

/* ─── Steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: rotate(var(--rot, 0deg));
}

.step-card:nth-child(1) { --rot: -0.5deg; }
.step-card:nth-child(2) { --rot: 0.8deg; }
.step-card:nth-child(3) { --rot: -0.3deg; }

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.step-icon-inner {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #C73B2B, #A02E20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(199, 59, 43, 0.25);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #2D1B0E;
}

.step-desc {
  font-size: 14px;
  color: #7A6A5A;
  line-height: 1.7;
}

/* ─── Compare ─── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-card {
  padding: 32px 28px;
}

.compare-title {
  font-size: 18px;
  font-weight: 700;
  color: #2D1B0E;
  margin-bottom: 16px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-list li {
  font-size: 14px;
  color: #7A6A5A;
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}

.compare-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #C73B2B;
}

.compare-card:last-child .compare-list li::before {
  content: '✓';
  color: #2D6A3F;
}

/* ─── Helpers (Yardımcılar) ─── */
.helpers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.helper-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  transform: rotate(var(--rot, 0deg));
}

.helper-card:nth-child(1) { --rot: 0.6deg; }
.helper-card:nth-child(2) { --rot: -0.4deg; }
.helper-card:nth-child(3) { --rot: 0.3deg; }

.helper-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 4px;
  background: linear-gradient(135deg, #C73B2B, #A02E20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(199, 59, 43, 0.25);
}

.helper-icon svg {
  width: 26px;
  height: 26px;
}

.helper-title {
  font-size: 18px;
  font-weight: 700;
  color: #2D1B0E;
}

.helper-desc {
  font-size: 14px;
  color: #7A6A5A;
  line-height: 1.7;
}

/* ─── Signal Table ─── */
.signal-table-wrap {
  overflow-x: auto;
  padding: 0;
}

.signal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.signal-table thead {
  background: linear-gradient(180deg, #C73B2B 0%, #A02E20 100%);
  color: #fff;
}

.signal-table th {
  padding: 14px 20px;
  font-weight: 600;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.signal-table td {
  padding: 14px 20px;
  color: #2D1B0E;
  border-bottom: 1px solid #E0D5C8;
}

.signal-table tbody tr:last-child td {
  border-bottom: none;
}

.signal-table tbody tr:hover {
  background: #FDFAF5;
}

.signal-badge {
  display: inline-block;
  font-weight: 600;
  color: #C73B2B;
}

/* ─── Scoring ─── */
.scoring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.scoring-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: rotate(var(--rot, 0deg));
}

.scoring-card:nth-child(1) { --rot: -0.4deg; }
.scoring-card:nth-child(2) { --rot: 0.6deg; }
.scoring-card:nth-child(3) { --rot: -0.3deg; }

.scoring-card.high {
  border-left: 4px solid #2D6A3F;
}

.scoring-card.warm {
  border-left: 4px solid #D4A017;
}

.scoring-card.low {
  border-left: 4px solid #B0A090;
}

.scoring-range {
  font-size: 32px;
  font-weight: 800;
  color: #2D1B0E;
  letter-spacing: -0.02em;
  line-height: 1;
}

.scoring-title {
  font-size: 16px;
  font-weight: 700;
  color: #2D1B0E;
}

.scoring-desc {
  font-size: 13px;
  color: #7A6A5A;
  line-height: 1.6;
}

/* ─── Privacy ─── */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.privacy-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  transform: rotate(var(--rot, 0deg));
}

.privacy-card:nth-child(1) { --rot: -0.4deg; }
.privacy-card:nth-child(2) { --rot: 0.5deg; }
.privacy-card:nth-child(3) { --rot: -0.2deg; }

.privacy-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 4px;
  background: linear-gradient(135deg, #2D6A3F, #1F4D2D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(45, 106, 63, 0.25);
}

.privacy-icon svg {
  width: 22px;
  height: 22px;
}

.privacy-title {
  font-size: 15px;
  font-weight: 700;
  color: #2D1B0E;
}

.privacy-desc {
  font-size: 13px;
  color: #7A6A5A;
  line-height: 1.7;
}

/* ─── FAQ (Ana Sayfa) ─── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  padding: 0;
}

.faq-item[open] {
  padding-bottom: 4px;
}

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: #2D1B0E;
  line-height: 1.4;
  cursor: pointer;
  padding: 18px 22px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 18px;
  font-weight: 600;
  color: #C73B2B;
  flex-shrink: 0;
  transition: transform 200ms ease-out;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  font-size: 13px;
  color: #7A6A5A;
  line-height: 1.7;
  padding: 0 22px 18px;
}

.faq-answer p {
  margin-bottom: 6px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-more {
  text-align: center;
  margin-top: 32px;
}

/* ─── FAQ (Sayfa) ─── */
.faq-page {
  padding: 120px 0 80px;
}

.faq-page-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-page-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2D1B0E;
}

.faq-page-sub {
  font-size: 16px;
  color: #7A6A5A;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-page-item {
  padding: 0;
}

.faq-page-item[open] {
  padding-bottom: 4px;
}

.faq-page-question {
  font-size: 16px;
  font-weight: 700;
  color: #2D1B0E;
  line-height: 1.4;
  cursor: pointer;
  padding: 20px 26px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}

.faq-page-question::-webkit-details-marker {
  display: none;
}

.faq-page-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 600;
  color: #C73B2B;
  flex-shrink: 0;
  transition: transform 200ms ease-out;
}

.faq-page-item[open] .faq-page-question::after {
  content: '−';
}

.faq-page-answer {
  font-size: 14px;
  color: #7A6A5A;
  line-height: 1.7;
  padding: 0 26px 22px;
}

.faq-page-answer p {
  margin-bottom: 8px;
}

.faq-page-answer p:last-child {
  margin-bottom: 0;
}

.faq-page-answer ul {
  margin: 6px 0 10px;
  padding-left: 20px;
}

.faq-page-answer li {
  margin-bottom: 4px;
}

.faq-page-back {
  text-align: center;
  margin-top: 40px;
}

/* ─── CTA ─── */
.section-cta {
  padding-bottom: 80px;
}

.cta-card {
  padding: 48px 40px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-title {
  font-size: 26px;
  font-weight: 700;
  color: #2D1B0E;
  letter-spacing: -0.01em;
}

.cta-desc {
  font-size: 15px;
  color: #7A6A5A;
  max-width: 48ch;
  line-height: 1.6;
}

.cta-form {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #2D1B0E;
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  background: #FDFAF5;
  border: 1px solid #D4C9B8;
  border-radius: 6px;
  color: #2D1B0E;
  outline: none;
  transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
  box-shadow: inset 1px 2px 4px rgba(60, 40, 20, 0.06);
}

.form-input::placeholder {
  color: #B0A090;
}

.form-input:focus {
  border-color: #C73B2B;
  box-shadow: inset 1px 2px 4px rgba(60, 40, 20, 0.06), 0 0 0 3px rgba(199, 59, 43, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Inter', sans-serif;
}

.form-status {
  display: none;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 6px;
  text-align: center;
}

.form-status-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #2D6A3F;
  background: #EDF5EB;
  border: 1px solid #C5DFBE;
}

.form-status-error {
  display: block;
  color: #C73B2B;
  background: #FDF0ED;
  border: 1px solid #E8C5BE;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid #E0D5C8;
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: #2D1B0E;
}

.footer-logo span {
  color: #C73B2B;
}

.footer-desc {
  font-size: 13px;
  color: #7A6A5A;
  max-width: 30ch;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: #7A6A5A;
  transition: color 200ms ease-out;
}

.footer-links a:hover {
  color: #C73B2B;
}

.footer-bottom {
  border-top: 1px solid #E0D5C8;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #B0A090;
}

/* ─── Animations ─── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-6px) rotate(var(--rot, 0deg)); }
}

@keyframes stamp-in {
  0% { transform: rotate(8deg) scale(0.6); opacity: 0; }
  40% { transform: rotate(-2deg) scale(1.1); }
  60% { transform: rotate(3deg) scale(0.95); }
  80% { transform: rotate(4.5deg) scale(1.02); }
  100% { transform: rotate(4deg) scale(1); opacity: 1; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 2px 6px rgba(199, 59, 43, 0.25); }
  50% { box-shadow: 0 4px 14px rgba(199, 59, 43, 0.4); }
}

.hero-paper {
  animation: float 4s ease-in-out infinite;
}

.hero-paper-2 {
  animation: float-delayed 3.6s ease-in-out infinite;
}

.hero-stamp {
  opacity: 0;
  animation: stamp-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.step-icon-inner {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #F5F0E8;
    flex-direction: column;
    padding: 20px;
    gap: 14px;
    border-bottom: 1px solid #E0D5C8;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 250ms ease-out, opacity 250ms ease-out;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    height: 240px;
  }

  .hero-paper-1 {
    width: 170px;
    height: 110px;
    bottom: 50px;
    left: 5px;
  }

  .hero-paper-2 {
    width: 140px;
    height: 90px;
    bottom: 40px;
    right: 5px;
  }

  .hero-stamp {
    width: 48px;
    height: 56px;
    bottom: 80px;
    right: 20px;
  }

  .hero-stamp::after {
    font-size: 18px;
  }

  .hero-desk {
    left: -10px;
    right: -10px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .helpers-grid {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .scoring-grid {
    grid-template-columns: 1fr;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-page-title {
    font-size: 26px;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-page-question {
    font-size: 15px;
    padding: 16px 18px;
  }

  .faq-page-answer {
    padding: 0 18px 18px;
  }

  .faq-question {
    padding: 14px 18px;
  }

  .faq-answer {
    padding: 0 18px 14px;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-visual {
    height: 180px;
  }

  .hero-paper-1 {
    width: 140px;
    height: 90px;
  }

  .hero-paper-2 {
    width: 110px;
    height: 70px;
  }

  .hero-stamp {
    width: 40px;
    height: 48px;
    bottom: 65px;
    right: 15px;
  }

  .hero-desk {
    height: 60px;
  }
}

.auth-card {
  max-width: 420px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
}

.auth-form-title {
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.auth-desc {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.auth-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #fff;
  color: #444;
  border: 1px solid #dadce0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 180ms ease-out, background 180ms ease-out;
  width: 100%;
}

.btn-google:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.btn-google:active {
  transform: translateY(1px);
}

.clerk-user-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.settings-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto;
}

.settings-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border, #E0D5C8);
  color: var(--text);
}

.settings-body {
  padding: 1rem 1.25rem 1.25rem;
}

.settings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.settings-row + .settings-row {
  border-top: 1px solid #F0EAE3;
}

.settings-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.settings-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.settings-edit-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: #C73B2B;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 150ms ease-out;
}

.settings-edit-btn:hover {
  background: rgba(199, 59, 43, 0.08);
}

.settings-edit-form {
  padding: 0.75rem 0 0.25rem;
}

@media (max-width: 768px) {
  .settings-grid {
    margin: 0;
  }

  .settings-row {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .settings-edit-form > div:first-child {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .settings-card {
    border-radius: 0;
    margin: 0 -1rem;
  }

  .settings-body {
    padding: 1rem;
  }

  .settings-edit-form > div:first-child {
    flex-direction: column;
  }
}

.auth-placeholder {
  text-align: center;
  padding: 3rem 1rem;
}

.auth-placeholder h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.auth-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
