.feature-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  min-height: 300px;
  padding: 31px 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.feature-card:hover {
  border-color: #d5dde8;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--page-blue);
}

.feature-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.feature-card h3 {
  margin: 28px 0 0;
  font-size: 20px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.showcase {
  padding-top: 166px;
}

.showcase-row {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 86px;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.showcase-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.section-number {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.showcase-copy h2 {
  font-size: clamp(36px, 4.7vw, 54px);
}

.showcase-copy > p {
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.check-list {
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: #343a43;
  font-size: 14px;
  font-weight: 580;
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--blue-light);
  content: "✓";
  font-size: 10px;
  font-weight: 900;
}

.illustration-panel,
.editor-demo,
.metadata-demo {
  position: relative;
  min-height: 505px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--page-soft);
}

.folder-panel {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #edf5ff, #f9fbfd 65%);
}

.folder-panel > img {
  position: relative;
  z-index: 2;
  width: 64%;
  filter: drop-shadow(0 23px 28px rgba(53, 92, 140, 0.2));
}

.folder-orbit {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(100, 154, 222, 0.2);
  border-radius: 50%;
}

.folder-orbit::before,
.folder-orbit::after {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(100, 154, 222, 0.17);
  border-radius: inherit;
  content: "";
}

.folder-orbit::after { inset: 88px; }

.floating-file {
  position: absolute;
  z-index: 3;
  width: 93px;
  padding: 7px;
  border: 1px solid rgba(213, 224, 237, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.floating-file img {
  width: 100%;
  height: 65px;
  object-fit: cover;
  border-radius: 9px;
}

.floating-file span {
  display: block;
  padding-top: 5px;
  color: #6b7481;
  font-size: 9px;
  font-weight: 760;
  text-align: center;
}

.file-one { top: 56px; right: 46px; transform: rotate(6deg); }
.file-two { bottom: 53px; left: 44px; transform: rotate(-7deg); }

.editor-demo {
  background: #18202b;
  box-shadow: var(--shadow-md);
}

.editor-photo {
  width: 100%;
  height: 100%;
  min-height: 505px;
  object-fit: cover;
}

.edit-toolbar {
  position: absolute;
  top: 22px;
  left: 50%;
  display: flex;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(18, 24, 34, 0.64);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.edit-toolbar i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
}

.adjustment-panel {
  position: absolute;
  top: 24px;
  right: 22px;
  width: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  color: #fff;
  background: rgba(20, 28, 39, 0.62);
  backdrop-filter: blur(15px);
}

.adjustment-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 9px 0;
  font-size: 10px;
}

.adjustment-panel b {
  grid-column: 1 / -1;
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
}

.adjustment-panel b::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--value);
  border-radius: inherit;
  background: #69a7ff;
  content: "";
}

.adjustment-panel small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
}

.metadata-demo {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(145deg, #f0f5fb, #fbfcfd);
}

.metadata-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.metadata-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metadata-photo span {
  position: absolute;
  bottom: 17px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 9px;
  color: #f7c635;
  background: rgba(16, 22, 32, 0.62);
  font-size: 11px;
  letter-spacing: 2px;
  backdrop-filter: blur(10px);
}

.metadata-sheet {
  align-self: center;
  padding: 22px;
  border: 1px solid #dce3eb;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.sheet-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.sheet-title img {
  width: 22px;
  height: 22px;
}

.sheet-title strong {
  font-size: 12px;
}

.metadata-sheet dl div {
  padding: 10px 0;
  font-size: 10px;
}

.map-lines {
  position: relative;
  height: 105px;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 12px;
  background: #eaf2eb;
}

.map-lines::before { width: 170px; height: 70px; top: 15px; left: -35px; transform: rotate(18deg); }
.map-lines::after { width: 150px; height: 58px; right: -50px; bottom: 5px; transform: rotate(-17deg); }
.map-lines span { position: absolute; top: 45px; left: 55%; width: 13px; height: 13px; border: 3px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 2px 6px rgba(0,0,0,.22); }

.privacy-band {
  margin-top: 112px;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

.privacy-inner {
  min-height: 590px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 95px;
  padding-block: 104px;
}

.privacy-copy h2 {
  color: #fff;
  font-size: clamp(42px, 5.3vw, 64px);
}

.privacy-copy > p {
  margin: 25px 0 0;
  color: #aeb8c7;
  font-size: 16px;
  line-height: 1.82;
}

.privacy-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 21px;
}

.button-light {
  color: var(--night);
  background: #fff;
}

.button-light:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dce6f4;
  font-size: 14px;
  font-weight: 680;
}

.privacy-points {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-points > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-points > div > span {
  color: #669ff2;
  font-size: 11px;
  font-weight: 760;
}

.privacy-points p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.privacy-points strong {
  font-size: 17px;
}

.privacy-points small {
  margin-top: 5px;
  color: #9da9b8;
  font-size: 13px;
  line-height: 1.6;
}

.details-section {
  padding-top: 112px;
}

.detail-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 76px;
  padding: 65px 68px;
  border-radius: var(--radius-lg);
  background: var(--page-soft);
}

.detail-card h2 {
  font-size: clamp(34px, 4.3vw, 49px);
}

.detail-card > div:first-child p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.detail-list {
  border-top: 1px solid var(--line-strong);
}

.detail-list p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 13px;
}

.detail-list span {
  color: var(--ink-faint);
}

.detail-list strong {
  font-weight: 680;
  text-align: right;
}

.faq {
  padding-top: 140px;
  padding-bottom: 145px;
}

.faq .section-heading {
  width: min(660px, 100%);
}

.faq-list {
  margin-top: 55px;
  border-top: 1px solid var(--line-strong);
}

.faq details {
  border-bottom: 1px solid var(--line-strong);
}

.faq summary {
  position: relative;
  padding: 26px 50px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 680;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease;
}

.faq summary::after {
  transform: rotate(90deg);
}

.faq details[open] summary::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 820px;
  margin: -4px 0 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fafbfc;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  padding-top: 62px;
  padding-bottom: 52px;
}

.footer-brand > p {
  max-width: 370px;
  margin: 20px 0 0;
  color: var(--ink-faint);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 150px);
  gap: 25px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 12px;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--blue);
}

.footer-bottom {
  padding-top: 20px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 11px;
}
