/* Copyright 2026 HomeOne Interiors. All rights reserved. */

/* =============================================
   PH-HERO (self-contained block)
   ============================================= */

.ph-hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.ph-bg { position: absolute; inset: 0; z-index: 0; }
.ph-bg-img {
  position: absolute; inset: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  transform: scale(1.07);
  animation: phDrift 24s ease-in-out infinite alternate;
}
@keyframes phDrift {
  from { transform: scale(1.07) translate(0, 0); }
  to   { transform: scale(1.07) translate(-2.5%, -1.2%); }
}
.ph-overlay-1 {
  position: absolute; inset: 0;
  background: linear-gradient(108deg,
    rgba(6,13,26,.97) 0%,
    rgba(6,13,26,.88) 38%,
    rgba(6,13,26,.55) 68%,
    rgba(6,13,26,.8) 100%
  );
}
.ph-overlay-2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,1) 0%, transparent 45%);
}
.ph-overlay-3 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 72% 38%, rgba(26,107,218,.14) 0%, transparent 60%);
  animation: phGlowPulse 7s ease-in-out infinite alternate;
}
@keyframes phGlowPulse { from { opacity: .5; } to { opacity: 1; } }
.ph-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025; animation: phGrain 8s steps(10) infinite;
}
@keyframes phGrain {
  0%, 100% { transform: translate(0, 0); } 10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0); }    70% { transform: translate(0, 15%); }
  80% { transform: translate(3%, 35%); }   90% { transform: translate(-10%, 10%); }
}
.ph-beam {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(112deg, transparent 30%, rgba(26,107,218,.055) 50%, transparent 70%);
  animation: phBeamMove 12s ease-in-out infinite alternate;
}
@keyframes phBeamMove {
  from { transform: skewX(-6deg) translateX(-10%); opacity: .3; }
  to   { transform: skewX(-6deg) translateX(10%); opacity: 1; }
}
.ph-scan {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 3; pointer-events: none;
  background: linear-gradient(to right, transparent 0%, rgba(26,107,218,.35) 25%, rgba(26,107,218,.65) 50%, rgba(26,107,218,.35) 75%, transparent 100%);
  animation: phScanMove 8s linear infinite;
}
@keyframes phScanMove {
  0%   { top: 12%; opacity: 0; } 6%   { opacity: 1; }
  94%  { opacity: 1; }           100% { top: 88%; opacity: 0; }
}
.ph-ghost-yr {
  position: absolute; right: -4%; bottom: 8%; z-index: 1; pointer-events: none; user-select: none;
  font-family: var(--fh); font-size: clamp(10rem, 22vw, 20rem); font-weight: 700;
  line-height: 1; letter-spacing: -.04em; color: var(--blue); opacity: .045;
  animation: phGhostDrift 20s ease-in-out infinite alternate;
}
@keyframes phGhostDrift {
  from { transform: translate(0, 0) rotate(-1.5deg); }
  to   { transform: translate(-2%, -3%) rotate(-.5deg); }
}
.ph-frame { position: absolute; inset: 24px; z-index: 3; pointer-events: none; }
.ph-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(26,107,218,.45); border-style: solid;
  transition: width .6s var(--ease), height .6s var(--ease);
}
.ph-hero:hover .ph-corner { width: 56px; height: 56px; }
.ph-corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.ph-corner-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.ph-corner-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.ph-corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.ph-content {
  position: relative; z-index: 5; padding: 80px 0 180px; max-width: 820px;
}
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .36em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 48px;
  opacity: 0; animation: phFadeIn .8s var(--ease) .2s forwards;
}
@keyframes phFadeIn { to { opacity: 1; } }
.ph-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(26,107,218,.9), 0 0 24px rgba(26,107,218,.5);
  animation: phDotPulse 2.4s ease-in-out infinite;
}
@keyframes phDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(26,107,218,.7); }
  50%       { transform: scale(1.6); box-shadow: 0 0 22px rgba(26,107,218,1), 0 0 40px rgba(26,107,218,.4); }
}
.ph-h1 {
  font-size: clamp(3.2rem, 8vw, 8rem); font-weight: 700;
  line-height: .94; letter-spacing: -.04em; margin: 0 0 36px;
}
.ph-h1-row { display: block; overflow: hidden; }
.ph-h1-inner {
  display: block; transform: translateY(115%);
  animation: phRowUp .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.ph-h1-row:nth-child(2) .ph-h1-inner { animation-delay: .11s; }
.ph-h1-row:nth-child(3) .ph-h1-inner { animation-delay: .22s; }
@keyframes phRowUp { to { transform: translateY(0); } }
.ph-h1-blue { color: var(--blue); }
.ph-desc {
  font-size: 17px; color: var(--mute); line-height: 1.8; max-width: 520px; margin-bottom: 32px;
}
.ph-article-chips {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 0;
}
.ph-article-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bl); background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.22);
  padding: 6px 14px; border-radius: 2px;
}
.ph-article-chip i { font-size: 11px; color: var(--blue); }
.ph-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  border-top: 1px solid rgba(26,107,218,.14);
}
.ph-bottom-inner { display: flex; align-items: stretch; }
.ph-bottom-stats {
  display: flex; width: 100%; background: rgba(6,13,26,.55); backdrop-filter: blur(14px);
}
.ph-bstat {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border-right: 1px solid rgba(26,107,218,.1); text-align: center;
}
.ph-bstat:last-child { border-right: none; }
.ph-bstat strong {
  font-family: var(--fh); font-size: 1.35rem; font-weight: 700; color: var(--white); line-height: 1;
}
.ph-bstat span {
  font-size: 9.5px; color: var(--mute); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px;
}
.ph-scroll-cue {
  position: absolute; bottom: 90px; right: 44px; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ph-scroll-line {
  width: 1px; height: 72px;
  background: linear-gradient(to bottom, rgba(26,107,218,.9), transparent);
  animation: phScrollPulse 2.8s ease-in-out infinite;
}
@keyframes phScrollPulse {
  0%, 100% { transform: scaleY(.2); transform-origin: top; opacity: .3; }
  50%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.ph-scroll-label {
  font-size: 9px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(26,107,218,.55); writing-mode: vertical-rl;
}

/* =============================================
   CT-FORM (self-contained block)
   ============================================= */

.ct-form-card {
  background: var(--bg2); border: 1px solid var(--line);
  padding: 48px 44px; position: relative; overflow: hidden;
  transition: box-shadow .4s var(--ease);
  transform-style: preserve-3d; will-change: transform;
}
.ct-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent 0%, var(--blue) 50%, transparent 100%);
  opacity: .55;
}
.ct-form-card::after {
  content: ''; pointer-events: none; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(26,107,218,.065) 0%, transparent 60%);
}
.ct-form-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 0 1px rgba(26,107,218,.22); }
.ct-form-hd { margin-bottom: 32px; }
.ct-form-hd h3 {
  font-family: var(--fh); font-size: 1.45rem; font-weight: 700;
  color: var(--white); margin: 0 0 8px; letter-spacing: -.02em;
}
.ct-form-hd p { font-size: 14px; color: var(--mute); margin: 0; line-height: 1.55; }
.ct-form { display: flex; flex-direction: column; gap: 18px; }
.ct-field { display: flex; flex-direction: column; gap: 7px; }
.ct-field label {
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.ct-field input,
.ct-field select,
.ct-field textarea {
  width: 100%; box-sizing: border-box;
  background: rgba(6,13,26,.9); border: 1px solid rgba(26,107,218,.2); border-radius: 4px;
  padding: 13px 15px; font-family: var(--fb); font-size: 14px; color: var(--white);
  outline: none; transition: border-color .3s, box-shadow .3s, background .3s;
  -webkit-appearance: none; appearance: none;
}
.ct-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M5 6L0 0h10z' fill='%231a6bda' opacity='.7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center;
  padding-right: 36px; cursor: pointer;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: rgba(255,255,255,.2); }
.ct-field select option { background: var(--bg2); color: var(--white); }
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  border-color: rgba(26,107,218,.7); background: rgba(6,13,26,1);
  box-shadow: 0 0 0 3px rgba(26,107,218,.14), 0 0 16px rgba(26,107,218,.06);
}
.ct-form-submit { width: 100%; margin-top: 6px; justify-content: center; gap: 10px; font-size: 14px; }
.ct-form-note { font-size: 11px; color: rgba(255,255,255,.26); text-align: center; margin: 2px 0 0; }
.ct-form .field-validation-valid { display: none; }
.ct-form .field-validation-error { display: block; font-size: 11px; color: #ff5f5f; margin-top: 5px; line-height: 1.4; }

/* =============================================
   LG-FAQ (scoped accordion)
   ============================================= */

.lg-faq { padding: 112px 0 120px; background: var(--bg); border-top: 1px solid var(--line); }
.lg-faq-inner { display: grid; grid-template-columns: 1fr 1.75fr; gap: 80px; align-items: start; }
.lg-faq-hd { position: sticky; top: 100px; }
.lg-faq-hd .eyebrow { margin-bottom: 18px; }
.lg-faq-hd h2 {
  font-family: var(--fh); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0 0 16px; line-height: 1.08;
}
.lg-faq-hd h2 em { font-style: normal; color: var(--blue); }
.lg-faq-hd p { font-size: 14px; color: var(--mute); line-height: 1.7; margin: 0 0 24px; }
.lg-faq-list { display: flex; flex-direction: column; }
.lg-faq .faq-item { border-top: 1px solid var(--line); transition: border-color .3s; }
.lg-faq .faq-item:last-child { border-bottom: 1px solid var(--line); }
.lg-faq .faq-item.open { border-top-color: rgba(26,107,218,.38); }
.lg-faq .faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 0; text-align: left;
  font-family: var(--fh); font-size: 16px; font-weight: 600; color: var(--white);
  transition: color .3s;
}
.lg-faq .faq-q:hover { color: var(--bl); }
.lg-faq .faq-item.open .faq-q { color: var(--bl); }
.lg-faq .faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid rgba(26,107,218,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 11px;
  transition: background .3s, transform .4s var(--ease);
}
.lg-faq .faq-item.open .faq-icon { background: rgba(26,107,218,.14); transform: rotate(45deg); }
.lg-faq .faq-a { overflow: hidden; max-height: 0; transition: max-height .45s cubic-bezier(.25,.46,.45,.94); }
.lg-faq .faq-item.open .faq-a { max-height: 400px; }
.lg-faq .faq-a-inner { padding-bottom: 22px; font-size: 14px; color: var(--mute); line-height: 1.85; }

/* =============================================
   SHARED LEGAL DOCUMENT STYLES (lg-)
   ============================================= */

.lg-doc { padding: 100px 0 80px; background: var(--bg); }
.lg-doc-inner { max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 3px; }
.lg-doc-intro { max-width: 700px; margin-bottom: 52px; }
.lg-doc-intro .eyebrow { margin-bottom: 16px; }
.lg-doc-intro h2 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0 0 18px; line-height: 1.06;
}
.lg-doc-intro h2 em { font-style: normal; color: var(--blue); }
.lg-doc-intro p { font-size: 15px; color: var(--mute); line-height: 1.82; margin: 0; }

.lg-section {
  position: relative;
  background: var(--bg2); border: 1px solid var(--line);
  border-left: 2px solid rgba(26,107,218,.28);
  padding: 44px 52px 44px 56px; overflow: hidden;
  transition: border-left-color .35s, box-shadow .35s;
  transform-style: preserve-3d; will-change: transform;
}
.lg-section:hover {
  border-left-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(26,107,218,.1), 0 8px 40px rgba(0,0,0,.28);
}
.lg-section-num {
  position: absolute; top: 16px; right: 24px;
  font-family: var(--fh); font-size: 7rem; font-weight: 700;
  color: var(--blue); opacity: .05; line-height: 1;
  pointer-events: none; user-select: none;
}
.lg-section-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 20px; }
.lg-section-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem;
  transition: background .3s, box-shadow .3s;
}
.lg-section:hover .lg-section-icon {
  background: rgba(26,107,218,.18); box-shadow: 0 0 22px rgba(26,107,218,.25);
}
.lg-section-title {
  font-family: var(--fh); font-size: 1.25rem; font-weight: 700;
  color: var(--white); margin: 0 0 6px; letter-spacing: -.025em; line-height: 1.2;
}
.lg-section-tag {
  display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.18);
  padding: 3px 8px; border-radius: 2px;
}
.lg-section-body { font-size: 14.5px; color: var(--mute); line-height: 1.85; }
.lg-section-body p { margin: 0 0 14px; }
.lg-section-body p:last-child { margin-bottom: 0; }
.lg-section-body strong { color: var(--white); }
.lg-section-body a { color: var(--bl); text-decoration: underline; text-underline-offset: 3px; }
.lg-section-body a:hover { color: var(--white); }
.lg-section-list { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 9px; }
.lg-section-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 14px; color: var(--mute); line-height: 1.75;
}
.lg-section-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0; margin-top: 8px;
}
.lg-section-highlight {
  margin-top: 18px; padding: 18px 22px;
  background: rgba(26,107,218,.07); border-left: 2px solid var(--blue);
  font-size: 14px; color: var(--white); line-height: 1.75;
}
.lg-section-highlight strong { color: var(--bl); }

.lg-trust { padding: 72px 0; background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lg-trust-hd { text-align: center; margin-bottom: 52px; }
.lg-trust-hd .eyebrow { margin-bottom: 14px; }
.lg-trust-hd h2 {
  font-family: var(--fh); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0; line-height: 1.1;
}
.lg-trust-hd h2 em { font-style: normal; color: var(--blue); }
.lg-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.lg-trust-item {
  padding: 40px 36px; border-right: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 20px;
  transition: background .3s; position: relative; overflow: hidden;
}
.lg-trust-item:last-child { border-right: none; }
.lg-trust-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .45s;
}
.lg-trust-item:hover { background: rgba(26,107,218,.03); }
.lg-trust-item:hover::after { transform: scaleX(1); }
.lg-trust-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.25rem;
  transition: background .3s, box-shadow .3s;
}
.lg-trust-item:hover .lg-trust-icon {
  background: rgba(26,107,218,.18); box-shadow: 0 0 20px rgba(26,107,218,.25);
}
.lg-trust-body strong {
  font-family: var(--fh); font-size: 1.05rem; font-weight: 700;
  color: var(--white); display: block; margin-bottom: 7px; letter-spacing: -.02em;
}
.lg-trust-body p { font-size: 13.5px; color: var(--mute); line-height: 1.75; margin: 0; }

.lg-contact { padding: 80px 0 72px; background: var(--bg); border-top: 1px solid var(--line); }
.lg-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.lg-contact-text h2 {
  font-family: var(--fh); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--white); margin: 0 0 10px; letter-spacing: -.02em;
}
.lg-contact-text p { font-size: 15px; color: var(--mute); line-height: 1.75; margin: 0 0 6px; }
.lg-contact-text a { color: var(--bl); text-decoration: none; }
.lg-contact-text a:hover { color: var(--white); }
.lg-contact-ctas { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   TERMS & CONDITIONS (tc-)
   ============================================= */

.tc-doc { padding: 100px 0 80px; background: var(--bg); }
.tc-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.tc-toc {
  position: sticky; top: 100px;
  background: var(--bg2); border: 1px solid var(--line);
  border-left: 2px solid rgba(26,107,218,.28); padding: 28px 22px;
}
.tc-toc-title {
  font-size: 9.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.tc-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1px; }
.tc-toc-link {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; font-size: 12.5px; color: var(--mute);
  text-decoration: none; border-radius: 2px; transition: color .2s, background .2s;
}
.tc-toc-link i { font-size: 9px; color: var(--blue); opacity: .6; flex-shrink: 0; }
.tc-toc-link:hover { color: var(--white); background: rgba(26,107,218,.07); }
.tc-sections { display: flex; flex-direction: column; gap: 3px; }

/* =============================================
   REFUND POLICY (rp-)
   ============================================= */

.rp-milestones {
  padding: 100px 0 80px; background: var(--bg2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.rp-milestones-hd { text-align: center; margin-bottom: 68px; }
.rp-milestones-hd .eyebrow { margin-bottom: 16px; }
.rp-milestones-hd h2 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0; line-height: 1.06;
}
.rp-milestones-hd h2 em { font-style: normal; color: var(--blue); }
.rp-ms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); }
.rp-ms-item {
  padding: 48px 36px; border-right: 1px solid var(--line);
  position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform; transition: background .3s;
}
.rp-ms-item:last-child { border-right: none; }
.rp-ms-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .45s;
}
.rp-ms-item:hover { background: rgba(26,107,218,.04); }
.rp-ms-item:hover::before { transform: scaleX(1); }
.rp-ms-pct {
  font-family: var(--fh); font-size: 3.5rem; font-weight: 700;
  color: var(--blue); line-height: 1; margin-bottom: 14px; letter-spacing: -.04em;
}
.rp-ms-pct span { font-size: .42em; color: var(--bl); vertical-align: super; }
.rp-ms-title {
  font-family: var(--fh); font-size: 1rem; font-weight: 700;
  color: var(--white); margin: 0 0 10px; letter-spacing: -.02em;
}
.rp-ms-note { font-size: 13.5px; color: var(--mute); line-height: 1.75; margin: 0; }
.rp-ms-tag {
  display: inline-block; margin-top: 16px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.2);
  padding: 3px 8px; border-radius: 2px;
}
.rp-ms-tag--warn { color: #ff9240; background: rgba(255,146,64,.08); border-color: rgba(255,146,64,.2); }

.rp-cancel { padding: 80px 0; background: var(--bg); }
.rp-cancel-hd { text-align: center; margin-bottom: 60px; }
.rp-cancel-hd .eyebrow { margin-bottom: 14px; }
.rp-cancel-hd h2 {
  font-family: var(--fh); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0; line-height: 1.1;
}
.rp-cancel-hd h2 em { font-style: normal; color: var(--blue); }
.rp-cancel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.rp-cancel-item {
  background: var(--bg2); border: 1px solid var(--line);
  border-top: 2px solid rgba(26,107,218,.3); padding: 40px 36px;
  transform-style: preserve-3d; will-change: transform; transition: border-top-color .3s, box-shadow .3s;
}
.rp-cancel-item:hover { border-top-color: var(--blue); box-shadow: 0 0 0 1px rgba(26,107,218,.1); }
.rp-cancel-stage {
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.rp-cancel-title {
  font-family: var(--fh); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin: 0 0 14px; letter-spacing: -.02em;
}
.rp-cancel-desc { font-size: 14px; color: var(--mute); line-height: 1.8; margin: 0; }
.rp-cancel-policy {
  margin-top: 16px; padding: 14px 18px;
  background: rgba(26,107,218,.06); border-left: 2px solid rgba(26,107,218,.4);
  font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7;
}

/* =============================================
   DISCLAIMER (dis-)
   ============================================= */

.dis-grid-sec { padding: 100px 0 80px; background: var(--bg2); border-top: 1px solid var(--line); }
.dis-grid-hd { text-align: center; margin-bottom: 64px; }
.dis-grid-hd .eyebrow { margin-bottom: 16px; }
.dis-grid-hd h2 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0 0 18px; line-height: 1.06;
}
.dis-grid-hd h2 em { font-style: normal; color: var(--blue); }
.dis-grid-hd p { font-size: 15px; color: var(--mute); line-height: 1.8; max-width: 600px; margin: 0 auto; }
.dis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; }
.dis-item {
  background: var(--bg); border: 1px solid var(--line);
  border-left: 2px solid rgba(26,107,218,.25);
  padding: 40px 44px; display: flex; gap: 24px; align-items: flex-start;
  transform-style: preserve-3d; will-change: transform; transition: border-left-color .3s, box-shadow .3s;
}
.dis-item:hover { border-left-color: var(--blue); box-shadow: 0 0 0 1px rgba(26,107,218,.1), 0 6px 28px rgba(0,0,0,.25); }
.dis-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.2rem; transition: background .3s, box-shadow .3s;
}
.dis-item:hover .dis-icon { background: rgba(26,107,218,.18); box-shadow: 0 0 22px rgba(26,107,218,.28); }
.dis-body { flex: 1; }
.dis-title {
  font-family: var(--fh); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin: 0 0 12px; letter-spacing: -.02em;
}
.dis-text { font-size: 14px; color: var(--mute); line-height: 1.82; margin: 0; }

.dis-notice { padding: 72px 0; background: var(--bg); border-top: 1px solid var(--line); }
.dis-notice-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.dis-notice-inner .eyebrow { margin-bottom: 20px; }
.dis-notice-inner h2 {
  font-family: var(--fh); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0 0 20px; line-height: 1.1;
}
.dis-notice-inner h2 em { font-style: normal; color: var(--blue); }
.dis-notice-inner p { font-size: 15px; color: var(--mute); line-height: 1.85; margin: 0 0 28px; }
.dis-notice-inner a { color: var(--bl); text-decoration: none; }
.dis-notice-inner a:hover { color: var(--white); }

/* =============================================
   SITEMAP (sm-)
   ============================================= */

.sm-body { padding: 100px 0 80px; background: var(--bg); }
.sm-body-hd { text-align: center; margin-bottom: 72px; }
.sm-body-hd .eyebrow { margin-bottom: 18px; }
.sm-body-hd h2 {
  font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -.03em; color: var(--white); margin: 0 0 18px; line-height: 1.06;
}
.sm-body-hd h2 em { font-style: normal; color: var(--blue); }
.sm-body-hd p { font-size: 15px; color: var(--mute); line-height: 1.8; max-width: 560px; margin: 0 auto; }
.sm-clusters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.sm-cluster {
  background: var(--bg2); border: 1px solid var(--line);
  padding: 40px 36px; position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform; transition: background .3s, box-shadow .3s;
}
.sm-cluster:hover { background: var(--bg3); box-shadow: 0 0 0 1px rgba(26,107,218,.14); }
.sm-cluster::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--blue), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .45s;
}
.sm-cluster:hover::after { transform: scaleX(1); }
.sm-cluster-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.sm-cluster-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(26,107,218,.08); border: 1px solid rgba(26,107,218,.18); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.1rem; transition: background .3s, box-shadow .3s;
}
.sm-cluster:hover .sm-cluster-icon { background: rgba(26,107,218,.18); box-shadow: 0 0 20px rgba(26,107,218,.22); }
.sm-cluster-meta { flex: 1; min-width: 0; }
.sm-cluster-title {
  font-family: var(--fh); font-size: 1rem; font-weight: 700;
  color: var(--white); margin: 0 0 4px; letter-spacing: -.02em;
}
.sm-cluster-count { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); }
.sm-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.sm-link { border-top: 1px solid rgba(26,107,218,.07); }
.sm-link a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0; font-size: 13px; color: var(--mute);
  text-decoration: none; transition: color .2s, padding-left .2s;
}
.sm-link a:hover { color: var(--bl); padding-left: 5px; }
.sm-link a i { font-size: 9px; opacity: .45; flex-shrink: 0; }
.sm-cluster-more {
  display: block; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(26,107,218,.1);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue); text-decoration: none; transition: color .2s;
}
.sm-cluster-more:hover { color: var(--bl); }
.sm-links--2col { column-count: 2; column-gap: 0; }
.sm-links--2col .sm-link { break-inside: avoid; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
  .tc-layout { grid-template-columns: 200px 1fr; gap: 44px; }
  .sm-clusters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .tc-layout { grid-template-columns: 1fr; }
  .tc-toc { display: none; }
  .rp-ms-grid { grid-template-columns: repeat(2, 1fr); }
  .rp-cancel-grid { grid-template-columns: 1fr; }
  .lg-trust-grid { grid-template-columns: 1fr; }
  .lg-trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .lg-trust-item:last-child { border-bottom: none; }
  .lg-faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .lg-faq-hd { position: static; }
}
@media (max-width: 768px) {
  .ph-content { padding: 60px 0 160px; }
  .ph-article-chips { gap: 8px; }
  .lg-section { padding: 32px 28px; }
  .lg-section-num { font-size: 5rem; }
  .lg-doc-inner { max-width: 100%; }
  .dis-grid { grid-template-columns: 1fr; }
  .dis-item { flex-direction: column; gap: 16px; padding: 32px 28px; }
  .rp-ms-grid { grid-template-columns: 1fr; }
  .rp-ms-item { border-right: none; border-bottom: 1px solid var(--line); }
  .rp-ms-item:last-child { border-bottom: none; }
  .rp-cancel-grid { grid-template-columns: 1fr; }
  .sm-clusters { grid-template-columns: 1fr; }
  .lg-contact-inner { flex-direction: column; align-items: flex-start; }
  .lg-contact-ctas { flex-direction: column; width: 100%; }
  .lg-contact-ctas .btn-primary,
  .lg-contact-ctas .btn-outline { width: 100%; justify-content: center; text-align: center; }
}
@media (max-width: 640px) {
  .ph-bottom-stats { flex-wrap: wrap; }
  .ph-bstat { flex: 0 0 50%; border-bottom: 1px solid rgba(26,107,218,.07); }
  .ph-bstat:nth-child(even) { border-right: none; }
}
