

 :root {
     --bg: #fafaf7;
     --bg2: #f3f1ec;
     --bg3: #ebe8e1;
     --card: #fff;
     --border: rgba(0, 0, 0, 0.06);
     --border2: rgba(0, 0, 0, 0.1);
     --tx: #111;
     --tx2: #555;
     --tx3: #999;
     --tx4: #ccc;
     --pur: #7b5b7e;
     --pur-d: #5c3d5e;
     --pur-l: #a888ac;
     --pur-p: rgba(123, 91, 126, 0.08);
     --cor: #c4745a;
     --cor-l: #d4917c;
     --cor-p: rgba(196, 116, 90, 0.08);
     --mos: #6b8f5e;
     --mos-p: rgba(107, 143, 94, 0.08);
     --amb: #b89a3e;
     --fd: "Cormorant Garamond", serif;
     --fb: "Sora", sans-serif;
     --r: 14px;
     --rl: 22px;
     --ease: cubic-bezier(0.16, 1, 0.3, 1);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

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

 body {
     font-family: var(--fb);
     color: var(--tx);
     background: var(--bg);
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

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

 ::selection {
     background: var(--pur);
     color: #fff;
 }

 .page {
     display: none;
 }

 .page.active {
     display: block;
 }

 /* PRELOADER */
 .pre {
     position: fixed;
     inset: 0;
     background: #fff;
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     gap: 18px;
     transition:
         opacity 0.8s,
         visibility 0.8s;
 }

 .pre.hid {
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
 }

 .pre-logo {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .pre-ic {
     width: 44px;
     height: 44px;
     background: var(--pur);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .pre-ic svg {
     width: 20px;
     height: 20px;
 }

 .pre-ic .dot {
     position: absolute;
     top: 8px;
     right: 8px;
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: var(--cor);
 }

 .pre-tx {
     font-family: var(--fd);
     font-size: 2.8rem;
     font-weight: 600;
     color: var(--tx);
 }

 .pre-tx .ec {
     color: var(--cor);
 }

 .pre-bar {
     width: 80px;
     height: 2px;
     background: var(--bg3);
     border-radius: 2px;
     overflow: hidden;
 }

 .pre-bar::after {
     content: "";
     display: block;
     height: 100%;
     background: var(--pur);
     animation: pB 1.8s ease forwards;
 }

 @keyframes pB {
     from {
         width: 0;
     }

     to {
         width: 100%;
     }
 }

 /* NAV */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 16px 36px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: all 0.4s var(--ease);
 }

 nav.scrolled {
     background: rgba(250, 250, 247, 0.94);
     backdrop-filter: blur(24px);
     padding: 12px 36px;
     border-bottom: 1px solid var(--border);
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 9px;
     cursor: pointer;
 }

 .logo-ic {
     width: 30px;
     height: 30px;
     background: var(--pur);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
 }

 .logo-ic svg {
     width: 14px;
     height: 14px;
 }

 .logo-ic .ldot {
     position: absolute;
     top: 5px;
     right: 5px;
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: var(--cor);
 }

 .logo-tx {
     font-family: var(--fd);
     font-size: 1.4rem;
     font-weight: 600;
     color: var(--tx);
 }

 .logo-tx .ec {
     color: var(--cor);
 }

 .nav-lk {
     display: flex;
     gap: 26px;
     align-items: center;
 }

 .nav-lk a {
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--tx2);
     transition: color 0.3s;
     position: relative;
 }

 .nav-lk a::after {
     content: "";
     position: absolute;
     bottom: -3px;
     left: 0;
     width: 0;
     height: 1.5px;
     background: var(--pur);
     transition: width 0.3s var(--ease);
 }

 .nav-lk a:hover {
     color: var(--pur);
 }

 .nav-lk a:hover::after {
     width: 100%;
 }

 .nav-cta {
     padding: 8px 20px !important;
     background: var(--pur-d) !important;
     color: #fff !important;
     border-radius: 100px;
     font-size: 0.72rem !important;
     transition: all 0.3s !important;
 }

 .nav-cta::after {
     display: none !important;
 }

 .nav-cta:hover {
     background: var(--pur) !important;
     transform: translateY(-1px);
     box-shadow: 0 6px 20px rgba(92, 61, 94, 0.2);
 }

 .ham {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     padding: 6px;
     background: none;
     border: none;
     z-index: 1002;
 }

 .ham span {
     width: 20px;
     height: 1.5px;
     background: var(--tx);
     transition: all 0.3s;
     display: block;
 }

 .ham.on span:nth-child(1) {
     transform: rotate(45deg) translate(4.5px, 4.5px);
 }

 .ham.on span:nth-child(2) {
     opacity: 0;
 }

 .ham.on span:nth-child(3) {
     transform: rotate(-45deg) translate(4.5px, -4.5px);
 }

 .mob {
     display: none;
     position: fixed;
     inset: 0;
     background: var(--bg);
     z-index: 1001;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 28px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s;
 }

 .mob.open {
     opacity: 1;
     visibility: visible;
 }

 .mob a {
     font-family: var(--fd);
     font-size: 2rem;
     font-weight: 600;
     color: var(--tx2);
     transition: color 0.3s;
 }

 .mob a:hover {
     color: var(--pur);
 }

 /* HERO */
 .hero {
     min-height: 100vh;
     display: flex;
     align-items: center;
     padding: 120px 36px 80px;
     position: relative;
     overflow: hidden;
 }

 .hero-bg {
     position: absolute;
     inset: 0;
     z-index: 0;
     background:
         radial-gradient(ellipse 55% 45% at 55% 40%,
             rgba(123, 91, 126, 0.06) 0%,
             transparent 60%),
         radial-gradient(ellipse 35% 35% at 10% 70%,
             rgba(196, 116, 90, 0.04) 0%,
             transparent 50%);
 }

 .hero-inner {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     width: 100%;
 }

 .hero-content {
     max-width: 530px;
 }

 .hero-tag {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 0.66rem;
     font-weight: 500;
     letter-spacing: 0.16em;
     text-transform: uppercase;
     color: var(--pur);
     margin-bottom: 22px;
     opacity: 0;
     animation: fU 0.7s 2s forwards;
 }

 .hero-tag .tdot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--cor);
     animation: tP 2s ease-in-out infinite;
 }

 @keyframes tP {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
     }

     50% {
         opacity: 0.4;
         transform: scale(1.5);
     }
 }

 .hero h1 {
     font-family: var(--fd);
     font-size: clamp(2.6rem, 5.2vw, 4.6rem);
     font-weight: 600;
     line-height: 1.06;
     letter-spacing: -0.02em;
     margin-bottom: 20px;
 }

 .hero h1 .hl {
     display: block;
     overflow: hidden;
 }

 .hero h1 .hl span {
     display: inline-block;
     opacity: 0;
     transform: translateY(110%);
     animation: tR 0.9s var(--ease) forwards;
 }

 .hero h1 .hl:nth-child(1) span {
     animation-delay: 2.05s;
 }

 .hero h1 .hl:nth-child(2) span {
     animation-delay: 2.2s;
 }

 .hero h1 .hl:nth-child(3) span {
     animation-delay: 2.35s;
 }

 .hero h1 em {
     font-style: italic;
     color: var(--pur);
 }

 @keyframes tR {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes fU {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-desc {
     font-size: 0.98rem;
     line-height: 1.8;
     color: var(--tx2);
     max-width: 420px;
     margin-bottom: 34px;
     opacity: 0;
     animation: fU 0.7s 2.5s forwards;
     font-weight: 300;
 }

 .store-btns {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     opacity: 0;
     animation: fU 0.7s 2.7s forwards;
 }

 .store-btn {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     padding: 13px 26px;
     border-radius: 14px;
     background: var(--tx);
     color: #fff;
     transition: all 0.35s var(--ease);
     cursor: pointer;
     border: none;
     font-family: var(--fb);
 }

 .store-btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
 }

 .store-btn svg {
     width: 22px;
     height: 22px;
     flex-shrink: 0;
     fill: #fff;
 }

 .store-btn-tx {
     text-align: left;
 }

 .store-btn-tx .sm {
     font-size: 0.56rem;
     font-weight: 400;
     opacity: 0.65;
     display: block;
     line-height: 1;
 }

 .store-btn-tx .lg {
     font-size: 0.9rem;
     font-weight: 600;
     display: block;
     line-height: 1.2;
     margin-top: 2px;
 }

 /* PHONE SVG */
 .hero-phone-wrap {
     position: relative;
     display: flex;
     justify-content: center;
     opacity: 0;
     animation: fU 1s 3s forwards;
 }

 .hero-phone {
     max-width: 290px;
     width: 100%;
     filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
 }

 .hero-phone img {
     width: 100%;
     object-fit: contain;
     border-radius: 16px;
     display: block;
     height: 100%;
 }

 .fbadge {
     position: absolute;
     background: rgba(255, 255, 255, 0.92);
     backdrop-filter: blur(16px);
     border-radius: 16px;
     padding: 11px 15px;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
     border: 1px solid var(--border);
     display: flex;
     align-items: center;
     gap: 9px;
     animation: fbF 5.5s ease-in-out infinite;
 }

 .fbadge.f1 {
     top: 60px;
     right: -55px;
     animation-delay: 0s;
 }

 .fbadge.f2 {
     bottom: 100px;
     left: -45px;
     animation-delay: 2s;
 }

 .fbi {
     width: 32px;
     height: 32px;
     border-radius: 9px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .fbadge h4 {
     font-size: 0.72rem;
     font-weight: 600;
 }

 .fbadge p {
     font-size: 0.6rem;
     color: var(--tx3);
     margin-top: 1px;
 }

 @keyframes fbF {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-8px);
     }
 }

 /* MARQUEE */
 .marq {
     padding: 20px 0;
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     overflow: hidden;
     background: var(--bg2);
 }

 .marq-trk {
     display: flex;
     gap: 48px;
     animation: mA 30s linear infinite;
     width: max-content;
 }

 .mi {
     display: flex;
     align-items: center;
     gap: 10px;
     white-space: nowrap;
 }

 .mi .mn {
     font-family: var(--fd);
     font-size: 1.5rem;
     font-weight: 700;
     color: var(--pur-d);
 }

 .mi .ml {
     font-size: 0.62rem;
     color: var(--tx3);
     text-transform: uppercase;
     letter-spacing: 0.1em;
     font-weight: 500;
 }

 .mdiv {
     color: var(--tx4);
     font-size: 0.75rem;
 }

 @keyframes mA {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* SECTIONS */
 section {
     padding: 100px 36px;
 }

 .scenter {
     text-align: center;
     max-width: 540px;
     margin: 0 auto;
 }

 .stag {
     font-size: 0.63rem;
     font-weight: 600;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: var(--pur);
     margin-bottom: 10px;
     display: inline-block;
 }

 .stitle {
     font-family: var(--fd);
     font-size: clamp(1.8rem, 3vw, 2.7rem);
     font-weight: 600;
     line-height: 1.12;
     margin-bottom: 14px;
 }

 .stitle em {
     font-style: italic;
     color: var(--pur);
 }

 .sdesc {
     font-size: 0.92rem;
     line-height: 1.75;
     color: var(--tx2);
     max-width: 460px;
     font-weight: 300;
 }

 .rv {
     opacity: 0;
     transform: translateY(28px);
     transition: all 0.8s var(--ease);
 }

 .rv.vis {
     opacity: 1;
     transform: translateY(0);
 }

 .rd1 {
     transition-delay: 0.1s;
 }

 .rd2 {
     transition-delay: 0.2s;
 }

 .rd3 {
     transition-delay: 0.3s;
 }

 .rd4 {
     transition-delay: 0.4s;
 }

 .rd5 {
     transition-delay: 0.5s;
 }

 /* ABOUT */
 .about {
     background: var(--bg);
 }

 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     max-width: 1120px;
     margin: 0 auto;
 }

 .about-ill {
     background: var(--bg2);
     border-radius: var(--rl);
     overflow: hidden;
     aspect-ratio: 4/5;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .about-ill svg {
     width: 70%;
     height: auto;
 }

 .pillars {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 24px;
 }

 .pil {
     display: flex;
     gap: 13px;
     align-items: flex-start;
     padding: 14px;
     border-radius: var(--r);
     transition: all 0.3s;
     border: 1px solid transparent;
 }

 .pil:hover {
     background: var(--card);
     border-color: var(--border);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
 }

 .pil-ic {
     width: 38px;
     height: 38px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .pil h4 {
     font-size: 0.84rem;
     font-weight: 600;
     margin-bottom: 2px;
 }

 .pil p {
     font-size: 0.78rem;
     color: var(--tx2);
     line-height: 1.6;
     font-weight: 300;
 }

 /* HOW */
 .how {
     background: var(--bg2);
 }

 .steps {
     max-width: 1120px;
     margin: 44px auto 0;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
 }

 .stp {
     text-align: center;
     padding: 0 12px;
 }

 .stp-top {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
 }

 .stp-n {
     width: 52px;
     height: 52px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--fd);
     font-size: 1.1rem;
     font-weight: 700;
     background: var(--card);
     color: var(--pur-d);
     border: 1.5px solid var(--border2);
     flex-shrink: 0;
     position: relative;
     z-index: 2;
     transition: all 0.35s var(--ease);
 }

 .stp-l {
     flex: 1;
     height: 1px;
     background: var(--border2);
 }

 .stp-l.last {
     opacity: 0;
 }

 .stp:hover .stp-n {
     background: var(--pur-d);
     color: #fff;
     border-color: var(--pur-d);
     transform: scale(1.1);
     box-shadow: 0 6px 24px rgba(92, 61, 94, 0.2);
 }

 .stp-ic {
     width: 42px;
     height: 42px;
     margin: 0 auto 10px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--card);
 }

 .stp h3 {
     font-size: 0.88rem;
     font-weight: 600;
     margin-bottom: 4px;
 }

 .stp p {
     font-size: 0.78rem;
     color: var(--tx2);
     line-height: 1.6;
     font-weight: 300;
 }

 /* SERVICES */
 .services {
     background: var(--bg);
 }

 .sgrid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 14px;
     max-width: 1120px;
     margin: 44px auto 0;
 }

 .scard {
     padding: 28px 22px;
     border-radius: var(--rl);
     background: var(--card);
     border: 1px solid var(--border);
     transition: all 0.45s var(--ease);
     position: relative;
     overflow: hidden;
 }

 .scard::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, var(--pur), var(--cor));
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.45s var(--ease);
 }

 .scard:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
     border-color: transparent;
 }

 .scard:hover::before {
     transform: scaleX(1);
 }

 .sc-ic {
     width: 42px;
     height: 42px;
     border-radius: 11px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 14px;
     transition: transform 0.3s;
 }

 .scard:hover .sc-ic {
     transform: scale(1.08);
 }

 .i1 {
     background: var(--pur-p);
     color: var(--pur);
 }

 .i2 {
     background: var(--cor-p);
     color: var(--cor);
 }

 .i3 {
     background: var(--mos-p);
     color: var(--mos);
 }

 .i4 {
     background: rgba(184, 154, 62, 0.08);
     color: var(--amb);
 }

 .scard h3 {
     font-family: var(--fd);
     font-size: 1.15rem;
     font-weight: 600;
     margin-bottom: 6px;
 }

 .scard p {
     font-size: 0.78rem;
     color: var(--tx2);
     line-height: 1.7;
     font-weight: 300;
 }

 .scard .smore {
     display: inline-flex;
     align-items: center;
     gap: 4px;
     margin-top: 12px;
     font-size: 0.72rem;
     font-weight: 600;
     color: var(--pur);
     transition: gap 0.3s;
 }

 .scard:hover .smore {
     gap: 9px;
 }

 /* CTA */
 .cta {
     padding: 90px 36px;
     background: var(--pur-d);
     position: relative;
     overflow: hidden;
     text-align: center;
 }

 .cta::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
         radial-gradient(ellipse 50% 50% at 20% 50%,
             rgba(107, 143, 94, 0.1) 0%,
             transparent 60%),
         radial-gradient(ellipse 40% 40% at 80% 50%,
             rgba(196, 116, 90, 0.08) 0%,
             transparent 50%);
 }

 .cta>* {
     position: relative;
     z-index: 1;
 }

 .cta h2 {
     font-family: var(--fd);
     font-size: clamp(1.7rem, 3.2vw, 2.7rem);
     font-weight: 600;
     color: #fff;
     line-height: 1.12;
     margin-bottom: 12px;
 }

 .cta h2 em {
     font-style: italic;
     color: var(--cor-l);
 }

 .cta>p {
     font-size: 0.92rem;
     color: rgba(255, 255, 255, 0.5);
     max-width: 440px;
     margin: 0 auto 26px;
     line-height: 1.72;
     font-weight: 300;
 }

 .cta .store-btns {
     justify-content: center;
     opacity: 1;
     animation: none;
 }

 .cta .store-btn {
     background: #fff;
     color: var(--tx);
 }

 .cta .store-btn svg {
     fill: var(--tx);
 }

 /* TESTI */
 .testi {
     background: var(--bg2);
     overflow: hidden;
     padding-bottom: 90px;
 }

 .testi-hd {
     max-width: 540px;
     margin-bottom: 38px;
     padding: 0 36px;
 }

 .testi-wrap {
     overflow: hidden;
 }

 .testi-trk {
     display: flex;
     gap: 14px;
     animation: tS 40s linear infinite;
     width: max-content;
 }

 .tcard {
     width: 320px;
     flex-shrink: 0;
     padding: 24px;
     border-radius: var(--rl);
     background: var(--card);
     border: 1px solid var(--border);
     transition: transform 0.3s;
 }

 .tcard:hover {
     transform: translateY(-3px);
 }

 .tcard .tst {
     color: var(--amb);
     font-size: 0.75rem;
     margin-bottom: 10px;
     letter-spacing: 2px;
 }

 .tcard blockquote {
     font-family: var(--fd);
     font-size: 0.95rem;
     line-height: 1.72;
     color: var(--tx2);
     font-weight: 400;
     margin-bottom: 14px;
     font-style: italic;
 }

 .tcard .ta {
     display: flex;
     align-items: center;
     gap: 9px;
 }

 .tcard .tav {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 0.72rem;
     color: #fff;
 }

 .tcard .ta h4 {
     font-size: 0.76rem;
     font-weight: 600;
 }

 .tcard .ta p {
     font-size: 0.62rem;
     color: var(--tx3);
 }

 @keyframes tS {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* CONTACT */
 .contact {
     background: var(--bg);
 }

 .ct-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 52px;
     max-width: 1000px;
     margin: 0 auto;
     align-items: start;
 }

 .ct-info {
     display: flex;
     flex-direction: column;
     gap: 16px;
     margin-top: 26px;
 }

 .ci {
     display: flex;
     gap: 11px;
     align-items: flex-start;
 }

 .ci-ic {
     width: 38px;
     height: 38px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     background: var(--pur-p);
 }

 .ci h4 {
     font-size: 0.66rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     color: var(--tx3);
     margin-bottom: 1px;
 }

 .ci p {
     font-size: 0.86rem;
 }

 .ct-form {
     background: var(--card);
     padding: 30px;
     border-radius: var(--rl);
     border: 1px solid var(--border);
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
 }

 .ct-form h3 {
     font-family: var(--fd);
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 20px;
 }

 .fr {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 10px;
 }

 .fg {
     margin-bottom: 12px;
 }

 .fg label {
     display: block;
     font-size: 0.66rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.08em;
     color: var(--tx3);
     margin-bottom: 4px;
 }

 .fg input,
 .fg textarea,
 .fg select {
     width: 100%;
     padding: 10px 13px;
     border: 1.5px solid var(--bg3);
     border-radius: var(--r);
     font-family: var(--fb);
     font-size: 0.84rem;
     color: var(--tx);
     background: var(--bg);
     transition: border-color 0.3s;
     outline: none;
 }

 .fg input:focus,
 .fg textarea:focus {
     border-color: var(--pur);
 }

 .fg textarea {
     resize: vertical;
     min-height: 80px;
 }

 .f-btn {
     width: 100%;
     padding: 12px;
     background: var(--pur-d);
     color: #fff;
     border: none;
     border-radius: 100px;
     font-family: var(--fb);
     font-size: 0.84rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
 }

 .f-btn:hover {
     background: var(--pur);
     transform: translateY(-1px);
 }

 /* FOOTER */
 footer {
     background: var(--bg2);
     padding: 48px 36px 20px;
     border-top: 1px solid var(--border);
 }

 .ft-top {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 32px;
     padding-bottom: 28px;
     border-bottom: 1px solid var(--border);
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .ft-brand>p {
     margin-top: 10px;
     font-size: 0.78rem;
     max-width: 250px;
     line-height: 1.65;
     color: var(--tx3);
     font-weight: 300;
 }

 .ft-links {
     display: flex;
     gap: 40px;
     flex-wrap: wrap;
 }

 .ft-col h4 {
     font-size: 0.62rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: var(--tx2);
     margin-bottom: 10px;
 }

 .ft-col a {
     display: block;
     font-size: 0.78rem;
     color: var(--tx3);
     margin-bottom: 6px;
     transition: color 0.3s;
     cursor: pointer;
 }

 .ft-col a:hover {
     color: var(--pur);
 }

 .ft-btm {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 0.68rem;
     color: var(--tx3);
     flex-wrap: wrap;
     gap: 8px;
 }

 .ft-btm .ht {
     color: var(--cor);
 }

 /* LEGAL */
 .lgl {
     padding-top: 110px;
     padding-bottom: 60px;
     background: var(--bg);
 }

 .lgl .lc {
     max-width: 740px;
     margin: 0 auto;
     padding: 0 36px;
 }

 .lgl .bk {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 0.76rem;
     font-weight: 500;
     color: var(--pur);
     margin-bottom: 24px;
     cursor: pointer;
     transition: gap 0.3s;
 }

 .lgl .bk:hover {
     gap: 10px;
 }

 .lgl h1 {
     font-family: var(--fd);
     font-size: clamp(1.8rem, 2.8vw, 2.4rem);
     font-weight: 600;
     margin-bottom: 4px;
 }

 .lgl .upd {
     font-size: 0.76rem;
     color: var(--tx3);
     margin-bottom: 30px;
 }

 .lgl h2 {
     font-family: var(--fd);
     font-size: 1.25rem;
     font-weight: 600;
     margin-top: 30px;
     margin-bottom: 9px;
     padding-bottom: 6px;
     border-bottom: 1px solid var(--border);
 }

 .lgl h3 {
     font-size: 0.9rem;
     font-weight: 600;
     margin-top: 16px;
     margin-bottom: 6px;
 }

 .lgl p {
     font-size: 0.84rem;
     line-height: 1.75;
     color: var(--tx2);
     margin-bottom: 9px;
     font-weight: 300;
 }

 .lgl ul {
     margin: 5px 0 12px 18px;
 }

 .lgl li {
     font-size: 0.82rem;
     line-height: 1.7;
     color: var(--tx2);
     margin-bottom: 4px;
     font-weight: 300;
 }

 .lgl strong {
     font-weight: 600;
     color: var(--tx);
 }

 .lgl a {
     color: var(--pur);
     text-decoration: underline;
 }

 .ibox {
     background: var(--bg2);
     border-radius: var(--r);
     padding: 14px 18px;
     margin: 14px 0;
     border-left: 3px solid var(--pur);
 }

 .ibox p {
     margin-bottom: 0;
 }

 .wbox {
     background: var(--cor-p);
     border-radius: var(--r);
     padding: 14px 18px;
     margin: 14px 0;
     border-left: 3px solid var(--cor);
 }

 .wbox p {
     margin-bottom: 0;
 }

 .pnav {
     display: flex;
     flex-wrap: wrap;
     gap: 5px;
     margin-bottom: 26px;
 }

 .pnav a {
     padding: 5px 12px;
     background: var(--bg2);
     border-radius: 100px;
     font-size: 0.7rem;
     font-weight: 500;
     color: var(--tx2);
     text-decoration: none;
     transition: all 0.3s;
     cursor: pointer;
     border: 1px solid var(--border);
 }

 .pnav a:hover {
     background: var(--pur-d);
     color: #fff;
     border-color: var(--pur-d);
 }

 /* DELETE */
 .del-pg {
     padding-top: 110px;
     padding-bottom: 60px;
     background: var(--bg);
 }

 .del-pg .dlc {
     max-width: 580px;
     margin: 0 auto;
     padding: 0 36px;
 }

 .del-profile {
     background: var(--card);
     border-radius: var(--rl);
     padding: 30px;
     border: 1px solid var(--border);
     margin-bottom: 24px;
     text-align: center;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
 }

 .del-av {
     width: 68px;
     height: 68px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--pur), var(--pur-d));
     margin: 0 auto 12px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .del-av svg {
     width: 30px;
     height: 30px;
     stroke: #fff;
 }

 .del-profile h3 {
     font-family: var(--fd);
     font-size: 1.15rem;
     font-weight: 600;
     margin-bottom: 2px;
 }

 .del-profile .de {
     font-size: 0.78rem;
     color: var(--tx3);
     margin-bottom: 2px;
 }

 .del-profile .did {
     font-size: 0.68rem;
     color: var(--tx3);
     background: var(--bg2);
     display: inline-block;
     padding: 3px 10px;
     border-radius: 100px;
     margin-bottom: 16px;
 }

 .del-fields {
     text-align: left;
     border-top: 1px solid var(--border);
     padding-top: 14px;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .df {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 8px 0;
     border-bottom: 1px solid var(--border);
 }

 .df:last-child {
     border-bottom: none;
 }

 .df .dl {
     font-size: 0.68rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.06em;
     color: var(--tx3);
 }

 .df .dv {
     font-size: 0.84rem;
 }

 .del-warn {
     background: var(--cor-p);
     border-radius: var(--rl);
     padding: 22px;
     border-left: 4px solid var(--cor);
     margin-bottom: 22px;
 }

 .del-warn h3 {
     font-family: var(--fd);
     font-size: 1.05rem;
     font-weight: 600;
     color: var(--cor);
     margin-bottom: 7px;
 }

 .del-warn p {
     font-size: 0.82rem;
     line-height: 1.7;
     color: var(--tx2);
     font-weight: 300;
     margin-bottom: 5px;
 }

 .del-warn ul {
     margin: 5px 0 0 14px;
 }

 .del-warn li {
     font-size: 0.8rem;
     line-height: 1.6;
     color: var(--tx2);
     margin-bottom: 2px;
     font-weight: 300;
 }

 .del-conf {
     background: var(--card);
     border-radius: var(--rl);
     padding: 22px;
     border: 1px solid var(--border);
     margin-bottom: 18px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
 }

 .del-conf h3 {
     font-family: var(--fd);
     font-size: 1.05rem;
     font-weight: 600;
     margin-bottom: 12px;
 }

 .del-chk {
     display: flex;
     align-items: flex-start;
     gap: 8px;
     margin-bottom: 16px;
 }

 .del-chk input[type="checkbox"] {
     width: 16px;
     height: 16px;
     accent-color: var(--cor);
     margin-top: 2px;
     flex-shrink: 0;
 }

 .del-chk label {
     font-size: 0.8rem;
     color: var(--tx2);
     line-height: 1.5;
     font-weight: 300;
     cursor: pointer;
 }

 .btn-del {
     width: 100%;
     padding: 13px;
     background: var(--cor);
     color: #fff;
     border: none;
     border-radius: 100px;
     font-family: var(--fb);
     font-size: 0.86rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 6px;
 }

 .btn-del:hover {
     background: #b85a42;
     transform: translateY(-1px);
     box-shadow: 0 8px 24px rgba(196, 116, 90, 0.2);
 }

 .btn-del:disabled {
     opacity: 0.35;
     cursor: not-allowed;
     transform: none;
     box-shadow: none;
 }

 .del-note {
     text-align: center;
     font-size: 0.74rem;
     color: var(--tx3);
     line-height: 1.6;
     font-weight: 300;
     margin-top: 14px;
 }

 .del-note a {
     color: var(--pur);
     font-weight: 500;
     cursor: pointer;
 }

 .lgl-nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 12px 36px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: rgba(250, 250, 247, 0.94);
     backdrop-filter: blur(24px);
     border-bottom: 1px solid var(--border);
 }

 .lgl-nav .hm-btn {
     padding: 8px 18px;
     background: var(--pur-d);
     color: #fff;
     border-radius: 100px;
     font-size: 0.72rem;
     font-weight: 500;
     cursor: pointer;
     font-family: var(--fb);
     border: none;
     transition: all 0.3s;
 }

 .lgl-nav .hm-btn:hover {
     background: var(--pur);
 }

 #about,
 #how,
 #services,
 #testi,
 #contact {
     scroll-margin-top: 70px;
 }

 @media (max-width: 1024px) {
     .hero-inner {
         grid-template-columns: 1fr;
     }

     .hero-phone-wrap {
         display: none;
     }

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

     .steps {
         grid-template-columns: repeat(2, 1fr);
         gap: 22px;
     }

     .stp-l {
         display: none;
     }

     .stp-top {
         justify-content: center;
     }
 }

 @media (max-width: 768px) {
     nav {
         padding: 14px 20px;
     }

     nav.scrolled {
         padding: 10px 20px;
     }

     .nav-lk {
         display: none;
     }

     .ham {
         display: flex;
     }

     .mob {
         display: flex;
     }

     section {
         padding: 70px 20px;
     }

     .hero {
         padding: 100px 20px 60px;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 32px;
     }

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

     .ct-grid {
         grid-template-columns: 1fr;
         gap: 28px;
     }

     .ct-form {
         padding: 22px;
     }

     .ft-top {
         flex-direction: column;
     }

     footer {
         padding: 32px 20px 16px;
     }

     .testi-hd {
         padding: 0 20px;
     }

     .lgl .lc,
     .del-pg .dlc {
         padding: 0 20px;
     }

     .cta {
         padding: 70px 20px;
     }

     .lgl-nav {
         padding: 10px 20px;
     }
 }

 @media (max-width: 480px) {
     .steps {
         grid-template-columns: 1fr;
     }

     .store-btns {
         flex-direction: column;
     }

     .store-btn {
         justify-content: center;
     }

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

     .ft-links {
         flex-direction: column;
         gap: 18px;
     }
 }