:root {
  --primary: #014454;
  --primary-deep: #002c38;
  --accent: #45a6b6;
  --accent-soft: #b3d4e3;
  --cta-fill: #8edcf0;
  --cta-fill-strong: #7dd5eb;
  --cta-text: #042f39;
  --surface: #fdf9f2;
  --surface-alt: #e9f0f6;
  --surface-muted: #efe8de;
  --text: #1c1c17;
  --text-soft: #536268;
  --white: #ffffff;
  --line: rgba(1, 68, 84, 0.12);
  --shadow-soft: 0 24px 60px rgba(0, 44, 56, 0.08);
  --shadow-strong: 0 36px 80px rgba(0, 44, 56, 0.18);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --container: min(1280px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background: var(--surface);
}

header,
main,
section,
footer {
  max-width: 100vw;
  overflow-x: clip;
}

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

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

button,
a.button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(1, 68, 84, 0.14);
  backdrop-filter: blur(14px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(1, 68, 84, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.nav-bar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-header .brand,
.site-header a {
  color: var(--white);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.nav-login {
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-links a.is-active,
.nav-links a[aria-current="page"] {
  opacity: 1;
  color: #d8f6ff;
  border-bottom: 2px solid rgba(216, 246, 255, 0.9);
  padding-bottom: 4px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: scale(1.02);
}

.button-pill {
  border-radius: 999px;
  font-weight: 700;
}

.button-light {
  background: linear-gradient(180deg, var(--cta-fill) 0%, var(--cta-fill-strong) 100%);
  color: var(--cta-text);
  box-shadow: 0 18px 40px rgba(3, 31, 39, 0.18);
}

.site-header .button-light {
  color: #000000;
}

.button-accent {
  background: linear-gradient(180deg, var(--cta-fill) 0%, var(--cta-fill-strong) 100%);
  color: var(--cta-text);
  box-shadow: 0 22px 50px rgba(3, 31, 39, 0.22);
}

.button-accent-soft {
  background: #93ebff;
  color: var(--primary-deep);
}

.button-dark {
  background: var(--primary-deep);
  color: var(--white);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-section {
  position: relative;
  min-height: 940px;
  padding: 112px 0 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(69, 166, 182, 0.2), transparent 34%),
    linear-gradient(180deg, #014454 0%, #0a5161 100%);
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -58%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(0, 44, 56, 0.34);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-stack {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
  transition:
    opacity 220ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-carousel.is-animating {
  pointer-events: none;
}

.hero-carousel.is-jump-fade {
  opacity: 0;
  transform: scale(0.985) translateY(10px);
}

.profile-card,
.gallery-card,
.testimonial-card,
.feature-panel {
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.profile-card:hover,
.gallery-card:hover,
.testimonial-card:hover,
.feature-panel:hover {
  box-shadow: 0 42px 94px rgba(0, 0, 0, 0.3);
}

.profile-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  background: #d5e1e8;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  left: 50%;
  top: 50%;
  width: 308px;
  height: 420px;
  transform-origin: center center;
  will-change: transform, opacity;
}

.profile-card.slot-hidden-left {
  transform: translate(-246%, -34%) rotate(-14deg) scale(0.72);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

.profile-card img,
.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.profile-card.slot-far-left {
  transform: translate(-182%, -35%) rotate(-11deg) scale(1);
  z-index: 1;
  opacity: 0.98;
}

.profile-card.slot-left {
  transform: translate(-126%, -42%) rotate(-4deg) scale(1.08);
  z-index: 2;
  opacity: 1;
}

.profile-card.slot-center {
  width: 362px;
  height: 492px;
  transform: translate(-50%, -50%) rotate(1.5deg) scale(1.06);
  z-index: 4;
  border: 2px solid rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.profile-card.slot-right {
  transform: translate(28%, -42%) rotate(4deg) scale(1.08);
  z-index: 3;
  opacity: 1;
}

.profile-card.slot-far-right {
  transform: translate(82%, -35%) rotate(10deg) scale(1);
  z-index: 1;
  opacity: 0.98;
}

.profile-card.slot-hidden-right {
  transform: translate(144%, -34%) rotate(14deg) scale(0.72);
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

.profile-card:not(.slot-center) .profile-overlay {
  padding: 18px;
}

.profile-card:not(.slot-center) .profile-overlay strong {
  font-size: 1.18rem;
}

.profile-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.profile-overlay strong {
  font-size: 1.4rem;
  font-weight: 700;
}

.profile-card.slot-center .profile-overlay strong {
  font-size: 1.9rem;
}

.verified-icon {
  color: #88d7f2;
  font-size: 1.2rem;
}

.profile-overlay-main {
  display: block;
  padding: 26px 24px;
}

.profile-overlay-main strong {
  display: block;
  font-size: 1.8rem;
}

.profile-overlay-main p {
  margin: 8px 0 0;
  font-size: 1rem;
  opacity: 0.84;
}

.hero-carousel .profile-card {
  cursor: pointer;
}

.hero-carousel .profile-card.is-animating {
  transition:
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    width 780ms cubic-bezier(0.16, 1, 0.3, 1),
    height 780ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 700ms ease,
    box-shadow 700ms ease,
    visibility 0ms linear;
}

.hero-cta {
  margin-top: -8px;
  text-align: center;
}

.button-hero {
  min-height: 62px;
  padding-inline: 40px;
  font-size: 1.08rem;
}

.hero-cta p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.profiles-section,
.features-section,
.stories-section {
  padding: 110px 0;
}

.profiles-section,
.features-section,
.stories-section,
.download-section,
.site-footer {
  overflow: hidden;
}

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

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.two-column-layout > *,
.feature-grid > *,
.testimonial-stack > * {
  min-width: 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #5f8290;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker-line {
  width: 44px;
  height: 1px;
  background: rgba(69, 166, 182, 0.7);
}

.section-copy h2,
.section-heading h2,
.download-card h2 {
  margin: 18px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.section-copy h2 span {
  color: var(--accent);
}

.section-copy p,
.section-heading p,
.download-card p,
.footer-brand p,
.footer-copy {
  color: var(--text-soft);
  line-height: 1.8;
}

.section-copy > p {
  max-width: 42ch;
  margin: 26px 0 0;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 34px 0 38px;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
}

.section-copy .button-dark {
  display: flex;
  width: fit-content;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(147, 235, 255, 0.55);
  color: var(--primary);
}

.trust-chip strong,
.testimonial-user strong {
  display: block;
  font-weight: 700;
}

.trust-chip span,
.testimonial-user span {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.gallery-stage {
  position: relative;
  min-height: 540px;
}

.gallery-plate {
  position: absolute;
  inset: 64px 36px 54px;
  border-radius: 40px;
  background: rgba(147, 235, 255, 0.18);
  transform: rotate(-6deg);
}

.gallery-card {
  position: absolute;
  overflow: hidden;
  background: #d6e3ea;
  box-shadow: var(--shadow-strong);
}

.gallery-card-main {
  top: 84px;
  left: 50%;
  width: 300px;
  height: 408px;
  transform: translateX(-50%);
  border-radius: 34px;
  border: 4px solid var(--white);
  z-index: 3;
}

.gallery-card-main:hover {
  transform: translateX(-50%) translateY(-6px);
}

.gallery-card-left {
  top: 42px;
  left: 54px;
  width: 200px;
  height: 274px;
  border-radius: 28px;
  transform: rotate(-12deg);
  z-index: 2;
}

.gallery-card-left:hover {
  transform: rotate(-8deg) translateY(-6px);
}

.gallery-card-right {
  right: 16px;
  bottom: 34px;
  width: 220px;
  height: 300px;
  border-radius: 28px;
  transform: rotate(11deg);
  z-index: 1;
}

.gallery-card-right:hover {
  transform: rotate(7deg) translateY(-6px);
}

.gallery-badge,
.gallery-heart {
  position: absolute;
  top: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
}

.gallery-badge {
  right: 16px;
  color: var(--accent);
}

.gallery-heart {
  left: 16px;
  color: #f16b7e;
}

.gallery-label,
.mini-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 0;
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.mini-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: #93ebff;
  color: var(--primary-deep);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.features-section {
  position: relative;
  background:
    radial-gradient(circle at 20% 0%, rgba(179, 212, 227, 0.18), transparent 22%),
    radial-gradient(circle at 85% 100%, rgba(1, 68, 84, 0.06), transparent 26%),
    var(--surface);
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.download-card h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.section-heading p {
  max-width: 42ch;
  margin: 16px auto 0;
}

.feature-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.feature-panel {
  padding: 46px 32px;
  border-radius: 30px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.feature-panel-highlight {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-22px);
  box-shadow: 0 34px 80px rgba(1, 68, 84, 0.28);
}

.feature-panel-highlight:hover {
  transform: translateY(-28px);
}

.feature-panel-offset {
  transform: translateY(18px);
}

.feature-panel-offset:hover {
  transform: translateY(12px);
}

.feature-icon-wrap {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 0 auto 30px;
  border-radius: 26px;
  background: rgba(147, 235, 255, 0.3);
  color: var(--primary);
  box-shadow: 0 0 30px rgba(147, 235, 255, 0.36);
}

.feature-panel-highlight .feature-icon-wrap {
  background: #93ebff;
}

.feature-icon-wrap .material-symbols-outlined {
  font-size: 2.2rem;
}

.feature-panel h3,
.testimonial-card-main p {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.feature-panel h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.feature-panel p {
  margin: 18px 0 0;
  line-height: 1.8;
  color: var(--text-soft);
}

.feature-panel-highlight p {
  color: rgba(255, 255, 255, 0.82);
}

.stories-section {
  background: linear-gradient(180deg, var(--surface) 0%, #faf6ef 100%);
}

.testimonial-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  margin-top: 58px;
}

.testimonial-card {
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(0, 44, 56, 0.1);
}

.testimonial-card-left {
  transform: rotate(-5deg);
}

.testimonial-card-left:hover {
  transform: rotate(-3deg) translateY(-6px);
}

.testimonial-card-right {
  transform: rotate(5deg);
}

.testimonial-card-right:hover {
  transform: rotate(3deg) translateY(-6px);
}

.testimonial-card-main {
  position: relative;
  z-index: 2;
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 38px 90px rgba(1, 68, 84, 0.3);
}

.testimonial-card-main:hover {
  transform: scale(1.08) translateY(-6px);
}

.testimonial-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #79d5e6;
}

.testimonial-card p {
  margin: 24px 0 26px;
  line-height: 1.8;
  color: var(--primary-deep);
  font-style: italic;
}

.testimonial-card-main p {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(1, 68, 84, 0.1);
}

.testimonial-card-main .testimonial-user {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.testimonial-user img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card-main .testimonial-user strong,
.testimonial-card-main .testimonial-user span {
  color: var(--white);
}

.download-section {
  padding: 0 0 110px;
  background: var(--surface);
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: 72px 28px;
  border-radius: 36px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(119, 212, 229, 0.32), transparent 34%),
    linear-gradient(180deg, #014454 0%, #0b5667 100%);
}

.download-card p {
  max-width: 44ch;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.74);
}

.download-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.download-feedback {
  min-height: 28px;
  margin: 18px auto 0;
  color: #bfefff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.download-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: var(--surface-muted);
  border-top: 1px solid rgba(1, 68, 84, 0.08);
}

.footer-shell {
  padding: 40px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.footer-brand-word {
  color: var(--primary-deep);
  font-size: 2rem;
}

.footer-brand p {
  max-width: 24ch;
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding-top: 12px;
}

.footer-links a,
.footer-copy {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.footer-copy {
  padding-top: 12px;
  text-align: right;
}

.page-header {
  background: rgba(1, 68, 84, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.page-main {
  padding: 138px 0 100px;
  background:
    radial-gradient(circle at top, rgba(69, 166, 182, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbfe 0%, #fdf9f2 100%);
}

.page-hero {
  padding-bottom: 32px;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(69, 166, 182, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.page-hero h1 {
  margin: 18px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.5rem, 4.4vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--primary-deep);
}

.page-hero p {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.page-card {
  padding: 38px;
  border: 1px solid rgba(1, 68, 84, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.page-card + .page-card {
  margin-top: 22px;
}

.page-card h2 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
}

.page-card p,
.page-card li,
.contact-panel p,
.contact-panel a {
  color: var(--text-soft);
  line-height: 1.85;
}

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

.page-card strong {
  color: var(--text);
}

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

.contact-panel {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(1, 68, 84, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
}

.contact-panel a {
  color: var(--primary);
  font-weight: 700;
}

.page-footer {
  margin-top: 56px;
}

@media (max-width: 1180px) {
  .hero-section {
    min-height: 860px;
  }

  .hero-stack {
    min-height: 600px;
  }

  .hero-carousel {
    min-height: 600px;
  }

  .profile-card {
    width: 286px;
    height: 392px;
  }

  .profile-card.slot-far-left {
    transform: translate(-170%, -35%) rotate(-11deg) scale(0.98);
  }

  .profile-card.slot-left {
    transform: translate(-118%, -42%) rotate(-4deg) scale(1.04);
  }

  .profile-card.slot-center {
    width: 336px;
    height: 458px;
  }

  .profile-card.slot-right {
    transform: translate(22%, -42%) rotate(4deg) scale(1.04);
  }

  .profile-card.slot-far-right {
    transform: translate(74%, -35%) rotate(10deg) scale(0.98);
  }

  .two-column-layout,
  .contact-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-copy {
    text-align: center;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .page-main {
    padding: 126px 0 92px;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(1280px, calc(100% - 32px));
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 72px;
  }

  .hero-watermark {
    top: 230px;
    transform: translateX(-50%);
  }

  .hero-stack {
    min-height: 760px;
  }

  .hero-carousel {
    min-height: 760px;
  }

  .profile-card {
    width: 246px;
    height: 338px;
  }

  .profile-card.slot-hidden-left {
    transform: translate(-188%, -44%) rotate(-14deg) scale(0.66);
  }

  .profile-card.slot-far-left {
    transform: translate(-152%, -44%) rotate(-11deg) scale(0.86);
  }

  .profile-card.slot-left {
    transform: translate(-104%, -45%) rotate(-4deg) scale(0.99);
  }

  .profile-card.slot-center {
    width: 296px;
    height: 412px;
    transform: translate(-50%, -48%) rotate(1.5deg) scale(1.02);
  }

  .profile-card.slot-right {
    transform: translate(8%, -45%) rotate(4deg) scale(0.99);
  }

  .profile-card.slot-far-right {
    transform: translate(52%, -44%) rotate(10deg) scale(0.86);
  }

  .profile-card.slot-hidden-right {
    transform: translate(102%, -44%) rotate(14deg) scale(0.66);
  }

  .two-column-layout,
  .feature-grid,
  .testimonial-stack {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    min-height: 500px;
  }

  .feature-panel-highlight,
  .feature-panel-offset,
  .feature-panel-highlight:hover,
  .feature-panel-offset:hover {
    transform: none;
  }

  .testimonial-card,
  .testimonial-card-main,
  .testimonial-card-left,
  .testimonial-card-right,
  .testimonial-card-main:hover,
  .testimonial-card-left:hover,
  .testimonial-card-right:hover {
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    background: rgba(1, 68, 84, 0.88);
  }

  .nav-bar {
    min-height: 74px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .nav-login {
    display: none;
  }

  .nav-actions .button-light {
    display: none;
  }

  .hero-section {
    padding-top: 96px;
  }

  .hero-watermark {
    top: 170px;
    font-size: 5.8rem;
  }

  .hero-stack {
    min-height: 520px;
  }

  .hero-carousel {
    min-height: 520px;
  }

  .profile-card {
    width: 172px;
    height: 244px;
  }

  .profile-card.slot-far-left {
    transform: translate(-108%, -41%) rotate(-10deg) scale(0.9);
  }

  .profile-card.slot-left {
    transform: translate(-88%, -42%) rotate(-5deg) scale(0.97);
  }

  .profile-card.slot-center {
    width: 224px;
    height: 314px;
    transform: translate(-50%, -44%) rotate(1.5deg);
  }

  .profile-card.slot-right {
    transform: translate(4%, -42%) rotate(5deg) scale(0.97);
  }

  .profile-card.slot-far-right {
    transform: translate(34%, -41%) rotate(10deg) scale(0.9);
  }

  .profile-overlay strong {
    font-size: 1.02rem;
  }

  .profile-overlay-main strong {
    font-size: 1.3rem;
  }

  .profile-overlay-main p {
    font-size: 0.86rem;
  }

  .hero-cta {
    margin-top: 10px;
  }

  .button-hero {
    min-height: 56px;
    padding-inline: 28px;
    font-size: 1rem;
  }

  .profiles-section,
  .features-section,
  .stories-section,
  .download-section {
    padding-block: 84px;
  }

  .section-copy h2,
  .section-heading h2,
  .download-card h2 {
    font-size: 1.9rem;
  }

  .section-copy h2 span {
    display: block;
  }

  .trust-chip {
    display: flex;
    width: 100%;
    margin-bottom: 18px;
  }

  .section-copy .button-dark {
    width: 100%;
    justify-content: center;
  }

  .gallery-stage {
    min-height: 400px;
  }

  .page-main {
    padding: 112px 0 80px;
  }

  .page-card,
  .contact-panel {
    padding: 26px;
    border-radius: 24px;
  }

  .gallery-plate {
    inset: 52px 18px 34px;
    border-radius: 28px;
  }

  .gallery-card-main {
    width: 206px;
    height: 286px;
  }

  .gallery-card-left {
    left: 6px;
    width: 132px;
    height: 188px;
  }

  .gallery-card-right {
    right: 0;
    width: 144px;
    height: 208px;
  }

  .feature-panel {
    padding: 34px 24px;
  }

  .feature-panel h3 {
    font-size: 1.65rem;
  }

  .testimonial-card-main p {
    font-size: 1.2rem;
  }

  .download-card {
    padding: 56px 22px;
    border-radius: 28px;
  }
}
