:root {
  --navy: #0B1320;
  --navy-deep: #050b13;
  --navy-soft: #101d2c;
  --gold: #D4AF37;
  --gold-light: #f1d889;
  --white: #F4F4F4;
  --muted: #b9c0ca;
  --gray: #6B6B6B;
  --border: rgba(212, 175, 55, 0.24);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy-deep);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  background: rgba(5, 11, 19, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 5px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 21px;
}

.site-nav > a:not(.nav-cta) {
  color: #dce0e5;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--gold-light);
}

.lang-switch {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  background: transparent;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
}

.nav-cta {
  padding: 11px 17px;
  background: var(--gold);
  border-radius: 999px;
  color: #0b111a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--white);
}

.hero {
  min-height: 820px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.13), transparent 28%),
    linear-gradient(125deg, #0b1725 0%, #050b13 62%, #0b1320 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 75px 75px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-glow-one {
  width: 320px;
  height: 320px;
  right: 5%;
  top: 25%;
  background: rgba(212, 175, 55, 0.08);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  left: -170px;
  bottom: -150px;
  background: rgba(42, 90, 130, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 74px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 6vw, 82px);
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d0d5dc;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #090d13;
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.16);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--gold);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d4d9df;
  font-size: 12px;
}

.hero-points i {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold-light);
  font-style: normal;
}

.hero-points b {
  font-weight: 600;
}

.hero-logo-card {
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  padding: 24px 24px 18px;
  background: linear-gradient(150deg, rgba(16, 29, 44, 0.9), rgba(4, 9, 15, 0.96));
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.hero-logo-card::before,
.hero-logo-card::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-color: var(--gold);
  opacity: 0.55;
}

.hero-logo-card::before {
  left: -12px;
  top: -12px;
  border-left: 1px solid;
  border-top: 1px solid;
}

.hero-logo-card::after {
  right: -12px;
  bottom: -12px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.hero-logo-card img {
  width: 100%;
  border-radius: 18px;
}

.gold-line {
  height: 1px;
  margin: 18px 0 13px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-logo-card p {
  margin: 0;
  text-align: center;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--white);
  color: var(--navy);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid #dedede;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid article {
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 24px 18px;
  border-right: 1px solid #dedede;
}

.trust-grid article:last-child {
  border-right: 0;
}

.mini-icon {
  margin-bottom: 12px;
  color: #b48a27;
  font-size: 27px;
  line-height: 1;
}

.trust-grid strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-grid span {
  display: block;
  margin-top: 5px;
  color: #666;
  font-size: 11px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 46px;
}

.section-heading.compact {
  max-width: 680px;
}

.section h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
}

.section-heading > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.services {
  background:
    radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.07), transparent 26%),
    var(--navy);
}

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

.service-card {
  position: relative;
  min-height: 290px;
  padding: 31px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -45px -80px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 175, 55, .48);
  background: linear-gradient(145deg, rgba(212,175,55,.08), rgba(255,255,255,.02));
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.06);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}


.packages {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.11), transparent 32%),
    linear-gradient(180deg, #07101a 0%, #0b1320 100%);
}

.packages::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(255,255,255,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.55) 1px, transparent 1px);
  background-size: 68px 68px;
}

.packages .container {
  position: relative;
  z-index: 1;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, .46);
  box-shadow: 0 32px 75px rgba(0,0,0,.24);
}

.package-card.featured {
  border-color: rgba(212, 175, 55, .72);
  background:
    linear-gradient(155deg, rgba(212,175,55,.12), rgba(255,255,255,.025)),
    #0c1724;
  box-shadow: 0 30px 75px rgba(0,0,0,.28), 0 0 0 1px rgba(212,175,55,.08);
}

.popular-label {
  position: absolute;
  top: 0;
  right: 24px;
  padding: 8px 14px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0a1018;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.package-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.package-medal {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  box-shadow: inset 0 0 20px rgba(255,255,255,.04);
}

.package-silver .package-medal {
  color: #e2e4e8;
  border-color: rgba(220,224,230,.5);
  background: linear-gradient(145deg, rgba(220,224,230,.16), rgba(255,255,255,.025));
}

.package-gold .package-medal {
  color: var(--gold-light);
  border-color: rgba(212,175,55,.68);
  background: linear-gradient(145deg, rgba(212,175,55,.22), rgba(255,255,255,.025));
}

.package-platinum .package-medal {
  color: #f5f6f7;
  border-color: rgba(238,241,245,.68);
  background: linear-gradient(145deg, rgba(238,241,245,.19), rgba(120,130,142,.04));
}

.package-kicker {
  margin: 0 0 3px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.package-description {
  min-height: 116px;
  margin: 24px 0 16px;
  color: #c5cbd2;
  font-size: 14px;
}

.package-best {
  margin: 0 0 24px;
  padding: 14px 15px;
  border-left: 2px solid var(--gold);
  background: rgba(212,175,55,.055);
  color: #c8ced5;
  font-size: 12px;
}

.package-best span {
  color: var(--gold-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.package-best strong {
  color: #eef1f4;
  font-weight: 600;
}

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

.package-list li {
  position: relative;
  padding-left: 25px;
  color: #d6dbe1;
  font-size: 13px;
  line-height: 1.55;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-light);
  font-weight: 800;
}

.package-reason {
  margin: 26px 0 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.package-reason strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}

.package-reason p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.package-button {
  width: 100%;
  margin-top: auto;
  border-color: rgba(212,175,55,.42);
  background: transparent;
  color: var(--gold-light);
}

.package-button:hover {
  background: rgba(212,175,55,.08);
}

.package-button-gold {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #090d13;
}

.package-button-gold:hover {
  background: linear-gradient(135deg, #f4dd98, #d9b642);
}

.package-disclaimer {
  max-width: 920px;
  margin: 32px auto 0;
  color: #949daa;
  text-align: center;
  font-size: 11px;
}

.about {
  background: var(--white);
  color: var(--navy);
}

.about .eyebrow {
  color: #a27619;
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(11, 19, 32, 0.16);
}

.about-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-around;
  gap: 12px;
  padding: 17px 20px;
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 16px;
  background: rgba(5, 11, 19, 0.88);
  color: var(--gold-light);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.about-copy h2 {
  color: var(--navy);
}

.about-copy > p:not(.eyebrow) {
  color: #535b65;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid #ddd;
}

.feature-list > div > span {
  color: #a27619;
  font-weight: 700;
  font-size: 12px;
}

.feature-list p {
  display: grid;
  margin: 0;
}

.feature-list strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}

.feature-list small {
  margin-top: 3px;
  color: #69717a;
  font-size: 13px;
}

.process {
  background:
    linear-gradient(rgba(5,11,19,.86), rgba(5,11,19,.94)),
    url("assets/logo-full.png") center / cover no-repeat;
  background-attachment: fixed;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-step {
  min-height: 260px;
  padding: 34px;
  border-top: 1px solid var(--gold);
  background: rgba(11, 19, 32, 0.76);
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.process-step > span {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .15em;
}

.process-step h3 {
  margin: 50px 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  background: linear-gradient(135deg, #101d2c 0%, #07101a 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.contact-details > * {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.contact-details > * > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold-light);
}

.contact-details div div {
  display: grid;
}

.contact-details small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.contact-details strong {
  margin-top: 3px;
  font-size: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: #e5e8ec;
  font-size: 12px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  outline: none;
  background: rgba(255,255,255,.045);
  color: var(--white);
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form select option {
  color: #111;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.11);
}

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

.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  padding: 27px 0;
  border-top: 1px solid rgba(212,175,55,.18);
  background: #040910;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 34px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 4px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 14px;
}

.footer-brand small,
.site-footer p,
.site-footer a {
  color: #8f99a5;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 82px 0 0;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 35px 25px;
    background: rgba(5, 11, 19, 0.98);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav > a,
  .site-nav .lang-switch {
    margin: 0;
    padding: 17px 5px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    text-align: left;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    border-radius: 999px;
    text-align: center;
  }

  .menu-button {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo-card {
    max-width: 650px;
  }

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

  .trust-grid article:nth-child(3) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n+3) {
    border-bottom: 1px solid #dedede;
  }

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

  .package-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .package-description {
    min-height: auto;
  }

  .about-grid {
    gap: 48px;
  }

  .about-image img {
    min-height: 420px;
  }

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

  .process-step {
    min-height: 220px;
  }

  .process-step h3 {
    margin-top: 32px;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 35px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 8px;
  }

  .site-nav {
    inset: 72px 0 0;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 12px;
  }

  .hero-logo-card {
    padding: 14px 14px 12px;
    border-radius: 20px;
  }

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

  .trust-grid article,
  .trust-grid article:nth-child(3) {
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
  }

  .trust-grid article:nth-child(even) {
    border-right: 0;
  }

  .trust-grid article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding: 80px 0;
  }

  .section h2 {
    font-size: 39px;
  }

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

  .service-card {
    min-height: 250px;
  }

  .about-image img {
    min-height: 310px;
  }

  .about-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    font-size: 8px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .full-width {
    grid-column: auto;
  }

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

  .footer-brand {
    justify-content: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
