:root {
  --navy: #07172c;
  --ink: #10243d;
  --blue: #195780;
  --orange: #ff6534;
  --orange-dark: #d94c24;
  --mint: #5dd6a7;
  --cream: #f8faf7;
  --muted: rgba(16, 36, 61, .7);
  --line: rgba(16, 36, 61, .12);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 22px 60px rgba(6, 18, 35, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.notice {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 9px 18px;
  color: white;
  background: var(--orange);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: white;
  background: rgba(7, 23, 44, .92);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

.logo {
  width: 620px;
  min-width: 520px;
  height: 144px;
  padding: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav > a {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 24px);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a {
  opacity: .76;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  opacity: 1;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang,
.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: white;
  font-weight: 850;
}

.icon-button {
  display: none;
}

.cta,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta {
  border: 0;
  background: var(--orange);
  color: white;
  box-shadow: 0 14px 35px rgba(255, 101, 52, .25);
}

.cta:hover {
  background: var(--orange-dark);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, .28);
  color: white;
  background: rgba(255, 255, 255, .04);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, .98), rgba(7, 23, 44, .82) 48%, rgba(7, 23, 44, .34)),
    url("webresenje-hero-slika.png") center / cover;
}

.hero-inner {
  max-width: 1180px;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(66px, 9vw, 116px) clamp(20px, 5vw, 44px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .06);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(93, 214, 167, .12);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 820px;
  margin: 28px 0 20px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .95;
}

.lead {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(7, 23, 44, .7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel strong {
  display: block;
  color: var(--mint);
  font-size: 44px;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.section {
  padding: clamp(62px, 9vw, 108px) clamp(20px, 5vw, 72px);
}

.section.alt {
  background: white;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .54fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(16, 36, 61, .12);
  background: white;
  box-shadow: 0 18px 48px rgba(4, 12, 24, .07);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 58px 18px 22px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

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

.package {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 45px rgba(16, 36, 61, .08);
}

.package.support {
  min-height: auto;
  margin-top: 16px;
  color: white;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-color: rgba(255, 255, 255, .16);
}

.package.support .price {
  color: var(--mint);
}

.package.support p,
.package.support .feature-list li {
  color: rgba(255, 255, 255, .78);
}

.flex-package {
  border-color: #dfe5ec;
  box-shadow: 0 20px 54px rgba(16, 36, 61, .12);
}

.flex-package::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 96px;
  background: var(--navy);
  z-index: 0;
}

.flex-package > * {
  position: relative;
  z-index: 1;
}

.flex-package .badge {
  color: white;
  background: transparent;
  padding: 0;
  letter-spacing: .16em;
}

.flex-package h3 {
  margin-top: 44px;
}

.flex-package .badge + h3 {
  color: var(--navy);
  margin-top: 56px;
  min-height: 0;
}

.flex-package p {
  margin-top: 12px;
}

.new-banner {
  position: absolute;
  top: -13px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  min-width: 64px;
  padding: 0 13px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.flex-price {
  margin-top: 24px;
  color: var(--orange);
  background: transparent;
  box-shadow: none;
}

.flex-price small {
  margin-top: 4px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
  opacity: 1;
}

.monthly-package {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: auto;
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dfe5ec;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 36, 61, .12);
}

.monthly-info,
.monthly-includes {
  padding: clamp(32px, 4vw, 48px);
}

.monthly-info {
  border-right: 1px solid #edf1f5;
}

.monthly-package h3 {
  margin: 20px 0 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
}

.monthly-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: 17px;
}

.monthly-price strong {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 42px);
  line-height: 1;
}

.monthly-info p {
  max-width: 460px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.monthly-includes ul {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.monthly-includes li {
  position: relative;
  padding-left: 34px;
}

.monthly-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  color: #14bf62;
  font-size: 20px;
  font-weight: 950;
}

.monthly-includes strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.3;
}

.monthly-includes span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.package.featured {
  color: white;
  background: var(--navy);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 30px 90px rgba(7, 23, 44, .26);
}

.badge {
  align-self: flex-start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: white;
  background: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.package h3 {
  margin: 24px 0 12px;
  color: inherit;
  font-size: 25px;
}

.price {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.featured .price {
  color: var(--mint);
}

.price small {
  display: block;
  margin-top: 9px;
  color: currentColor;
  font-size: 13px;
  font-weight: 750;
  opacity: .72;
}

.package p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.featured p {
  color: rgba(255, 255, 255, .72);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(16, 36, 61, .74);
  line-height: 1.45;
}

.featured .feature-list li {
  color: rgba(255, 255, 255, .78);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
}

.package .cta,
.package .secondary-dark {
  margin-top: auto;
}

.secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  background: white;
}

.featured .secondary-dark {
  color: white;
  border-color: rgba(255, 255, 255, .24);
  background: transparent;
}

.compare {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.compare div {
  min-height: 92px;
  padding: 18px;
  background: white;
}

.compare strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.compare span {
  color: var(--muted);
  line-height: 1.45;
}

.legal-section {
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: white;
}

.legal-inner {
  max-width: 980px;
  margin: 0 auto;
}

.legal-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(16, 36, 61, .12);
  background: white;
  box-shadow: 0 20px 54px rgba(16, 36, 61, .08);
}

.legal-card h2 {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.legal-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p {
  margin: 0;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: white;
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(16, 36, 61, .12);
  background: white;
  box-shadow: 0 20px 54px rgba(16, 36, 61, .08);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(16, 36, 61, .12);
}

.blog-card.featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 23, 44, .96), rgba(25, 87, 128, .92)),
    url("webresenje-hero-slika.png") center / cover;
}

.blog-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: white;
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card.featured .blog-tag {
  background: var(--mint);
  color: var(--navy);
}

.blog-card h3 {
  margin: 22px 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
}

.blog-card.featured h3 {
  color: white;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.blog-card.featured p {
  color: rgba(255, 255, 255, .78);
}

.blog-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 22px;
  color: rgba(16, 36, 61, .58);
  font-size: 13px;
  font-weight: 800;
}

.blog-card.featured .blog-meta {
  color: rgba(255, 255, 255, .68);
}

.blog-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-top: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card.featured .blog-link {
  color: var(--mint);
}

.article-section {
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: white;
}

.article-inner {
  max-width: 920px;
  margin: 0 auto;
}

.article-body {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(16, 36, 61, .12);
  background: white;
  box-shadow: 0 20px 54px rgba(16, 36, 61, .08);
}

.article-body h2 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.article-body h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 22px;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-body a {
  color: var(--orange);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-note {
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: #f8faf7;
}

.article-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-values {
  display: grid;
  gap: 12px;
}

.about-value {
  padding: 20px;
  border: 1px solid rgba(16, 36, 61, .12);
  background: white;
  box-shadow: 0 18px 48px rgba(16, 36, 61, .07);
}

.about-value strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.about-value span {
  color: var(--muted);
  line-height: 1.6;
}

.about-highlight {
  padding: clamp(22px, 4vw, 34px);
  color: white;
  background:
    linear-gradient(135deg, rgba(7, 23, 44, .97), rgba(25, 87, 128, .92)),
    url("webresenje-hero-slika.png") center / cover;
  box-shadow: var(--shadow);
}

.about-highlight strong {
  display: block;
  margin-bottom: 14px;
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .9;
}

.about-highlight p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
}

.contact-section {
  padding: clamp(62px, 9vw, 108px) clamp(20px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 23, 44, .97), rgba(25, 87, 128, .9)),
    url("webresenje-hero-slika.png") center / cover;
}

.contact-inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .74fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  margin: 0 auto;
}

.contact-section h2 {
  margin: 12px 0 18px;
  color: white;
  font-size: clamp(34px, 5vw, 60px);
}

.contact-section .section-copy {
  color: rgba(255, 255, 255, .76);
}

.selected-package {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 26px;
  padding: 0 14px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(7, 23, 44, .74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.field label span {
  color: rgba(255, 255, 255, .5);
  font-weight: 750;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 12px 13px;
  color: white;
  background: rgba(255, 255, 255, .08);
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--mint);
}

.field input[readonly] {
  color: var(--mint);
  font-weight: 850;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.5;
}

.final-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(38px, 5vw, 62px) clamp(20px, 5vw, 72px);
  color: white;
  background: linear-gradient(90deg, rgba(7, 23, 44, .98), rgba(25, 87, 128, .9));
}

.final-band h2 {
  margin: 0;
  color: white;
  font-size: clamp(31px, 5vw, 54px);
}

.site-footer {
  color: white;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 58px);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 70px) clamp(20px, 5vw, 44px);
}

.footer-brand img {
  width: 520px;
  height: 116px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-col p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 16px;
  color: white;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-col address {
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .72);
}

.footer-links a:hover {
  color: white;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
}

.social-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: white;
  font-weight: 950;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom-inner {
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 44px);
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .76);
}

@media (max-width: 1080px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav.menu-open .nav-links {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    flex-basis: 100%;
    gap: 0;
    padding-top: 8px;
    border-top: 1px solid var(--line-light);
  }

  .nav.menu-open .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    opacity: 1;
  }

  .icon-button {
    display: grid;
  }

  .hero-inner,
  .section-head,
  .about-story,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

  .package-grid.two {
    grid-template-columns: 1fr;
  }

  .package {
    min-height: auto;
  }

  .monthly-package {
    grid-template-columns: 1fr;
  }

  .monthly-info {
    border-right: 0;
    border-bottom: 1px solid #edf1f5;
  }

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

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

@media (max-width: 720px) {
  .notice {
    font-size: 12px;
  }

  .nav {
    min-height: 82px;
    padding: 10px 16px 10px 8px;
  }

  .nav > a:first-child {
    margin-left: -50px;
  }

  .logo {
    width: min(326px, calc(100vw - 90px));
    min-width: 0;
    height: 78px;
  }

  .footer-brand img {
    width: min(340px, 88vw);
    height: 78px;
  }

  .actions .cta,
  .lang {
    display: none;
  }

  h1 {
    font-size: clamp(38px, 11.5vw, 58px);
  }

  .hero-inner {
    min-height: auto;
    padding: 26px 18px 42px;
    gap: 22px;
  }

  .hero {
    background-position: 58% center;
  }

  .eyebrow {
    min-height: 30px;
    font-size: 11px;
  }

  h1 {
    margin: 14px 0 14px;
    overflow-wrap: anywhere;
  }

  .lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-panel {
    padding: 18px;
  }

  .compare,
  .package-grid,
  .blog-grid,
  .form-grid,
  .final-band {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 16px 50px 16px 18px;
    line-height: 1.35;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .monthly-info,
  .monthly-includes {
    padding: 26px 22px;
  }

  .monthly-includes ul {
    gap: 18px;
  }

  .final-band .cta {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Phase 8 accessibility hardening */
:where(a, button, input, textarea, summary):focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

:where(.cta, .secondary, .secondary-dark, .lang, .icon-button):focus-visible {
  box-shadow: 0 0 0 4px rgba(93, 214, 167, .24);
}

button:disabled,
.cta:disabled {
  cursor: wait;
  opacity: .72;
}

.form-note[role="status"],
.campaign-form-note[role="status"] {
  min-height: 1.4em;
}

.nav.menu-open .nav-links a:focus-visible {
  outline-offset: -2px;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  background: #07172c;
}

.error-shell {
  width: min(760px, calc(100% - 40px));
  padding: clamp(42px, 8vw, 84px) 0;
  text-align: center;
}

.error-logo {
  width: min(420px, 86vw);
  height: auto;
  margin: 0 auto 34px;
  filter: brightness(0) invert(1);
}

.error-shell h1 {
  margin: 12px 0 18px;
  color: #fff;
}

.error-shell p {
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.65;
}

.error-shell .hero-actions {
  justify-content: center;
  margin-top: 30px;
}