:root {
  --red: rgba(254, 48, 41, 1);
  --orange: rgba(254, 141, 42, 1);
  --cream: rgba(255, 251, 242, 1);
  --security: rgba(254, 243, 216, 1);
  --ink: #232323;
  --muted: #696969;
  --shadow: 0 22px 60px rgba(160, 71, 21, .13);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

/* Shared header/navigation styles for index.html, about.html and delete.html */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(254, 141, 42, .08);
  backdrop-filter: blur(18px);
  transition: height .35s ease, box-shadow .35s ease, background .35s ease;
}
.site-header.scrolled {
  position: fixed;
  height: 72px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 34px rgba(55, 30, 15, .1);
  animation: headerDrop .45s cubic-bezier(.2,.8,.2,1) both;
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: -.5px; }
.logo-wrap {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 11px;
  transition: transform .55s cubic-bezier(.2,.9,.2,1), filter .4s ease;
}
.logo-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid transparent;
  border-radius: 15px;
  background: conic-gradient(from 0deg, var(--orange), var(--red), #ffd35a, var(--orange)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transform: rotate(-45deg) scale(.6);
  transition: opacity .35s ease, transform .65s cubic-bezier(.2,.9,.2,1);
}
.brand:hover .logo-wrap { transform: translateY(-3px) rotate(10deg) scale(1.08); filter: drop-shadow(0 10px 12px rgba(254,48,41,.3)); }
.brand:hover .logo-wrap::before { opacity: 1; transform: rotate(315deg) scale(1); }
.logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 42px; }
.nav-link {
  position: relative;
  padding: 28px 2px 25px;
  color: #3f3f3f;
  font-weight: 500;
  transition: color .32s ease, transform .32s ease, text-shadow .32s ease;
}
.scrolled .nav-link { padding-block: 22px 19px; }
.nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 3px 10px rgba(254, 48, 41, .45);
  transform: translateX(-50%);
  transition: width .42s cubic-bezier(.2,.9,.2,1);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  transform: translate(-50%, 7px) scale(0);
  transition: .35s ease;
}
.nav-link:hover, .nav-link:focus-visible, .nav-link.active, .nav-link[aria-current="page"] {
  color: var(--red);
  transform: translateY(-2px);
  text-shadow: 0 7px 20px rgba(254,48,41,.18);
}
.nav-link:hover::before, .nav-link:focus-visible::before, .nav-link.active::before, .nav-link[aria-current="page"]::before { width: 100%; }
.nav-link:hover::after, .nav-link.active::after, .nav-link[aria-current="page"]::after { opacity: 1; transform: translate(-50%, 0) scale(1); }
.nav-toggle { display: none; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px; border-radius: 2px; background: var(--red); transition: .3s ease; }

.hero {
  position: relative;
  aspect-ratio: 3840 / 1572;
  min-height: 640px;
  max-height: 820px;
  overflow: hidden;
  background-image: url("img/main-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 84px 0 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(254,64,37,.12), transparent 52%);
  mix-blend-mode: screen;
}
.hero-inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 78px; }
.hero-copy { width: 510px; color: #fff; transform: translateY(12px); }
.hero-copy .eyebrow { display: none; }
.hero h1 { margin: 0 0 32px; font-size: clamp(38px, 3.15vw, 62px); line-height: 1.35; letter-spacing: -2px; text-shadow: 0 10px 30px rgba(181,33,20,.22); }
.hero-copy > p:not(.eyebrow) { max-width: 485px; margin: 0 0 24px; font-size: 16px; line-height: 1.55; }
.hero-glow { position: absolute; z-index: 1; border-radius: 50%; pointer-events: none; filter: blur(2px); opacity: .7; }
.hero-glow-one { right: 22%; top: 25%; width: 18px; height: 18px; background: #fff2a0; box-shadow: 0 0 28px 8px #ffb32f; animation: sparkle 2.8s ease-in-out infinite; }
.hero-glow-two { right: 9%; bottom: 17%; width: 10px; height: 10px; background: #fff; box-shadow: 0 0 22px 7px #ffe095; animation: sparkle 2.3s .6s ease-in-out infinite; }

.section { position: relative; padding: 88px 0 96px; }
.section-heading { margin: 0 auto 54px; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 3vw, 47px); line-height: 1.25; letter-spacing: -1.8px; }
.section-heading > p:last-child { margin: 9px 0 0; color: #565656; }
.section-kicker { margin: 0 0 5px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; opacity: .86; }

.why-section { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px 58px; }
.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 205px;
  align-items: center;
  padding: 34px 38px;
  overflow: hidden;
  border: 1px solid var(--orange);
  border-radius: 16px;
  background: var(--cream);
  transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s ease, border-color .35s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -35%;
  width: 35%;
  height: 300%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  transform: rotate(22deg);
  transition: left .75s ease;
}
.feature-card:hover { transform: translateY(-10px) perspective(800px) rotateX(1.5deg); border-color: var(--red); box-shadow: var(--shadow); }
.feature-card:hover::before { left: 125%; }
.feature-icon { display: grid; width: 92px; height: 92px; place-items: center; transition: transform .5s cubic-bezier(.2,.9,.2,1); }
.feature-icon img { max-width: 88px; max-height: 82px; object-fit: contain; filter: drop-shadow(0 10px 8px rgba(224,100,18,.18)); }
.feature-card:hover .feature-icon { transform: rotate(-7deg) scale(1.12); }
.feature-card h3, .step h3, .commitment-copy h3, .security-copy h3, .footer-column h3 { margin: 0 0 10px; font-size: 16px; line-height: 1.35; }
.feature-card p, .step p, .commitment-copy p, .security-copy > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.how-section { overflow: hidden; background: #fff3d7; }
.how-section::before, .how-section::after { content: ""; position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(254,141,42,.18), transparent 68%); }
.how-section::before { top: -190px; left: -130px; width: 500px; height: 500px; }
.how-section::after { right: -180px; bottom: -240px; width: 600px; height: 600px; }
.how-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.how-visual { position: relative; }
.how-visual img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 25px 18px rgba(121,62,26,.16)); animation: phoneFloat 5s ease-in-out infinite; }
.visual-orbit { position: absolute; inset: 13% 8% 3%; border: 1px solid rgba(254,48,41,.22); border-radius: 50%; transform: rotate(-8deg); animation: orbitPulse 3s ease-in-out infinite; }
.steps { position: relative; padding-left: 15px; }
.steps::before { content: ""; position: absolute; top: 32px; bottom: 32px; left: 33px; border-left: 2px dashed rgba(254,80,35,.55); }
.step { position: relative; z-index: 1; display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; padding: 18px 0 40px; }
.step:last-child { padding-bottom: 18px; }
.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  box-shadow: 0 8px 18px rgba(254,48,41,.28);
  transition: transform .4s ease, box-shadow .4s ease;
}
.step:hover .step-number { transform: rotate(360deg) scale(1.13); box-shadow: 0 10px 24px rgba(254,48,41,.42); }

.commitment-section {
  min-height: 655px;
  overflow: hidden;
  background-color: #fff;
  background-image: url("img/our-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
.commitment-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; margin-top: 30px; }
.commitment-copy { max-width: 515px; }
.commitment-copy h3 { max-width: 500px; margin-bottom: 42px; font-size: 24px; }
.commitment-copy p { max-width: 500px; font-size: 14px; }
.commitment-visual { position: relative; display: grid; place-items: center; }
.commitment-visual img { position: relative; z-index: 2; width: 390px; filter: drop-shadow(0 24px 22px rgba(179,72,20,.16)); animation: hourglassFloat 4.6s ease-in-out infinite; }
.image-halo { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(255,200,80,.22), transparent 70%); animation: orbitPulse 3.4s ease-in-out infinite; }

.security-section { overflow: hidden; background: var(--security); }
.security-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.security-copy { max-width: 560px; }
.security-copy > p { max-width: 540px; margin-bottom: 28px; }
.security-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.security-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; text-transform: lowercase; transition: transform .3s ease, color .3s ease; }
.security-list li::first-letter { text-transform: uppercase; }
.security-list li:hover { color: var(--red); transform: translateX(8px); }
.security-list img { width: 25px; height: 25px; transition: transform .4s ease; }
.security-list li:hover img { transform: rotate(360deg) scale(1.12); }
.security-visual { position: relative; display: grid; place-items: center; }
.security-visual img { position: relative; z-index: 2; width: 405px; animation: shieldFloat 4.3s ease-in-out infinite; filter: drop-shadow(0 25px 24px rgba(194,83,22,.13)); }
.security-ring { position: absolute; width: 350px; height: 350px; border: 1px solid rgba(254,48,41,.18); border-radius: 50%; box-shadow: 0 0 0 25px rgba(254,141,42,.05), 0 0 0 55px rgba(254,48,41,.025); animation: ringSpin 12s linear infinite; }

/* Shared footer styles for index.html, about.html and delete.html */
.site-footer {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  background: #ffe6a5 url("img/bottom.png") center bottom / cover no-repeat;
}
.footer-shine { position: absolute; left: 50%; bottom: -170px; width: 650px; height: 360px; border-radius: 50%; background: rgba(255,225,77,.25); filter: blur(35px); transform: translateX(-50%); animation: footerGlow 4s ease-in-out infinite; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .7fr 1fr; gap: 110px; padding-top: 86px; }
.footer-brand p { max-width: 300px; margin: 26px 0 0; font-size: 15px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-column h3 { margin-bottom: 8px; font-size: 20px; }
.footer-column a { position: relative; font-size: 14px; transition: color .3s ease, transform .3s ease; }
.footer-column > a:not(.contact-link)::after { content: ""; position: absolute; right: 0; bottom: -2px; left: 0; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.footer-column a:hover { color: var(--red); transform: translateX(5px); }
.footer-column > a:hover::after { transform: scaleX(1); }
.contact-link { display: flex; align-items: center; gap: 13px; margin: 0; font-size: 14px; }
.contact-link img { width: 20px; height: 20px; object-fit: contain; }
.copyright { position: absolute; z-index: 2; right: 0; bottom: 18px; left: 0; text-align: center; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(34px) scale(.985); transition: opacity .75s ease var(--delay, 0s), transform .8s cubic-bezier(.2,.8,.2,1) var(--delay, 0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

@keyframes headerDrop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
@keyframes sparkle { 0%,100% { transform: scale(.55) rotate(0); opacity: .25; } 50% { transform: scale(1.4) rotate(90deg); opacity: 1; } }
@keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-14px) rotate(.5deg); } }
@keyframes hourglassFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes shieldFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-13px) rotate(1.5deg); } }
@keyframes orbitPulse { 0%,100% { transform: rotate(-8deg) scale(.96); opacity: .45; } 50% { transform: rotate(2deg) scale(1.04); opacity: 1; } }
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes footerGlow { 0%,100% { opacity: .45; transform: translateX(-50%) scale(.9); } 50% { opacity: .8; transform: translateX(-50%) scale(1.1); } }

@media (max-width: 1000px) {
  .hero { min-height: 610px; background-position: 57% center; }
  .hero-copy { width: 46%; }
  .hero h1 { font-size: 40px; }
  .feature-card { grid-template-columns: 90px 1fr; padding: 28px 24px; }
  .how-layout, .commitment-layout, .security-layout { gap: 35px; }
  .footer-grid { gap: 55px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, var(--container)); }
  .site-header, .site-header.scrolled { position: fixed; height: 68px; }
  .brand { font-size: 17px; }
  .logo-wrap { width: 34px; height: 34px; }
  .nav-toggle { display: block; position: relative; z-index: 4; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 360px);
    height: 100vh;
    padding: 110px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: -20px 0 45px rgba(60,25,10,.13);
    backdrop-filter: blur(20px);
    transform: translateX(110%);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link, .scrolled .nav-link { width: 100%; padding: 15px 0; font-size: 18px; }
  .nav-link::before { bottom: 8px; }
  .nav-link::after { bottom: 6px; }
  .hero { aspect-ratio: auto; min-height: 710px; background-position: 64% center; background-size: auto 710px; }
  .hero::before { content: ""; position: absolute; z-index: 1; inset: 68px 0 0; background: linear-gradient(90deg, rgba(254,64,37,.96) 0%, rgba(254,64,37,.87) 46%, rgba(254,64,37,.1) 100%); }
  .hero-inner { padding-top: 68px; align-items: center; }
  .hero-copy { width: min(88%, 490px); transform: translateY(0); }
  .hero h1 { margin-bottom: 24px; font-size: clamp(35px, 10vw, 48px); line-height: 1.22; }
  .hero-copy > p:not(.eyebrow) { font-size: 14px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2 { font-size: 34px; }
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { min-height: 175px; }
  .how-layout, .commitment-layout, .security-layout { grid-template-columns: 1fr; }
  .how-visual { max-width: 600px; margin: 0 auto; }
  .steps { max-width: 560px; margin: 0 auto; }
  .commitment-section { min-height: auto; background-size: auto 65%; }
  .commitment-copy { order: 2; }
  .commitment-visual { order: 1; }
  .commitment-copy h3 { margin-bottom: 24px; }
  .commitment-visual img, .security-visual img { width: min(78vw, 370px); }
  .security-copy { order: 2; }
  .security-visual { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; padding-top: 68px; padding-bottom: 100px; }
  .footer-brand { grid-column: 1 / -1; }
  .site-footer { min-height: 520px; }
}

@media (max-width: 480px) {
  .hero { min-height: 660px; background-position: 61% center; }
  .hero-copy { width: 100%; padding-right: 25px; }
  .hero h1 { font-size: 35px; letter-spacing: -1px; }
  .feature-card { grid-template-columns: 74px 1fr; padding: 24px 18px; }
  .feature-icon { width: 66px; height: 72px; }
  .feature-icon img { max-width: 62px; max-height: 64px; }
  .step { grid-template-columns: 40px 1fr; gap: 13px; }
  .steps::before { left: 18px; }
  .step-number { width: 36px; height: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .site-footer { min-height: 680px; }
  .copyright { padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Inner-page shared content */
.inner-page { background: #fffaf0; }
.inner-hero { position: relative; min-height: 510px; display: flex; align-items: center; overflow: hidden; color: #fff; background: url("img/main-bg.png") center / cover no-repeat; }
.inner-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(218,45,24,.9), rgba(254,91,37,.45) 60%, rgba(255,190,62,.12)); }
.inner-hero-content { position: relative; z-index: 1; max-width: 790px; padding-top: 70px; margin-left: max(24px, calc((100% - var(--container)) / 2)); }
.inner-hero h1 { margin: 0 0 24px; font-size: clamp(40px, 5vw, 70px); line-height: 1.18; letter-spacing: -2px; }
.inner-hero p:not(.section-kicker) { max-width: 650px; margin: 0; font-size: 17px; }
.inner-content-section { background: #fffaf0; }
.inner-content-grid, .deletion-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.inner-copy h2, .deletion-notes h2 { margin: 0 0 25px; font-size: clamp(32px, 3.5vw, 52px); line-height: 1.2; letter-spacing: -1.6px; }
.inner-copy p { max-width: 580px; color: var(--muted); }
.inner-art { display: grid; place-items: center; }
.inner-art img { width: min(100%, 470px); filter: drop-shadow(0 25px 20px rgba(179,72,20,.14)); animation: hourglassFloat 4.6s ease-in-out infinite; }
.deletion-hero { background-position: 60% center; }
.deletion-card { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 40px; border: 1px solid var(--orange); border-radius: 18px; background: var(--cream); box-shadow: var(--shadow); }
.deletion-card-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: rgba(254,141,42,.13); }
.deletion-card-icon img { width: 29px; }
.deletion-card h2 { margin: 0 0 15px; font-size: 24px; }
.deletion-card p { margin: 0 0 15px; color: var(--muted); font-size: 14px; }
.deletion-card p:last-child { margin-bottom: 0; }
.deletion-card a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.deletion-notes { padding: 35px; }
.deletion-notes .security-list { margin-top: 28px; }
@media (max-width: 760px) {
  .inner-hero { min-height: 580px; }
  .inner-hero-content { margin-inline: auto; padding-top: 68px; }
  .inner-content-grid, .deletion-layout { grid-template-columns: 1fr; gap: 35px; }
  .inner-copy { order: 2; }
  .inner-art { order: 1; }
  .deletion-card { padding: 28px 22px; }
  .deletion-notes { padding: 0; }
}

/* Data deletion page */
.delete-page { background: #fff; }
.delete-page main { overflow: hidden; }
.delete-hero {
  position: relative;
  min-height: 585px;
  display: flex;
  align-items: center;
  background: url("img/delete-bg2.png") center top / cover no-repeat;
}
.delete-hero::before {
  content: "";
  position: absolute;
  inset: 84px auto 0 0;
  width: 44%;
  background: radial-gradient(circle at 25% 50%, rgba(255,255,255,.18), transparent 68%);
  pointer-events: none;
}
.delete-hero-inner { position: relative; z-index: 1; padding-top: 84px; }
.delete-hero-copy { width: 530px; }
.delete-hero h1 { margin: 0 0 10px; color: #0c0c0c; font-size: clamp(38px, 3.1vw, 58px); line-height: 1.18; letter-spacing: -2.1px; }
.delete-hero h2 { max-width: 610px; margin: 0 0 28px; color: #101010; font-size: clamp(25px, 2vw, 37px); line-height: 1.36; letter-spacing: -.9px; }
.delete-hero p { max-width: 590px; margin: 0; color: #555; font-size: 16px; line-height: 1.7; }

.delete-section { position: relative; padding: 90px 0; background: #fff; }
.delete-heading { max-width: 930px; margin: 0 auto 54px; text-align: center; }
.delete-heading h2 { margin: 0; color: #242424; font-size: clamp(34px, 3vw, 48px); line-height: 1.22; letter-spacing: -1.8px; }
.delete-heading p { max-width: 860px; margin: 18px auto 0; color: #555; font-size: 14px; line-height: 1.65; }

.information-section { padding-bottom: 98px; }
.information-layout { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 360px; align-items: center; gap: 110px; }
.information-art { position: relative; display: grid; place-items: center; }
.information-art img { position: relative; z-index: 2; width: min(100%, 370px); filter: drop-shadow(0 26px 22px rgba(215, 107, 20, .16)); animation: deleteBellFloat 4.2s ease-in-out infinite; }
.information-orbit { position: absolute; width: 335px; height: 250px; border: 1px solid rgba(254, 141, 42, .18); border-radius: 50%; transform: rotate(-13deg); box-shadow: 0 0 0 25px rgba(254,141,42,.025); animation: deleteOrbit 6s linear infinite; }
.information-copy { max-width: 640px; }
.information-copy h3 { margin: 0 0 25px; font-size: 17px; }
.information-copy ul { margin: 0; padding-left: 24px; }
.information-copy li { margin: 8px 0; color: #444; font-weight: 500; font-size: 15px; line-height: 1.6; }
.information-copy li::marker { color: var(--orange); }

.process-section { padding: 0 0 88px; }
.process-panel {
  position: relative;
  padding: 68px 58px 62px;
  overflow: hidden;
  border: 1px solid rgba(254, 141, 42, .08);
  border-radius: 25px;
  background: rgba(255, 251, 242, 1);
  box-shadow: 0 25px 60px rgba(137, 84, 27, .06);
}
.process-panel::before { content: ""; position: absolute; top: -145px; left: 50%; width: 580px; height: 280px; border-radius: 50%; background: rgba(254,141,42,.08); filter: blur(28px); transform: translateX(-50%); }
.compact-heading { position: relative; z-index: 1; margin-bottom: 47px; }
.compact-heading h2 { font-size: clamp(31px, 2.5vw, 41px); }
.compact-heading p { margin-top: 12px; }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 125px 1fr 125px 1fr; align-items: start; }
.process-step { text-align: center; }
.process-icon { position: relative; display: grid; width: 80px; height: 80px; margin: 0 auto 19px; place-items: center; border-radius: 50%; transition: transform .45s cubic-bezier(.2,.9,.2,1), filter .4s ease; }
.process-icon::before { content: ""; position: absolute; inset: -9px; border: 1px solid rgba(254, 95, 35, .18); border-radius: 50%; opacity: 0; transform: scale(.7); transition: .4s ease; }
.process-icon img { width: 80px; height: 80px; }
.process-step:hover .process-icon { transform: translateY(-8px) rotate(-5deg) scale(1.08); filter: drop-shadow(0 14px 15px rgba(254,74,37,.2)); }
.process-step:hover .process-icon::before { opacity: 1; transform: scale(1); }
.process-copy h3 { margin: 0 0 7px; color: #171717; font-size: 14px; line-height: 1.45; }
.process-copy p { max-width: 260px; margin: 0 auto; color: #777; font-size: 12px; line-height: 1.55; }
.process-connector { width: 78px; margin: 39px auto 0; border-top: 2px dashed #9f9b93; opacity: .75; animation: connectorPulse 2.2s ease-in-out infinite; }

.request-guide-section { padding: 22px 0 105px; }
.request-guide-layout { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 390px; align-items: center; gap: 90px; }
.request-guide-copy { max-width: 640px; }
.request-guide-copy h3 { margin: 0 0 25px; color: #202020; font-size: 17px; }
.request-guide-copy p { margin: 0 0 26px; color: #777; font-size: 13px; line-height: 1.75; }
.request-guide-art { position: relative; display: grid; place-items: center; }
.request-guide-art img { position: relative; z-index: 2; width: min(100%, 390px); filter: drop-shadow(0 25px 22px rgba(198, 93, 13, .16)); animation: supportFloat 4.8s ease-in-out infinite; }
.request-guide-glow { position: absolute; width: 320px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(255,188,44,.25), transparent 70%); animation: guideGlow 3.5s ease-in-out infinite; }

.verification-section { position: relative; padding: 70px 0 82px; overflow: hidden; background: #fff2d1; }
.verification-section::before, .verification-section::after { content: ""; position: absolute; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.verification-section::before { top: -220px; left: -150px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(254,141,42,.13), transparent 67%); }
.verification-section::after { right: -170px; bottom: -270px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(254,48,41,.08), transparent 68%); }
.deletion-form { position: relative; z-index: 1; width: min(100%, 1080px); margin: 0 auto; padding: 58px 64px 65px; border: 1px solid rgba(255,255,255,.9); border-radius: 25px; background: rgba(255,255,255,.96); box-shadow: 0 28px 75px rgba(167, 94, 23, .12); }
.form-heading { margin-bottom: 42px; text-align: center; }
.form-kicker { display: inline-block; margin-bottom: 6px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.form-heading h2 { margin: 0; font-size: clamp(32px, 2.9vw, 45px); line-height: 1.25; letter-spacing: -1.4px; }
.form-heading p { margin: 10px 0 0; color: #777; font-size: 13px; }
.form-field { margin-bottom: 27px; }
.form-field label { display: inline-block; margin: 0 0 10px; color: #3b3b3b; font-size: 13px; font-weight: 500; }
.input-shell { position: relative; }
.input-shell input { width: 100%; height: 62px; padding: 0 52px 0 25px; border: 1px solid transparent; border-radius: 13px; outline: 0; color: #242424; background: #fff3d4; font: inherit; font-size: 14px; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease; }
.input-shell input::placeholder { color: #b0a999; }
.input-shell input:hover { background: #fff0c8; }
.input-shell input:focus { border-color: rgba(254,141,42,.55); background: #fffaf0; box-shadow: 0 0 0 5px rgba(254,141,42,.11), 0 12px 24px rgba(202,103,29,.08); transform: translateY(-1px); }
.field-icon { position: absolute; top: 50%; right: 22px; display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--orange), var(--red)); font-size: 12px; font-weight: 700; transform: translateY(-50%); }
.form-field small { display: block; margin-top: 8px; color: #8a8a8a; font-size: 11px; }
.captcha-row { display: grid; grid-template-columns: 1fr 132px; gap: 12px; }
.captcha-input-shell input { padding-right: 25px; }
.captcha-code { position: relative; min-width: 132px; height: 62px; overflow: hidden; border: 0; border-radius: 13px; color: #fff; background: linear-gradient(105deg, rgba(254,141,42,1), rgba(254,48,41,1)); box-shadow: 0 11px 24px rgba(254,72,39,.24); cursor: pointer; isolation: isolate; transition: transform .3s ease, box-shadow .3s ease; }
.captcha-code::before { content: ""; position: absolute; top: -80%; left: -35%; z-index: -1; width: 32px; height: 260%; background: rgba(255,255,255,.48); filter: blur(2px); transform: rotate(24deg); animation: captchaShine 2.8s ease-in-out infinite; }
.captcha-code::after { content: ""; position: absolute; inset: 5px; z-index: -1; border: 1px solid rgba(255,255,255,.32); border-radius: 9px; }
.captcha-code:hover { transform: translateY(-3px) scale(1.025); box-shadow: 0 16px 32px rgba(254,72,39,.34); }
.captcha-code:active { transform: scale(.97); }
#captcha-text { display: inline-block; min-width: 57px; font-size: 17px; font-weight: 800; letter-spacing: 2px; text-shadow: 0 2px 4px rgba(117,24,9,.25); }
.captcha-refresh { display: inline-block; margin-left: 7px; font-size: 21px; vertical-align: -1px; transition: transform .45s ease; }
.captcha-code:hover .captcha-refresh { transform: rotate(180deg); }
.captcha-code.refreshing #captcha-text { animation: captchaSwap .42s ease both; }
.captcha-code.refreshing .captcha-refresh { animation: captchaSpin .42s ease both; }
.consent-row { display: inline-flex; align-items: flex-start; gap: 12px; margin: 2px 0 34px; color: #4c4c4c; font-size: 13px; line-height: 1.5; cursor: pointer; user-select: none; }
.consent-row input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.custom-checkbox { flex: 0 0 20px; display: grid; width: 20px; height: 20px; margin-top: 1px; overflow: hidden; place-items: center; border: 2px solid #d8b37e; border-radius: 5px; background: #fff9ec; box-shadow: inset 0 0 0 2px #fff; transition: .3s ease; }
.custom-checkbox span { color: #fff; font-size: 13px; font-weight: 800; opacity: 0; transform: scale(.2) rotate(-25deg); transition: .28s cubic-bezier(.2,.9,.2,1); }
.consent-row input:checked + .custom-checkbox { border-color: rgba(254,141,42,1); background: rgba(254,141,42,1); box-shadow: 0 7px 14px rgba(254,141,42,.28), inset 0 0 0 2px rgba(255,255,255,.32); transform: scale(1.05); }
.consent-row input:checked + .custom-checkbox span { opacity: 1; transform: scale(1) rotate(0); }
.consent-row input:focus-visible + .custom-checkbox { outline: 3px solid rgba(254,48,41,.2); outline-offset: 3px; }
.deletion-submit { position: relative; display: flex; width: 100%; height: 60px; align-items: center; justify-content: center; gap: 14px; overflow: hidden; border: 0; border-radius: 999px; color: #fff; background: linear-gradient(90deg, rgba(254,141,42,1), rgba(254,48,41,1)); box-shadow: 0 14px 30px rgba(254,66,38,.23); cursor: pointer; font-weight: 600; transition: transform .35s cubic-bezier(.2,.9,.2,1), box-shadow .35s ease; }
.deletion-submit::before { content: ""; position: absolute; top: -120%; left: -15%; width: 52px; height: 330%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent); transform: rotate(24deg); transition: left .8s ease; }
.deletion-submit:hover { transform: translateY(-4px); box-shadow: 0 19px 38px rgba(254,66,38,.34); }
.deletion-submit:hover::before { left: 110%; }
.deletion-submit:active { transform: translateY(-1px) scale(.99); }
.submit-arrow { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.2); transition: transform .3s ease; }
.deletion-submit:hover .submit-arrow { transform: translateX(5px); }
.input-shell.is-invalid input { border-color: var(--red); background: #fff5f4; box-shadow: 0 0 0 5px rgba(254,48,41,.1); animation: fieldShake .5s ease; }
.consent-row.is-invalid { color: var(--red); animation: fieldShake .5s ease; }
.consent-row.is-invalid .custom-checkbox { border-color: var(--red); box-shadow: 0 0 0 5px rgba(254,48,41,.1); }

/* Required reason dropdown */
.select-shell select { width: 100%; height: 62px; padding: 0 52px 0 25px; border: 1px solid transparent; border-radius: 13px; outline: 0; color: #242424; background: #fff3d4; font: inherit; font-size: 14px; line-height: 1.4; cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none; transition: border-color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease; }
.select-shell select:hover { background: #fff0c8; }
.select-shell select:focus { border-color: rgba(254,141,42,.55); background: #fffaf0; box-shadow: 0 0 0 5px rgba(254,141,42,.11), 0 12px 24px rgba(202,103,29,.08); transform: translateY(-1px); }
.select-shell select:invalid { color: #b0a999; }
.select-shell select option { padding: 14px 18px; line-height: 1.5; color: #242424; background: #fff; }
.select-shell select option:disabled { color: #b0a999; }
.select-caret { position: absolute; top: 50%; right: 24px; width: 11px; height: 11px; border-right: 2.5px solid #a0642a; border-bottom: 2.5px solid #a0642a; pointer-events: none; transform: translateY(-50%) rotate(45deg); transition: transform .35s cubic-bezier(.2,.9,.2,1); }
.select-shell:hover .select-caret, .select-shell select:focus ~ .select-caret { transform: translateY(-50%) rotate(225deg); }
.input-shell.is-invalid select { border-color: var(--red); background: #fff5f4; box-shadow: 0 0 0 5px rgba(254,48,41,.1); animation: fieldShake .5s ease; }
@media (max-width: 480px) { .select-shell select { height: 58px; } }

/* Large animated validation dialog */
.status-modal { position: fixed; inset: 0; z-index: 1000; display: grid; padding: 24px; place-items: center; visibility: hidden; opacity: 0; transition: visibility .35s ease, opacity .35s ease; }
.status-modal.is-open { visibility: visible; opacity: 1; }
.status-backdrop { position: absolute; inset: 0; background: rgba(24, 8, 5, .7); backdrop-filter: blur(12px); }
.status-dialog { --status-color: rgba(254,48,41,1); position: relative; width: min(94vw, 650px); min-height: 480px; padding: 72px 64px 55px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--status-color) 48%, white); border-radius: 34px; color: #222; background: linear-gradient(155deg, rgba(255,255,255,.99), rgba(255,247,244,.97)); box-shadow: 0 45px 110px rgba(49,7,4,.36), 0 0 0 8px rgba(255,255,255,.08); text-align: center; transform: translateY(45px) scale(.78) rotateX(12deg); opacity: 0; transition: transform .65s cubic-bezier(.18,1.25,.35,1), opacity .35s ease; }
.status-modal.is-open .status-dialog { transform: translateY(0) scale(1) rotateX(0); opacity: 1; }
.status-dialog::before { content: ""; position: absolute; inset: 0 0 auto; height: 9px; background: linear-gradient(90deg, transparent, var(--status-color) 20%, #ffb62d 50%, var(--status-color) 80%, transparent); background-size: 180% 100%; animation: statusTopFlow 2s linear infinite; }
.status-dialog::after { content: ""; position: absolute; inset: 18px; border: 1px solid color-mix(in srgb, var(--status-color) 18%, transparent); border-radius: 25px; pointer-events: none; }
.status-dialog.is-error { --status-color: rgba(254,48,41,1); }
.status-dialog.is-success { --status-color: rgba(254,141,42,1); background: linear-gradient(155deg, #fff, #fff9e9); }
.status-icon { position: relative; z-index: 2; display: grid; width: 112px; height: 112px; margin: 0 auto 26px; place-items: center; border-radius: 50%; color: #fff; background: var(--status-color); box-shadow: 0 18px 40px color-mix(in srgb, var(--status-color) 38%, transparent), inset 0 0 0 8px rgba(255,255,255,.18); animation: statusIconFloat 2.2s ease-in-out infinite; }
.status-icon::before, .status-icon::after { content: ""; position: absolute; border: 2px solid color-mix(in srgb, var(--status-color) 55%, transparent); border-radius: 50%; animation: statusRipple 2.2s ease-out infinite; }
.status-icon::before { inset: -13px; }
.status-icon::after { inset: -29px; animation-delay: .65s; }
.status-dialog.is-error .status-icon span::before, .status-dialog.is-error .status-icon span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 47px; height: 7px; border-radius: 8px; background: #fff; }
.status-dialog.is-error .status-icon span::before { transform: translate(-50%,-50%) rotate(45deg); }
.status-dialog.is-error .status-icon span::after { transform: translate(-50%,-50%) rotate(-45deg); }
.status-dialog.is-success .status-icon span { width: 48px; height: 26px; border-bottom: 8px solid #fff; border-left: 8px solid #fff; transform: translateY(-5px) rotate(-45deg); }
.status-label { position: relative; z-index: 2; display: inline-block; margin: 0 0 10px; padding: 6px 15px; border-radius: 999px; color: var(--status-color); background: color-mix(in srgb, var(--status-color) 10%, white); font-size: 11px; font-weight: 800; letter-spacing: 1.9px; text-transform: uppercase; }
.status-dialog h2 { position: relative; z-index: 2; margin: 0; font-size: clamp(29px, 4vw, 43px); line-height: 1.16; letter-spacing: -1.4px; }
.status-dialog > p:not(.status-label) { position: relative; z-index: 2; max-width: 490px; margin: 19px auto 30px; color: #666; font-size: 15px; line-height: 1.7; }
.status-close { position: relative; z-index: 2; display: inline-flex; min-width: 220px; height: 56px; align-items: center; justify-content: center; gap: 13px; border: 0; border-radius: 999px; color: #fff; background: var(--status-color); box-shadow: 0 14px 30px color-mix(in srgb, var(--status-color) 32%, transparent); cursor: pointer; font-weight: 700; transition: transform .3s ease, box-shadow .3s ease; }
.status-close:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 38px color-mix(in srgb, var(--status-color) 40%, transparent); }
.status-aura { position: absolute; border-radius: 50%; background: var(--status-color); filter: blur(4px); opacity: .09; }
.status-aura-one { top: -120px; right: -95px; width: 330px; height: 330px; animation: auraDrift 5s ease-in-out infinite; }
.status-aura-two { bottom: -145px; left: -105px; width: 360px; height: 360px; animation: auraDrift 6s 1s ease-in-out infinite reverse; }
.status-particles i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--status-color); opacity: .22; animation: particleFloat 3.2s ease-in-out infinite; }
.status-particles i:nth-child(1) { top: 14%; left: 9%; animation-delay: -.2s; }
.status-particles i:nth-child(2) { top: 31%; left: 5%; width: 5px; height: 5px; animation-delay: -.7s; }
.status-particles i:nth-child(3) { top: 62%; left: 10%; animation-delay: -1.2s; }
.status-particles i:nth-child(4) { bottom: 9%; left: 22%; width: 6px; height: 6px; animation-delay: -.4s; }
.status-particles i:nth-child(5) { top: 10%; right: 18%; width: 5px; height: 5px; animation-delay: -1.8s; }
.status-particles i:nth-child(6) { top: 29%; right: 7%; animation-delay: -.9s; }
.status-particles i:nth-child(7) { top: 58%; right: 9%; width: 6px; height: 6px; animation-delay: -1.4s; }
.status-particles i:nth-child(8) { bottom: 10%; right: 24%; animation-delay: -.1s; }
.status-particles i:nth-child(9) { top: 18%; left: 28%; width: 4px; height: 4px; animation-delay: -2s; }
.status-particles i:nth-child(10) { top: 47%; left: 15%; width: 4px; height: 4px; animation-delay: -.8s; }
.status-particles i:nth-child(11) { bottom: 17%; right: 12%; width: 5px; height: 5px; animation-delay: -2.3s; }
.status-particles i:nth-child(12) { top: 15%; right: 36%; width: 7px; height: 7px; animation-delay: -1.1s; }
body.modal-open { overflow: hidden; }

@keyframes deleteBellFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
@keyframes deleteOrbit { to { transform: rotate(347deg); } }
@keyframes connectorPulse { 0%,100% { opacity: .35; transform: scaleX(.86); } 50% { opacity: .9; transform: scaleX(1); } }
@keyframes supportFloat { 0%,100% { transform: translateY(0) rotate(.5deg); } 50% { transform: translateY(-13px) rotate(-1deg); } }
@keyframes guideGlow { 0%,100% { opacity: .45; transform: scale(.86); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes captchaShine { 0%,38% { left: -35%; } 70%,100% { left: 130%; } }
@keyframes captchaSwap { 0% { transform: translateY(0) scale(1); opacity: 1; } 48% { transform: translateY(-14px) scale(.7); opacity: 0; } 49% { transform: translateY(14px) scale(.7); opacity: 0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }
@keyframes captchaSpin { to { transform: rotate(360deg); } }
@keyframes fieldShake { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-8px); } 40% { transform: translateX(7px); } 60% { transform: translateX(-5px); } 80% { transform: translateX(3px); } }
@keyframes statusTopFlow { to { background-position: -180% 0; } }
@keyframes statusIconFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-9px) scale(1.035); } }
@keyframes statusRipple { 0% { opacity: .75; transform: scale(.72); } 100% { opacity: 0; transform: scale(1.24); } }
@keyframes auraDrift { 0%,100% { transform: translate(0,0) scale(.9); } 50% { transform: translate(-22px,18px) scale(1.12); } }
@keyframes particleFloat { 0%,100% { transform: translateY(0) scale(.75); opacity: .12; } 50% { transform: translateY(-20px) scale(1.3); opacity: .55; } }

@media (max-width: 1000px) {
  .delete-hero { min-height: 540px; background-position: 57% top; }
  .delete-hero-copy { width: 47%; }
  .delete-hero h1 { font-size: 42px; }
  .delete-hero h2 { font-size: 26px; }
  .information-layout { gap: 55px; }
  .process-panel { padding-inline: 32px; }
  .process-grid { grid-template-columns: 1fr 70px 1fr 70px 1fr; }
  .process-connector { width: 48px; }
  .request-guide-layout { gap: 40px; }
}

@media (max-width: 760px) {
  .delete-hero { min-height: 640px; align-items: flex-end; background-position: 67% top; background-size: auto 640px; }
  .delete-hero::after { content: ""; position: absolute; inset: 68px 0 0; background: linear-gradient(90deg, rgba(255,243,224,.96) 0%, rgba(255,244,226,.9) 50%, rgba(255,244,226,.16) 100%); }
  .delete-hero-inner { z-index: 2; padding-top: 125px; padding-bottom: 78px; }
  .delete-hero-copy { width: min(86%, 500px); }
  .delete-hero h1 { font-size: clamp(37px, 10vw, 49px); }
  .delete-hero h2 { font-size: clamp(23px, 6vw, 31px); }
  .delete-hero p { color: #474747; font-size: 14px; }
  .delete-section { padding: 72px 0; }
  .delete-heading { margin-bottom: 42px; }
  .delete-heading h2 { font-size: 34px; }
  .information-layout, .request-guide-layout { grid-template-columns: 1fr; gap: 38px; }
  .information-art img { width: min(75vw, 330px); }
  .information-copy { max-width: 580px; margin: 0 auto; }
  .process-section { padding-top: 0; }
  .process-panel { width: min(100% - 32px, var(--container)); padding: 54px 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-step { display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 20px; text-align: left; }
  .process-icon { margin: 0; }
  .process-copy p { max-width: none; margin: 0; }
  .process-connector { width: 2px; height: 30px; margin: -10px 0 -10px 39px; border-top: 0; border-left: 2px dashed #aaa39a; }
  .request-guide-copy { order: 2; }
  .request-guide-art { order: 1; }
  .request-guide-art img { width: min(78vw, 360px); }
  .verification-section { padding: 55px 0; }
  .deletion-form { padding: 45px 28px 48px; border-radius: 21px; }
  .captcha-row { grid-template-columns: 1fr 115px; }
  .captcha-code { min-width: 115px; }
  .status-dialog { min-height: 450px; padding: 65px 30px 45px; border-radius: 28px; }
}

@media (max-width: 480px) {
  .delete-hero-copy { width: 100%; padding-right: 28px; }
  .delete-hero { background-position: 62% top; }
  .delete-heading h2 { font-size: 31px; }
  .information-orbit { width: 250px; height: 190px; }
  .process-step { grid-template-columns: 68px 1fr; gap: 15px; }
  .process-icon, .process-icon img { width: 68px; height: 68px; }
  .process-connector { margin-left: 33px; }
  .deletion-form { padding: 40px 19px 42px; }
  .form-heading p { display: none; }
  .input-shell input, .captcha-code { height: 58px; }
  .captcha-row { grid-template-columns: 1fr 103px; gap: 8px; }
  .captcha-code { min-width: 103px; }
  #captcha-text { min-width: 47px; font-size: 14px; letter-spacing: 1.3px; }
  .captcha-refresh { margin-left: 2px; font-size: 18px; }
  .consent-row { font-size: 12px; }
  .status-modal { padding: 12px; }
  .status-dialog { width: 100%; min-height: 430px; padding: 58px 23px 38px; border-radius: 25px; }
  .status-icon { width: 95px; height: 95px; }
  .status-dialog.is-error .status-icon span::before, .status-dialog.is-error .status-icon span::after { width: 40px; height: 6px; }
  .status-dialog h2 { font-size: 29px; }
}

/* About page */
.about-page { background: #fff; }
.about-page main { overflow: hidden; }
.about-hero {
  position: relative;
  min-height: 585px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #ff4a27 url("img/about-bg.png") center top / cover no-repeat;
}
.p-hero {
  position: relative;
  min-height: 585px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #ff4a27 url("img/p-bg.png") center top / cover no-repeat !important;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 84px 0 0;
  background: linear-gradient(90deg, rgba(255,119,29,.12), transparent 46%, rgba(254,48,41,.08));
  pointer-events: none;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 27%;
  left: 49.4%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff4b8;
  box-shadow: 0 0 24px 8px rgba(255,228,121,.8);
  animation: aboutSparkle 2.4s ease-in-out infinite;
}
.about-hero-inner { position: relative; z-index: 1; padding-top: 84px; }
.about-hero-copy { width: 610px; }
.about-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 15px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.about-hero h1 { margin: 0 0 28px; font-size: clamp(39px, 3.15vw, 60px); line-height: 1.4; letter-spacing: -1.9px; text-shadow: 0 12px 30px rgba(172,39,20,.2); }
.about-hero p { max-width: 585px; margin: 0; font-size: 16px; line-height: 1.65; text-shadow: 0 5px 18px rgba(150,32,18,.18); }

.about-story-section { position: relative; padding: 105px 0 110px; background: #fff; }
.about-story-section::before { content: ""; position: absolute; top: 17%; right: -230px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(254,141,42,.075), transparent 68%); }
.about-story-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; column-gap: 115px; row-gap: 75px; }
.mission-visual { position: relative; display: grid; min-height: 440px; place-items: center; }
.mission-visual img { position: relative; z-index: 3; width: min(100%, 430px); filter: drop-shadow(0 28px 24px rgba(216,91,22,.17)); animation: missionFloat 4.8s ease-in-out infinite; }
.mission-glow { position: absolute; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,77,.25), transparent 68%); animation: missionGlow 3.4s ease-in-out infinite; }
.mission-ring { position: absolute; border: 1px solid rgba(254,141,42,.15); border-radius: 50%; }
.mission-ring-one { width: 365px; height: 250px; transform: rotate(-16deg); animation: missionRing 10s linear infinite; }
.mission-ring-two { width: 305px; height: 385px; transform: rotate(24deg); animation: missionRingReverse 12s linear infinite; }
.about-story-copy { max-width: 610px; }
.about-section-label { display: inline-block; margin-bottom: 6px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.about-story-copy h2, .about-security-copy h2 { margin: 0 0 25px; color: #222; font-size: clamp(35px, 3vw, 48px); line-height: 1.2; letter-spacing: -1.6px; }
.about-story-copy h3 { margin: 0 0 28px; color: #4b4b4b; font-size: 16px; font-weight: 600; }
.about-story-copy p, .about-security-copy p, .transparency-copy p { margin: 0 0 22px; color: #747474; font-size: 14px; line-height: 1.65; }
.about-story-copy p:last-child, .about-security-copy p:last-child, .transparency-copy p:last-child { margin-bottom: 0; }
.vision-copy { align-self: start; padding-top: 22px; }
.vision-decoration { position: relative; min-height: 370px; }
.vision-orbit { position: absolute; top: 50%; left: 50%; width: 350px; height: 260px; border: 1px dashed rgba(254,86,37,.24); border-radius: 50%; transform: translate(-50%,-50%) rotate(-12deg); animation: visionOrbit 18s linear infinite; }
.vision-card { position: absolute; z-index: 2; display: flex; width: 205px; min-height: 105px; padding: 22px; flex-direction: column; justify-content: center; border: 1px solid rgba(254,141,42,.16); border-radius: 18px; background: rgba(255,251,242,.94); box-shadow: 0 18px 40px rgba(160,71,21,.09); backdrop-filter: blur(8px); transition: transform .4s cubic-bezier(.2,.9,.2,1), box-shadow .4s ease; }
.vision-card::before { content: ""; width: 28px; height: 4px; margin-bottom: 11px; border-radius: 99px; background: linear-gradient(90deg, var(--orange), var(--red)); }
.vision-card b { font-size: 17px; }
.vision-card small { color: #777; }
.vision-card-one { top: 18px; left: 50%; transform: translateX(-50%); }
.vision-card-two { bottom: 28px; left: 22px; transform: rotate(-4deg); }
.vision-card-three { right: 11px; bottom: 64px; transform: rotate(4deg); }
.vision-card-one:hover { transform: translateX(-50%) translateY(-8px); }
.vision-card-two:hover { transform: translateY(-8px) rotate(-4deg); }
.vision-card-three:hover { transform: translateY(-8px) rotate(4deg); }
.vision-card:hover { box-shadow: 0 24px 50px rgba(160,71,21,.15); }

.transparency-section { position: relative; min-height: 660px; padding: 105px 0; overflow: hidden; background: rgba(255, 243, 216, 1); }
.transparency-section::before { content: ""; position: absolute; top: -290px; left: 50%; width: 720px; height: 500px; border-radius: 50%; background: rgba(255,255,255,.34); filter: blur(20px); transform: translateX(-50%); }
.transparency-section::after { content: ""; position: absolute; right: -190px; bottom: -260px; width: 590px; height: 590px; border-radius: 50%; background: radial-gradient(circle, rgba(254,141,42,.11), transparent 67%); }
.about-heading { position: relative; z-index: 1; max-width: 820px; margin: 0 auto 75px; text-align: center; }
.about-heading h2 { margin: 0; color: #242424; font-size: clamp(34px, 3vw, 48px); line-height: 1.25; letter-spacing: -1.7px; }
.about-heading p { margin: 12px 0 0; color: #555; font-size: 14px; }
.transparency-content { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 95px; }
.transparency-copy { padding: 20px 0; }
.transparency-copy p { font-size: 15px; line-height: 1.75; }
.transparency-principles { display: grid; gap: 14px; }
.transparency-principles article { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 20px 25px; align-items: center; border: 1px solid rgba(254,141,42,.13); border-radius: 16px; background: rgba(255,255,255,.58); transition: transform .4s cubic-bezier(.2,.9,.2,1), background .35s ease, box-shadow .4s ease; }
.transparency-principles article:hover { transform: translateX(10px); background: rgba(255,255,255,.88); box-shadow: 0 16px 36px rgba(153,89,22,.08); }
.transparency-principles article > span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: 0 9px 19px rgba(254,72,38,.19); font-weight: 800; }
.transparency-principles h3 { margin: 0 0 3px; font-size: 15px; }
.transparency-principles p { margin: 0; color: #777; font-size: 12px; }

.about-security-section { position: relative; padding: 100px 0 105px; overflow: hidden; background: #fff; }
.about-security-section::before { content: ""; position: absolute; top: 12%; left: -230px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(254,48,41,.045), transparent 68%); }
.about-security-layout { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 75px; }
.about-security-copy { max-width: 600px; }
.about-security-copy h2 { margin-bottom: 32px; }
.about-security-copy p { font-size: 14px; line-height: 1.75; }
.about-security-visual { position: relative; display: grid; min-height: 390px; place-items: center; }
.about-security-visual img { position: relative; z-index: 2; width: min(100%, 530px); filter: drop-shadow(0 28px 22px rgba(209,81,18,.15)); animation: securityAboutFloat 5s ease-in-out infinite; }
.security-visual-glow { position: absolute; width: 380px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,188,68,.22), transparent 70%); animation: securityAboutGlow 3.6s ease-in-out infinite; }
.privacy-card-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 55px; }
.privacy-card { position: relative; min-height: 190px; padding: 31px 20px 25px; overflow: hidden; border: 1px solid rgba(254,141,42,.07); border-radius: 20px; background: rgba(255, 251, 242, 1); text-align: center; transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s ease, border-color .35s ease; }
.privacy-card::before { content: ""; position: absolute; top: -100%; left: -45%; width: 34%; height: 300%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent); transform: rotate(22deg); transition: left .75s ease; }
.privacy-card:hover { transform: translateY(-10px); border-color: rgba(254,48,41,.3); box-shadow: 0 22px 45px rgba(169,75,19,.12); }
.privacy-card:hover::before { left: 125%; }
.privacy-card-icon { position: relative; display: grid; width: 83px; height: 83px; margin: 0 auto 18px; place-items: center; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,231,220,.42)); transition: transform .45s cubic-bezier(.2,.9,.2,1); }
.privacy-card-icon::after { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(254,48,41,.18); border-radius: 50%; animation: privacyIconSpin 12s linear infinite; }
.privacy-card-icon img { position: relative; z-index: 1; width: 52px; height: 28px; object-fit: contain; image-rendering: auto; transform: scale(1.18); }
.privacy-card:hover .privacy-card-icon { transform: translateY(-4px) scale(1.08); }
.privacy-card h3 { margin: 0 0 7px; font-size: 15px; line-height: 1.35; }
.privacy-card p { margin: 0; color: #858585; font-size: 11px; }

@keyframes aboutSparkle { 0%,100% { opacity: .3; transform: scale(.55) rotate(0); } 50% { opacity: 1; transform: scale(1.5) rotate(90deg); } }
@keyframes missionFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes missionGlow { 0%,100% { opacity: .5; transform: scale(.88); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes missionRing { to { transform: rotate(344deg); } }
@keyframes missionRingReverse { to { transform: rotate(-336deg); } }
@keyframes visionOrbit { to { transform: translate(-50%,-50%) rotate(348deg); } }
@keyframes securityAboutFloat { 0%,100% { transform: translateY(0) rotate(.4deg); } 50% { transform: translateY(-13px) rotate(-.8deg); } }
@keyframes securityAboutGlow { 0%,100% { opacity: .45; transform: scale(.9); } 50% { opacity: .95; transform: scale(1.1); } }
@keyframes privacyIconSpin { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .about-hero { min-height: 545px; background-position: 57% top; }
  .about-hero-copy { width: 51%; }
  .about-hero h1 { font-size: 42px; line-height: 1.3; }
  .about-story-grid { column-gap: 55px; }
  .transparency-content { gap: 50px; }
  .about-security-layout { gap: 35px; }
  .privacy-card-grid { gap: 13px; }
}

@media (max-width: 760px) {
  .about-hero { min-height: 650px; align-items: flex-end; background-position: 64% top; background-size: auto 650px; }
  .about-hero::before { inset: 68px 0 0; background: linear-gradient(90deg, rgba(254,86,30,.95), rgba(254,73,35,.82) 52%, rgba(254,48,41,.14)); }
  .about-hero-inner { padding-top: 118px; padding-bottom: 75px; }
  .about-hero-copy { width: min(92%, 530px); }
  .about-eyebrow { margin-bottom: 14px; }
  .about-hero h1 { font-size: clamp(36px, 9vw, 49px); line-height: 1.24; }
  .about-hero h1 br { display: none; }
  .about-hero p { font-size: 14px; }
  .about-story-section, .about-security-section { padding: 75px 0; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-visual { min-height: auto; }
  .mission-visual img { width: min(78vw, 390px); }
  .mission-copy { margin-bottom: 35px; }
  .vision-copy { padding-top: 0; }
  .vision-decoration { min-height: 330px; }
  .transparency-section { min-height: auto; padding: 75px 0; }
  .about-heading { margin-bottom: 48px; }
  .transparency-content, .about-security-layout { grid-template-columns: 1fr; gap: 42px; }
  .about-security-visual { min-height: auto; }
  .about-security-visual img { width: min(88vw, 520px); }
  .privacy-card-grid { grid-template-columns: repeat(2, 1fr); margin-top: 45px; }
}

@media (max-width: 480px) {
  .about-hero { background-position: 61% top; }
  .about-hero-copy { width: 100%; padding-right: 22px; }
  .about-hero h1 { font-size: 36px; }
  .about-story-copy h2, .about-security-copy h2, .about-heading h2 { font-size: 32px; }
  .mission-ring-one { width: 280px; height: 195px; }
  .mission-ring-two { width: 235px; height: 300px; }
  .vision-decoration { min-height: 390px; }
  .vision-orbit { width: 280px; height: 310px; }
  .vision-card { width: 180px; min-height: 96px; padding: 18px; }
  .vision-card-two { bottom: 53px; left: 0; }
  .vision-card-three { right: 0; bottom: 3px; }
  .transparency-principles article { grid-template-columns: 48px 1fr; gap: 15px; padding: 18px 16px; }
  .transparency-principles article > span { width: 44px; height: 44px; }
  .privacy-card-grid { grid-template-columns: 1fr; gap: 15px; }
  .privacy-card { min-height: 165px; }
}
