:root {
  --bg: #f5f2eb;
  --surface: #ffffff;
  --surface-soft: #fbf8f2;
  --ink: #22201c;
  --muted: #615b53;
  --line: rgba(34, 32, 28, 0.12);
  --brand: #44b53c;
  --brand-dark: #2d8d2b;
  --dark: #1e211d;
  --dark-soft: #2a2f28;
  --shadow: 0 22px 54px rgba(24, 25, 23, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-logo-band {
  background: #fff;
  padding: 1.5rem 0;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.section-dark .eyebrow {
  color: #9fe59a;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2,
.site-footer h2,
.site-footer h3,
.testimonial-card h3,
.problem-card h3,
.install-step h3,
.install-support-card h3,
.price-card h3,
.contact-feature-copy h2,
.cta-copy h2 {
  font-family: "Raleway", sans-serif;
}

.section-heading h2,
.contact-feature-copy h2,
.cta-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.section-subheading {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.35;
  color: var(--text);
}

.section-heading p,
.lead-paragraph {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .lead-paragraph,
.section-dark .price-list,
.section-dark .price-card p {
  color: rgba(247, 246, 242, 0.84);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
}

.section-dark .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid rgba(34, 32, 28, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-right: auto;
}

.brand-dot {
  color: var(--brand);
}

.site-nav {
  margin-left: auto;
}

.nav-list,
.nav-dropdown-menu,
.footer-list,
.support-list,
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-list a,
.nav-dropdown-toggle {
  color: var(--ink);
  font-size: 1rem;
  font-family: "Poppins", "Roboto", system-ui, sans-serif;
  font-weight: 400;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.8rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  min-width: 240px;
  padding: 0.75rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-soft);
}

.nav-dropdown-menu img {
  width: auto;
  height: 20px;
}

.header-login {
  margin-left: 0.75rem;
  padding: 0.5rem 1.55rem;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.nav-login-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: end;
  overflow: clip;
  background: #1b1d19;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 24, 20, 0.82) 0%, rgba(22, 24, 20, 0.72) 38%, rgba(22, 24, 20, 0.25) 74%, rgba(22, 24, 20, 0.15) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 7.1rem;
  padding-bottom: 8rem;
  display: flex;
  justify-content: flex-start;
}

.hero-copy {
  max-width: 560px;
  color: #fff;
  margin-left: 0;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.06;
}

.hero-lead {
  max-width: 560px;
  margin: 0 0 1.1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-strong {
  margin: 0 0 1.6rem;
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-contact-line {
  margin: 0 0 1.6rem;
  padding-top: 0.85rem;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions .btn-secondary,
.hero-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-ski-ribbon {
  position: absolute;
  top: 1.2rem;
  left: 0;
  z-index: 2;
  width: 100%;
}

.hero-ski-ribbon a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  max-width: min(760px, calc(100% - 2rem));
  margin-left: max(1rem, calc((100vw - var(--container)) / 2));
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: transparent;
  color: #fff;
}

.hero-ski-ribbon img {
  width: auto;
  height: 50px;
}

@media (min-width: 1024px) {
  .hero {
    background-image: url("/assets-ng/img/jens-rygg-i-koket-lowres-4.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .hero-image {
    display: none;
  }
}

.logo-marquee {
  display: flex;
  overflow: hidden;
  gap: 1rem;
  padding: 0.15rem 0;
  align-items: center;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: max-content;
  animation: marquee 34s linear infinite;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 68px;
  padding: 0.35rem 0.9rem;
}

.logo-badge img {
  max-height: 47px;
  width: auto;
}

.logo-places-marquee {
  display: flex;
  overflow: hidden;
  gap: 1rem;
  margin-top: 0.55rem;
  padding: 0.15rem 0 0;
  border-top: 1px solid rgba(29, 31, 28, 0.08);
}

.logo-places-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  min-width: max-content;
  animation: marquee-reverse 30s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 31, 28, 0.58);
}

.logo-places-track span {
  position: relative;
  white-space: nowrap;
}

.logo-places-track span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.72rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(29, 31, 28, 0.28);
  transform: translateY(-50%);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 1rem)); }
}

@keyframes marquee-reverse {
  from { transform: translateX(calc(-100% - 1rem)); }
  to { transform: translateX(0); }
}

.testimonial-grid,
.problem-grid,
.simple-system-grid,
.pricing-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.testimonial-logo-offspring {
  width: 76px;
  height: 76px;
}

.testimonial-stars {
  margin-bottom: 0.85rem;
  color: #f6b700;
  letter-spacing: 0.08em;
}

.testimonial-quote {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.testimonial-meta {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-card {
  position: relative;
  height: 100%;
  padding: 2rem 1.5rem 1.55rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: -3.4rem auto 1rem;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 25px rgba(24, 25, 23, 0.08);
}

.stat-icon svg {
  width: 1.55rem;
  height: 1.55rem;
}

.stat-value {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #676767;
}

.stat-label {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  color: var(--muted);
}

.problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.problem-card {
  padding: 1.65rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(51, 203, 72, 0.1);
  border: 1px solid rgba(51, 203, 72, 0.18);
}

.problem-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.problem-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.problem-card p {
  margin: 0;
  color: rgba(247, 246, 242, 0.82);
}

.simple-system-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.simple-system-card {
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-system-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.simple-system-card:nth-child(1) .simple-system-icon {
  background: rgba(51, 203, 72, 0.18);
  color: #58d96b;
  border: 1px solid rgba(88, 217, 107, 0.28);
}

.simple-system-card:nth-child(2) .simple-system-icon {
  background: rgba(231, 76, 60, 0.18);
  color: #ff6b5f;
  border: 1px solid rgba(255, 107, 95, 0.28);
}

.simple-system-card:nth-child(3) .simple-system-icon {
  background: rgba(58, 123, 213, 0.18);
  color: #66a3ff;
  border: 1px solid rgba(102, 163, 255, 0.28);
}

.simple-system-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.simple-system-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
  color: #fff;
}

.simple-system-card p {
  margin: 0;
  color: rgba(247, 246, 242, 0.82);
}

.how-column {
  max-width: 860px;
}

.install-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.install-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(24, 25, 23, 0.06);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.install-step h3,
.install-support-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.18rem;
}

.install-step p,
.install-support-card p,
.support-list li {
  margin: 0;
  color: var(--muted);
}

.lead-followup {
  margin: 1rem 0 0;
  max-width: 760px;
  color: var(--muted);
}

.contact-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: center;
}

.contact-feature-media {
  display: flex;
  justify-content: center;
}

.contact-feature-media img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-feature-copy p {
  color: var(--muted);
}

.contact-feature-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card-featured {
  background: linear-gradient(180deg, rgba(68, 181, 60, 0.16) 0%, rgba(68, 181, 60, 0.08) 100%);
  border-color: rgba(159, 229, 154, 0.36);
}

.price-label {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #9fe59a;
  font-weight: 700;
}

.price-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.4rem;
}

.price-amount {
  margin: 0 0 1rem;
  font-family: "Raleway", sans-serif;
  font-size: 2.55rem;
  font-weight: 800;
  line-height: 1;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
}

.price-list {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.price-list li {
  position: relative;
  padding-left: 1.35rem;
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9fe59a;
  font-weight: 700;
}

.price-card .btn {
  display: flex;
  width: 100%;
}

.price-card .btn + .btn {
  margin-top: 0.7rem;
}

.site-footer {
  padding: 3.5rem 0;
  background: #141612;
  color: rgba(247, 246, 242, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 0.8rem;
  color: #fff;
}

.site-footer h2 {
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.site-footer h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer p,
.footer-list,
.footer-list a {
  font-family: "Raleway", sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
  max-width: 28rem;
}

.footer-brand {
  display: grid;
  gap: 0.95rem;
}

.footer-contact-block {
  display: grid;
  gap: 0.15rem;
  padding-top: 0.15rem;
}

.footer-contact-block p {
  max-width: none;
}

.footer-contact-block strong {
  color: #fff;
  font-weight: 700;
}

.footer-contact-block a {
  color: rgba(247, 246, 242, 0.92);
}

.footer-list {
  display: grid;
  gap: 0.55rem;
}

.footer-list a {
  color: rgba(247, 246, 242, 0.92);
}


.page-intro {
  padding: 4.75rem 0 2rem;
}

.page-intro .section-heading {
  margin-bottom: 0;
}

.order-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.order-card,
.order-summary,
.order-thanks {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.order-form {
  display: grid;
  gap: 1.5rem;
}

.form-section {
  display: grid;
  gap: 1rem;
}

.form-section-title {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
}

.form-section-copy {
  margin: -0.4rem 0 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 700;
  font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid rgba(34, 32, 28, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 1rem;
  font: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 0;
  border-color: rgba(68, 181, 60, 0.72);
  box-shadow: 0 0 0 3px rgba(68, 181, 60, 0.12);
}

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

.form-help {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check input {
  margin-top: 0.2rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.form-status,
.form-errors {
  padding: 1rem 1.1rem;
  border-radius: 10px;
}

.form-status {
  background: rgba(68, 181, 60, 0.12);
  color: #1f5f1d;
}

.form-errors {
  background: rgba(198, 40, 40, 0.1);
  color: #8f1f1f;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.1rem;
}

.order-summary {
  position: sticky;
  top: 6.6rem;
}

.order-summary h2,
.order-thanks h1 {
  margin: 0 0 0.85rem;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
}

.order-summary p,
.order-thanks p {
  color: var(--muted);
}

.summary-package {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(68, 181, 60, 0.12);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.summary-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.summary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.order-thanks {
  max-width: 760px;
}

.order-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

@media (min-width: 1280px) {
  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-card {
    padding: 1.45rem;
  }

  .price-card h3 {
    font-size: 1.25rem;
  }

  .price-amount {
    font-size: 2.15rem;
  }

  .price-list {
    gap: 0.55rem;
  }
}

@media (max-width: 1080px) {
  .testimonial-grid,
  .stats-grid,
  .problem-grid,
  .simple-system-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-feature {
    grid-template-columns: 1fr;
  }

  .order-shell {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
    order: 3;
  }

  .header-login {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-list a,
  .nav-dropdown-toggle {
    display: block;
    padding: 0.8rem 0.35rem;
  }

  .nav-login-mobile {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.3rem;
    box-shadow: none;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-ski-ribbon a {
    margin-left: 1rem;
    max-width: calc(100% - 2rem);
    padding: 0.65rem 0.8rem;
  }
}

@media (max-width: 680px) {
  .header-inner {
    gap: 0.5rem;
    flex-wrap: nowrap;
  }

  .brand {
    margin-right: auto;
  }

  .section,
  .section-tight {
    padding: 4rem 0;
  }

  .section-logo-band {
    padding: 0.8rem 0;
  }

  .logo-marquee {
    padding: 0;
  }

  .logo-track {
    gap: 0.3rem;
  }

  .logo-places-marquee {
    margin-top: 0.4rem;
  }

  .logo-places-track {
    gap: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .logo-badge {
    min-width: 106px;
    padding: 0.25rem 0.45rem;
  }

  .testimonial-grid,
  .stats-grid,
  .problem-grid,
  .simple-system-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .header-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    margin-left: auto;
    padding: 0.42rem 0.85rem;
    font-size: 12px;
    line-height: 1;
  }

  .brand {
    font-size: 1.55rem;
  }

  .nav-toggle {
    order: 3;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-inner {
    padding-top: 11.1rem;
  }

  .hero-ski-ribbon a {
    align-items: flex-start;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .hero-ski-ribbon img {
    height: 38px;
  }

  .logo-badge {
    min-width: 132px;
    height: 60px;
  }

  .install-step {
    grid-template-columns: 48px 1fr;
    padding: 1rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo-track,
  .btn,
  .site-nav,
  .nav-dropdown-menu {
    animation: none !important;
    transition: none !important;
  }
}
