:root {
  --color-brand-primary: #2d4f3a;
  --color-brand-primary-hover: #223e2d;
  --color-brand-accent: #d4a534;
  --color-brand-accent-hover: #e5b94a;
  --color-surface-base: #faf8f3;
  --color-surface-raised: #ffffff;
  --color-text-primary: #2a2a2a;
  --color-text-inverse: #ffffff;
  --color-text-muted: #6b6b6b;
  --color-feedback-error: #9d2b2b;
  --color-focus-ring: var(--color-brand-accent);
  --font-heading: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 999px;
  --shadow-goose: 0 22px 50px rgba(45, 79, 58, 0.16);
  --duration-fast: 180ms;
  --duration-normal: 350ms;
  --easing-standard: ease;
  --forest: var(--color-brand-primary);
  --gold: var(--color-brand-accent);
  --cream: var(--color-surface-base);
  --charcoal: var(--color-text-primary);
  --soft: var(--color-text-muted);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100vh;
}

::selection {
  background: var(--gold);
  color: var(--charcoal);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 800;
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 3px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  padding: 0.95rem 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(42, 42, 42, 0.18);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--color-brand-accent-hover);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: white;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: white;
  color: var(--forest);
}

.btn-forest {
  background: var(--forest);
  color: white;
}

.btn-forest:hover,
.btn-forest:focus-visible {
  background: var(--color-brand-primary-hover);
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  margin: 0 auto 3rem;
  max-width: 740px;
  text-align: center;
}

.section-heading h2,
.section-title {
  color: var(--forest);
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--soft);
  font-size: 1.1rem;
  line-height: 1.8;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-note {
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2rem;
  background: rgba(250, 248, 243, 0.9);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
  color: var(--charcoal);
  padding: 1.5rem;
  transform: rotate(3deg);
}

.feature-card,
.pricing-card,
.promise-card,
.contact-form,
.trust-panel {
  border: 1px solid rgba(45, 79, 58, 0.12);
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 18px 44px rgba(45, 79, 58, 0.08);
}

.feature-card,
.pricing-card,
.promise-card {
  padding: 1.75rem;
}

.feature-card,
.industry-card,
.pricing-card,
.promise-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.industry-card:hover,
.pricing-card:hover,
.promise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 165, 52, 0.5);
  box-shadow: 0 24px 54px rgba(45, 79, 58, 0.14);
}

.icon-badge {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  background: rgba(212, 165, 52, 0.18);
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 900;
}

.feature-card h3,
.industry-card h3,
.pricing-card h3,
.promise-card h3 {
  margin-top: 1.3rem;
  color: var(--forest);
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.feature-card p,
.industry-card p,
.promise-card p {
  margin-top: 0.75rem;
  color: var(--soft);
  line-height: 1.7;
}

.check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.check-item::before {
  content: "OK";
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(212, 165, 52, 0.22);
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 900;
  margin-top: 0.1rem;
}

.industry-card {
  overflow: hidden;
  border: 1px solid rgba(45, 79, 58, 0.1);
  border-radius: 1.5rem;
  background: white;
  box-shadow: 0 18px 44px rgba(45, 79, 58, 0.08);
}

.industry-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.industry-card div {
  padding: 1.5rem;
}

.price {
  margin-top: 1.25rem;
  color: var(--charcoal);
  font-size: 2.65rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price span,
.bundle-price span {
  color: var(--soft);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hosting {
  margin-top: 0.25rem;
  color: var(--forest);
  font-weight: 800;
}

.pricing-card ul {
  margin-top: 1.6rem;
  display: grid;
  gap: 0.85rem;
  color: var(--charcoal);
}

.pricing-card li {
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
}

.pricing-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
}

.pricing-card .fit {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(45, 79, 58, 0.12);
  padding-top: 1.2rem;
  color: var(--soft);
  font-weight: 700;
  line-height: 1.6;
}

.pricing-card.popular {
  position: relative;
  border: 2px solid var(--gold);
  transform: translateY(-0.8rem);
}

.popular-badge {
  position: absolute;
  right: 1.3rem;
  top: 1.3rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
}

.bundle-card {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: 1.5rem;
  background: var(--forest);
  color: white;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(45, 79, 58, 0.18);
}

.bundle-card h3 {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 800;
}

.bundle-card p:not(.eyebrow) {
  margin-top: 0.5rem;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.bundle-price {
  color: var(--gold);
  font-size: 2.7rem;
  font-weight: 900;
  white-space: nowrap;
}

.timeline {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.timeline-item {
  position: relative;
  border: 1px solid rgba(45, 79, 58, 0.12);
  border-radius: 1.5rem;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 18px 44px rgba(45, 79, 58, 0.08);
}

.timeline-item span {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 900;
}

.timeline-item h3 {
  margin-top: 1.2rem;
  color: var(--forest);
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.timeline-item p {
  margin-top: 0.5rem;
  color: var(--soft);
  line-height: 1.7;
}

.promise-card {
  background: var(--cream);
}

.promise-card p {
  color: var(--charcoal);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--forest);
  font-weight: 800;
}

.contact-form label em {
  color: var(--soft);
  font-style: normal;
  font-weight: 600;
}

.contact-form label strong {
  color: var(--color-feedback-error);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 79, 58, 0.2);
  border-radius: 1rem;
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 600;
  outline: none;
  padding: 0.9rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] {
  border-color: var(--color-feedback-error);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 165, 52, 0.18);
}

.form-message {
  min-height: 1.5rem;
  color: var(--forest);
  font-weight: 800;
}

.form-message.error {
  color: var(--color-feedback-error);
}

.trust-panel {
  overflow: hidden;
}

.trust-panel img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.trust-panel div {
  padding: 2rem;
  color: var(--soft);
  line-height: 1.8;
}

.trust-panel a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: rgba(212, 165, 52, 0.8);
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.18em;
}

.footer-title {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.floating-goose {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 40;
  width: 68px;
  height: 68px;
  border: 3px solid var(--gold);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(42, 42, 42, 0.22);
  transform: rotate(4deg);
  pointer-events: none;
}

.floating-goose img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
}

.chat-toggle {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 18px 38px rgba(42, 42, 42, 0.24);
  transition: transform var(--duration-fast) var(--easing-standard), box-shadow var(--duration-fast) var(--easing-standard);
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(42, 42, 42, 0.3);
}

.chat-toggle svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 5.25rem;
  display: grid;
  width: min(410px, calc(100vw - 2rem));
  max-height: min(680px, calc(100vh - 7rem));
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  border: 1px solid rgba(45, 79, 58, 0.18);
  border-radius: 1.6rem;
  background: white;
  box-shadow: 0 28px 70px rgba(42, 42, 42, 0.28);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--easing-standard), transform var(--duration-fast) var(--easing-standard);
}

.chat-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--forest);
  color: white;
  padding: 1rem;
}

.chat-header img {
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius-full);
  object-fit: cover;
}

.chat-header h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.chat-header p {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.online-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: var(--radius-full);
  background: #72df8a;
}

.chat-close {
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.5rem 0.75rem;
  transition: background var(--duration-fast) var(--easing-standard), color var(--duration-fast) var(--easing-standard);
}

.chat-close:hover,
.chat-close:focus-visible {
  background: white;
  color: var(--forest);
}

.chat-messages {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 0.8rem;
  overflow-y: auto;
  background: #f4f1e9;
  padding: 1rem;
}

.chat-message {
  max-width: 86%;
  border-radius: 1.2rem;
  padding: 0.8rem 0.95rem;
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.chat-message.bot {
  align-self: flex-start;
  border-bottom-left-radius: 0.35rem;
  background: var(--cream);
  color: var(--charcoal);
  box-shadow: 0 8px 18px rgba(45, 79, 58, 0.08);
}

.chat-message.user {
  align-self: flex-end;
  border-bottom-right-radius: 0.35rem;
  background: var(--forest);
  color: white;
}

.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.typing-indicator span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: var(--radius-full);
  background: var(--soft);
  animation: typing-bounce 400ms infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 120ms;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(45, 79, 58, 0.1);
  background: white;
  padding: 0.8rem 1rem;
}

.chat-quick-replies button {
  flex: 1 1 calc(50% - 0.5rem);
  border: 1px solid rgba(45, 79, 58, 0.16);
  border-radius: var(--radius-full);
  background: var(--cream);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  white-space: normal;
  transition: border-color var(--duration-fast) var(--easing-standard), transform var(--duration-fast) var(--easing-standard);
}

.chat-quick-replies button:hover,
.chat-quick-replies button:focus-visible {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  border-top: 1px solid rgba(45, 79, 58, 0.1);
  background: white;
  padding: 1rem;
}

.chat-form input {
  min-width: 0;
  border: 1px solid rgba(45, 79, 58, 0.18);
  border-radius: var(--radius-full);
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 600;
  outline: none;
  padding: 0.85rem 1rem;
}

.chat-form input:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 165, 52, 0.18);
}

.chat-form button {
  border-radius: var(--radius-full);
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 900;
  padding: 0.85rem 1rem;
  transition: background var(--duration-fast) var(--easing-standard), transform var(--duration-fast) var(--easing-standard);
}

.chat-form button:hover,
.chat-form button:focus-visible {
  background: var(--color-brand-accent-hover);
  transform: translateY(-1px);
}

.chat-form button:disabled,
.chat-form input:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

@keyframes typing-bounce {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--duration-normal) var(--easing-standard), transform var(--duration-normal) var(--easing-standard);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-sm {
  transition-delay: 120ms;
}

.reveal-delay-md {
  transition-delay: 160ms;
}

@media (max-width: 767px) {
  .site-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.25rem;
    background: rgba(45, 79, 58, 0.98);
    padding: 0.75rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu .nav-link,
  .site-menu .btn {
    justify-content: flex-start;
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .pricing-card.popular {
    transform: none;
  }

  .bundle-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .floating-goose {
    width: 58px;
    height: 58px;
  }

  .chat-widget {
    inset: auto 0 0 0;
  }

  .chat-toggle {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 4rem;
    height: 4rem;
  }

  .chat-panel {
    position: fixed;
    inset: 0;
    width: 100vw;
    max-height: none;
    min-height: 100vh;
    border-radius: 0;
    transform: translateY(100%);
  }

  .chat-panel.is-open {
    transform: translateY(0);
  }

  .chat-messages {
    min-height: 0;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-quick-replies button {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
