*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0A1628;--bg-card:rgba(255,255,255,0.02);--border:rgba(255,255,255,0.06);
  --gold:#C8956C;--gold-dark:#A07050;--gold-border:rgba(196,149,108,0.15);
  --gold-bg:rgba(196,149,108,0.08);--gold-bg2:rgba(196,149,108,0.04);
  --white:#FFF;--text-secondary:rgba(255,255,255,0.55);--text-muted:rgba(255,255,255,0.45);
  --text-faint:rgba(255,255,255,0.35);--text-ghost:rgba(255,255,255,0.2);
  --font-display:'Playfair Display',Georgia,serif;--font-body:'DM Sans','Segoe UI',sans-serif;
  --max-w:1100px;--max-w-lg:1200px;--max-w-sm:800px;--max-w-xs:600px;
  --pad-section:clamp(5rem,10vw,9rem) 1.5rem;
}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--white);font-family:var(--font-body);-webkit-font-smoothing:antialiased;overflow-x:hidden;line-height:1.6}
::selection{background:rgba(196,149,108,0.3);color:#fff}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:rgba(196,149,108,0.2);border-radius:3px}
a{color:inherit;text-decoration:none}
html.js .reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
html.js .reveal.visible{opacity:1;transform:translateY(0)}
html.js .reveal-d1{transition-delay:.1s}
html.js .reveal-d2{transition-delay:.2s}
html.js .reveal-d3{transition-delay:.3s}
html.js .reveal-d4{transition-delay:.4s}
.label{font-size:.72rem;color:var(--gold);font-weight:600;letter-spacing:.12em;text-transform:uppercase;margin-bottom:.75rem}
.section-title{font-family:var(--font-display);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:700;color:var(--white);line-height:1.12;margin:0 0 1rem}
.section-desc{font-size:.95rem;color:var(--text-muted);max-width:var(--max-w-xs);line-height:1.65;margin:0}
.container{max-width:var(--max-w);margin:0 auto;padding:var(--pad-section)}
.container--lg{max-width:var(--max-w-lg)}.container--sm{max-width:var(--max-w-sm)}
.text-center{text-align:center}.mx-auto{margin-left:auto;margin-right:auto}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:.85rem 2rem;border-radius:8px;cursor:pointer;font-size:.9rem;font-family:var(--font-body);font-weight:600;letter-spacing:.02em;border:none;transition:all .25s}
.btn--primary{background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:var(--bg);font-weight:700}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(196,149,108,.25)}
.btn--ghost{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.12);color:rgba(255,255,255,.7)}
.btn--ghost:hover{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.18)}

/* SUBPAGE NAV */
.snav{position:fixed;top:0;left:0;right:0;z-index:1000;padding:0 clamp(1rem,4vw,3rem);background:rgba(8,18,35,.95);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid var(--gold-border)}
.snav__inner{max-width:var(--max-w-lg);margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:58px}
.snav__logo{font-family:var(--font-display);font-size:1.15rem;font-weight:700;color:var(--gold)}
.snav__logo span{color:rgba(255,255,255,.5);font-weight:400}
.snav__back{display:flex;align-items:center;gap:.4rem;font-size:.82rem;color:rgba(255,255,255,.5);transition:color .25s}
.snav__back:hover{color:var(--gold)}
.snav__cta{background:linear-gradient(135deg,var(--gold),var(--gold-dark));border:0;color:var(--bg);padding:.45rem 1rem;border-radius:6px;font-size:.76rem;font-family:var(--font-body);font-weight:700;letter-spacing:.05em;text-transform:uppercase;transition:transform .2s,box-shadow .2s;cursor:pointer}
.snav__cta:hover{transform:translateY(-1px);box-shadow:0 4px 16px rgba(196,149,108,.2)}

/* SUBPAGE HERO */
.sub-hero{padding:clamp(8rem,12vw,10rem) 1.5rem clamp(4rem,8vw,6rem);position:relative;overflow:hidden}
.sub-hero__glow{position:absolute;top:-30%;left:50%;transform:translateX(-50%);width:100%;height:70%;background:radial-gradient(ellipse,rgba(196,149,108,.05) 0%,transparent 60%);pointer-events:none}
.sub-hero__content{position:relative;z-index:1;max-width:750px;margin:0 auto;text-align:center}
.sub-hero__title{font-family:var(--font-display);font-size:clamp(2rem,4.5vw,3.2rem);font-weight:700;line-height:1.1;color:var(--white);margin:0 0 1.25rem}
.sub-hero__title em{color:var(--gold);font-style:normal}
.sub-hero__desc{font-size:clamp(.95rem,1.8vw,1.12rem);color:var(--text-secondary);max-width:600px;line-height:1.65;margin:0 auto 2rem}
.sub-hero__badges{display:flex;gap:.6rem;flex-wrap:wrap;justify-content:center}
.sub-hero__badge{display:flex;align-items:center;gap:.4rem;background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:6px;padding:.4rem .75rem;font-size:.78rem;color:var(--text-faint)}
.sub-hero__badge span:first-child{color:var(--gold)}

/* BENEFITS ROW */
.benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.benefit{background:var(--bg-card);border:1px solid var(--border);border-radius:14px;padding:2rem 1.75rem;transition:border-color .3s}
.benefit:hover{border-color:rgba(196,149,108,.18)}
.benefit__icon{font-size:1.8rem;margin-bottom:1rem}
.benefit__title{font-size:1.1rem;font-weight:700;color:var(--white);margin-bottom:.5rem}
.benefit__desc{font-size:.88rem;color:var(--text-muted);line-height:1.65}

/* PROCESS STEPS */
.proc-steps{display:flex;flex-direction:column;gap:0}
.proc{display:grid;grid-template-columns:48px 1fr;gap:1.5rem;padding:2rem 0;border-bottom:1px solid var(--border);align-items:start}
.proc:first-child{border-top:1px solid var(--border)}
.proc__num{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:rgba(196,149,108,.3);text-align:center;line-height:1}
.proc__title{font-size:1.05rem;font-weight:700;color:var(--white);margin-bottom:.35rem}
.proc__desc{font-size:.86rem;color:var(--text-muted);line-height:1.6}

/* DELIVERABLES */
.deliv-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1rem}
.deliv{display:flex;align-items:flex-start;gap:.75rem;background:var(--bg-card);border:1px solid var(--border);border-radius:10px;padding:1.25rem 1.5rem;transition:border-color .3s}
.deliv:hover{border-color:rgba(196,149,108,.15)}
.deliv__icon{color:var(--gold);font-size:.85rem;margin-top:.15rem;flex-shrink:0}
.deliv__text{font-size:.88rem;color:rgba(255,255,255,.6);line-height:1.5}
.deliv__text strong{color:var(--white);font-weight:600}

/* CONDITIONS */
.cond-list{display:flex;flex-direction:column;gap:.75rem;max-width:700px}
.cond{display:flex;align-items:flex-start;gap:1rem;padding:1rem 1.25rem;background:var(--bg-card);border:1px solid var(--border);border-radius:10px}
.cond__num{font-family:var(--font-display);font-size:1.1rem;font-weight:700;color:var(--gold);flex-shrink:0;width:28px;text-align:center}
.cond__text{font-size:.88rem;color:var(--text-muted);line-height:1.55}
.cond__text strong{color:var(--white)}

/* TESTIMONIAL BLOCK */
.testi{background:rgba(196,149,108,.04);border:1px solid rgba(196,149,108,.1);border-left:3px solid var(--gold);border-radius:0 14px 14px 0;padding:2rem 2.5rem;max-width:700px}
.testi__quote{font-family:var(--font-display);font-size:1.15rem;font-style:italic;color:rgba(255,255,255,.7);line-height:1.55;margin-bottom:1rem}
.testi__author{font-size:.85rem;color:var(--gold);font-weight:600}
.testi__role{font-size:.75rem;color:var(--text-faint);margin-top:.15rem}

/* PRICING BOX */
.price-box{background:rgba(196,149,108,.05);border:1px solid rgba(196,149,108,.15);border-radius:14px;padding:2rem 2.5rem;max-width:500px;text-align:center}
.price-box__amount{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,2.5rem);font-weight:700;color:var(--gold);margin-bottom:.25rem}
.price-box__note{font-size:.82rem;color:var(--text-faint);margin-bottom:1.5rem}

/* CTA SECTION */
.cta-section{background:rgba(196,149,108,.03);border-top:1px solid rgba(196,149,108,.08)}
.cta-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
@media(max-width:700px){.cta-grid{grid-template-columns:1fr;gap:2rem}}
.cta-info__text{font-size:.92rem;color:var(--text-secondary);line-height:1.7;margin-bottom:1.5rem}
.form{display:flex;flex-direction:column;gap:1rem}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:500px){.form__row{grid-template-columns:1fr}}
.form__group{display:flex;flex-direction:column;gap:.35rem}
.form__label{font-size:.72rem;color:var(--text-faint);font-weight:500;letter-spacing:.06em;text-transform:uppercase}
.form__input,.form__select,.form__textarea{background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:8px;padding:.7rem 1rem;font-size:.88rem;font-family:var(--font-body);color:var(--white);transition:border-color .25s;outline:none}
.form__input:focus,.form__select:focus,.form__textarea:focus{border-color:rgba(196,149,108,.35)}
.form__input::placeholder,.form__textarea::placeholder{color:var(--text-ghost)}
.form__select{cursor:pointer;-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C8956C' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}
.form__select option{background:var(--bg);color:var(--white)}
.form__textarea{resize:vertical;min-height:100px}
.form__submit{display:flex;align-items:center;justify-content:center;gap:.4rem;width:100%;padding:.85rem 2rem;border-radius:8px;cursor:pointer;font-size:.9rem;font-family:var(--font-body);font-weight:700;border:none;background:linear-gradient(135deg,var(--gold),var(--gold-dark));color:var(--bg);transition:all .25s}
.form__submit:hover{transform:translateY(-2px);box-shadow:0 6px 24px rgba(196,149,108,.25)}
.form__note{font-size:.72rem;color:var(--text-ghost);text-align:center}
.form__success{display:none;text-align:center;padding:2rem}
.form__success h3{font-family:var(--font-display);font-size:1.4rem;color:var(--gold);margin-bottom:.5rem}
.form__success p{font-size:.9rem;color:var(--text-muted)}

/* OTHER SERVICES */
.other-svc{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1rem}
.other-svc__card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:1.5rem;transition:border-color .3s,transform .3s}
.other-svc__card:hover{border-color:rgba(196,149,108,.18);transform:translateY(-2px)}
.other-svc__icon{font-size:1.4rem;margin-bottom:.6rem}
.other-svc__title{font-size:.95rem;font-weight:700;color:var(--white);margin-bottom:.3rem}
.other-svc__desc{font-size:.8rem;color:var(--text-muted);line-height:1.5;margin-bottom:.75rem}
.other-svc__link{font-size:.78rem;color:var(--gold);font-weight:600;display:inline-flex;align-items:center;gap:.3rem}

.footer{max-width:var(--max-w-lg);margin:0 auto;padding:3rem 1.5rem 2rem;border-top:1px solid rgba(255,255,255,.04);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer__brand{font-family:var(--font-display);font-size:1rem;font-weight:700;color:rgba(196,149,108,.5)}
.footer__info,.footer__copy{font-size:.75rem;color:var(--text-ghost)}

@media(max-width:650px){.svc-2col{grid-template-columns:1fr!important}}
