@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap";:root{--ink: #0D1420;--ink-mid: #162030;--ink-light: #1D2D42;--gold: #4A7FBA;--gold-light: #6C9FD0;--steel: #2E608C;--fog: #5A7A9C;--paper: #F2F5F9;--paper-mid: #E4EAF2;--white: #FFFFFF;--nav-h: 72px;--section-pad: 120px;--side-pad: clamp(24px, 5vw, 80px);--radius-sm: 4px;--radius-md: 8px;--radius-lg: 16px;--ease-out: cubic-bezier(.16, 1, .3, 1);--ease-in-out: cubic-bezier(.45, 0, .55, 1);--shadow-card: 0 2px 12px rgba(12, 15, 26, .08), 0 0 0 1px rgba(12, 15, 26, .04);--shadow-hover: 0 8px 32px rgba(12, 15, 26, .14), 0 0 0 1px rgba(12, 15, 26, .06)}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}body{font-family:Inter,system-ui,sans-serif;background:var(--paper);color:var(--ink);line-height:1.6;font-size:16px;-webkit-font-smoothing:antialiased}img,svg{display:block;max-width:100%}a{color:inherit;text-decoration:none}ul,ol{list-style:none}button,input,textarea,select{font:inherit;outline:none;border:none;background:none}button{cursor:pointer}h1,h2,h3,h4{line-height:1.15;font-weight:700}.serif{font-family:Playfair Display,Georgia,serif}.display-xl{font-family:Playfair Display,Georgia,serif;font-size:clamp(52px,8vw,108px);font-weight:800;line-height:1;letter-spacing:-.03em}.display-lg{font-family:Playfair Display,Georgia,serif;font-size:clamp(38px,5.5vw,72px);font-weight:700;line-height:1.1;letter-spacing:-.02em}.display-md{font-family:Playfair Display,Georgia,serif;font-size:clamp(28px,3.5vw,48px);font-weight:700;line-height:1.2;letter-spacing:-.02em}.label-tag{font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--gold)}.body-lg{font-size:18px;line-height:1.7}.body-md{font-size:16px;line-height:1.7}.body-sm{font-size:14px;line-height:1.6}.container{max-width:1240px;margin:0 auto;padding:0 var(--side-pad)}.container-wide{max-width:1440px;margin:0 auto;padding:0 var(--side-pad)}.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:40px}.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}.flex{display:flex}.flex-center{display:flex;align-items:center;justify-content:center}.flex-between{display:flex;align-items:center;justify-content:space-between}.flex-col{display:flex;flex-direction:column}.gap-8{gap:8px}.gap-16{gap:16px}.gap-24{gap:24px}.gap-32{gap:32px}.gap-48{gap:48px}.site-nav{position:fixed;top:0;left:0;right:0;height:var(--nav-h);z-index:100;transition:background .3s var(--ease-out),box-shadow .3s var(--ease-out),backdrop-filter .3s}.site-nav.scrolled{background:#0c0f1aeb;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 1px #c9a45426}.site-nav.light{background:transparent}.site-nav.light.scrolled{background:#0c0f1aeb}.nav-inner{height:var(--nav-h);display:flex;align-items:center;justify-content:space-between;gap:32px}.nav-logo{display:flex;align-items:center;gap:10px;flex-shrink:0}.nav-logo-mark{width:32px;height:32px}.nav-logo-text{font-size:15px;font-weight:700;color:var(--white);letter-spacing:-.01em;line-height:1.2}.nav-logo-text span{display:block;font-weight:400;font-size:11px;letter-spacing:.06em;color:var(--gold);text-transform:uppercase}.nav-links{display:flex;align-items:center;gap:4px}.nav-link{position:relative;padding:8px 14px;font-size:13.5px;font-weight:500;color:#ffffffc7;letter-spacing:.01em;transition:color .2s;border-radius:var(--radius-sm)}.nav-link:after{content:"";position:absolute;bottom:4px;left:14px;right:14px;height:1.5px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .25s var(--ease-out)}.nav-link:hover{color:var(--white)}.nav-link:hover:after,.nav-link.active:after{transform:scaleX(1)}.nav-link.active{color:var(--white)}.nav-actions{display:flex;align-items:center;gap:12px;flex-shrink:0}.nav-x-link{display:flex;align-items:center;padding:8px;color:#fff9;transition:color .2s}.nav-x-link:hover{color:var(--white)}.nav-x-link svg{width:18px;height:18px;fill:currentColor}.btn-nav{padding:9px 22px;background:var(--gold);color:var(--ink);font-size:13.5px;font-weight:600;border-radius:var(--radius-sm);letter-spacing:.01em;transition:background .2s,transform .15s}.btn-nav:hover{background:var(--gold-light);transform:translateY(-1px)}.burger{display:none;flex-direction:column;gap:5px;padding:8px;cursor:pointer}.burger span{display:block;width:22px;height:2px;background:var(--white);border-radius:2px;transition:transform .25s var(--ease-out),opacity .2s}.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}.burger.open span:nth-child(2){opacity:0}.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}.mobile-menu{display:none;position:fixed;inset:var(--nav-h) 0 0 0;background:var(--ink);z-index:99;flex-direction:column;padding:32px var(--side-pad) 48px;transform:translate(100%);transition:transform .35s var(--ease-out)}.mobile-menu.open{display:flex;transform:translate(0)}.mobile-menu .nav-link{font-size:22px;font-weight:600;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08);border-radius:0}.mobile-menu .nav-link:after{display:none}.mobile-menu .nav-link:hover{color:var(--gold)}.mobile-footer{margin-top:auto;display:flex;flex-direction:column;gap:16px}.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;font-size:15px;font-weight:600;border-radius:var(--radius-sm);transition:all .2s var(--ease-out);letter-spacing:.01em;cursor:pointer}.btn-primary{background:var(--gold);color:var(--ink)}.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px #c9a45459}.btn-ghost{color:var(--white);border:1.5px solid rgba(255,255,255,.3)}.btn-ghost:hover{border-color:var(--white);background:#ffffff0f;transform:translateY(-2px)}.btn-outline{color:var(--ink);border:1.5px solid var(--ink)}.btn-outline:hover{background:var(--ink);color:var(--white);transform:translateY(-2px)}.btn-sm{padding:10px 22px;font-size:13.5px}.btn svg{width:16px;height:16px}.hero{position:relative;background:var(--ink);color:var(--white);padding-top:calc(var(--nav-h) + 80px);padding-bottom:100px;overflow:hidden}.hero-bg-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(74,125,191,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(74,125,191,.07) 1px,transparent 1px);background-size:72px 72px;-webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 0%,black 40%,transparent 100%);mask-image:radial-gradient(ellipse 80% 80% at 50% 0%,black 40%,transparent 100%)}.hero-wave{position:absolute;bottom:0;left:0;right:0;height:200px;overflow:hidden}.hero-wave svg{width:100%;height:100%}.hero-tag{display:inline-flex;align-items:center;gap:10px;margin-bottom:28px}.hero-tag-line{display:block;width:32px;height:1.5px;background:var(--gold)}.hero-heading{font-family:Playfair Display,Georgia,serif;font-size:clamp(52px,7.5vw,104px);font-weight:800;line-height:1;letter-spacing:-.03em;max-width:840px;margin-bottom:28px}.hero-heading em{font-style:italic;color:var(--gold)}.hero-body{font-size:clamp(17px,1.5vw,20px);color:#ffffffb3;max-width:540px;line-height:1.75;margin-bottom:48px}.hero-actions{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.hero-stat-row{display:flex;gap:56px;margin-top:80px;padding-top:48px;border-top:1px solid rgba(255,255,255,.1);flex-wrap:wrap}.hero-stat-num{font-family:Playfair Display,Georgia,serif;font-size:42px;font-weight:800;color:var(--gold);line-height:1;letter-spacing:-.02em}.hero-stat-label{font-size:13px;color:#ffffff8c;margin-top:6px;letter-spacing:.02em}.section{padding:var(--section-pad) 0}.section-dark{background:var(--ink);color:var(--white)}.section-mid{background:var(--ink-mid);color:var(--white)}.section-paper{background:var(--paper);color:var(--ink)}.section-paper-mid{background:var(--paper-mid);color:var(--ink)}.section-header{margin-bottom:64px}.section-header.center{text-align:center}.section-header.center p{margin:0 auto}.section-header .label-tag{margin-bottom:16px}.section-header h2{font-family:Playfair Display,Georgia,serif;font-size:clamp(32px,4vw,56px);font-weight:700;line-height:1.1;letter-spacing:-.02em;margin-bottom:20px}.section-header p{max-width:560px;color:var(--fog);font-size:17px;line-height:1.75}.section-dark .section-header p,.section-mid .section-header p{color:#fff9}.rule{height:1px;background:#0000001a;margin:0}.rule-dark{height:1px;background:#ffffff1a;margin:0}.service-card{padding:40px;background:var(--paper);border:1px solid var(--paper-mid);border-radius:var(--radius-md);transition:box-shadow .25s var(--ease-out),transform .25s var(--ease-out);position:relative;overflow:hidden}.service-card:before{content:"";position:absolute;top:0;left:0;width:3px;height:100%;background:var(--gold);transform:scaleY(0);transform-origin:bottom;transition:transform .3s var(--ease-out)}.service-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}.service-card:hover:before{transform:scaleY(1)}.service-num{font-family:Playfair Display,Georgia,serif;font-size:56px;font-weight:800;color:var(--paper-mid);line-height:1;letter-spacing:-.04em;margin-bottom:20px;transition:color .25s}.service-card:hover .service-num{color:#c9a45426}.service-card h3{font-size:19px;font-weight:700;margin-bottom:12px;letter-spacing:-.01em}.service-card p{color:var(--fog);font-size:15px;line-height:1.7}.service-icon{width:40px;height:40px;margin-bottom:20px;color:var(--gold)}.stats-bar{background:var(--ink);padding:64px 0;color:var(--white)}.stats-bar-inner{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-md);overflow:hidden}.stat-cell{padding:40px 36px;border-right:1px solid rgba(255,255,255,.1);transition:background .25s}.stat-cell:last-child{border-right:none}.stat-cell:hover{background:#ffffff08}.stat-value{font-family:Playfair Display,Georgia,serif;font-size:48px;font-weight:800;color:var(--gold);line-height:1;letter-spacing:-.03em;margin-bottom:8px}.stat-label{font-size:13px;color:#ffffff80;letter-spacing:.04em;text-transform:uppercase}.feature-item{display:flex;gap:20px;align-items:flex-start;padding:28px 0;border-bottom:1px solid rgba(0,0,0,.08)}.feature-item:last-child{border-bottom:none}.feature-bullet{width:8px;height:8px;border-radius:50%;background:var(--gold);margin-top:8px;flex-shrink:0}.feature-item h4{font-size:16px;font-weight:700;margin-bottom:6px;letter-spacing:-.01em}.feature-item p{font-size:14.5px;color:var(--fog);line-height:1.65}.client-logo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:#00000014;border:1px solid rgba(0,0,0,.08);border-radius:var(--radius-md);overflow:hidden}.client-logo-cell{background:var(--white);padding:40px 32px;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--fog);transition:background .2s,color .2s;min-height:120px}.client-logo-cell:hover{background:var(--paper);color:var(--ink)}.testimonial{padding:48px;background:var(--ink-light);border-radius:var(--radius-md);border-left:3px solid var(--gold)}.testimonial-quote{font-family:Playfair Display,Georgia,serif;font-size:22px;font-style:italic;color:#ffffffe6;line-height:1.55;margin-bottom:28px}.testimonial-author{font-size:14px;font-weight:600;color:var(--gold);letter-spacing:.04em}.testimonial-org{font-size:13px;color:#ffffff73;margin-top:4px}.team-card{background:var(--white);border:1px solid var(--paper-mid);border-radius:var(--radius-md);overflow:hidden;transition:box-shadow .25s var(--ease-out),transform .25s var(--ease-out)}.team-card:hover{box-shadow:var(--shadow-hover);transform:translateY(-4px)}.team-photo{height:240px;background:var(--ink-light);display:flex;align-items:flex-end;padding:24px}.team-info{padding:28px}.team-info h3{font-size:18px;font-weight:700;margin-bottom:4px}.team-info .role{font-size:13px;color:var(--gold);font-weight:600;letter-spacing:.06em;text-transform:uppercase;margin-bottom:14px}.team-info p{font-size:14px;color:var(--fog);line-height:1.65}.contact-section{background:var(--ink);color:var(--white);padding:var(--section-pad) 0}.form-wrapper{max-width:640px}.form-group{margin-bottom:24px}.form-label{display:block;font-size:13px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#ffffff8c;margin-bottom:10px}.form-input,.form-textarea,.form-select{width:100%;padding:14px 18px;background:#ffffff0d;border:1.5px solid rgba(255,255,255,.14);border-radius:var(--radius-sm);color:var(--white);font-size:15px;transition:border-color .2s,background .2s}.form-input::placeholder,.form-textarea::placeholder{color:#ffffff4d}.form-input:focus,.form-textarea:focus,.form-select:focus{border-color:var(--gold);background:#ffffff12}.form-textarea{min-height:140px;resize:vertical}.form-select option{background:var(--ink-mid)}.form-error{display:none;font-size:12px;color:#f87171;margin-top:6px;font-weight:500}.form-group.invalid .form-error{display:block}.form-group.invalid .form-input,.form-group.invalid .form-textarea,.form-group.invalid .form-select{border-color:#f87171}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}.form-success{display:none;text-align:center;padding:64px 0}.form-success.visible{display:block}.success-icon{width:64px;height:64px;border-radius:50%;background:#c9a45426;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}.success-icon svg{width:28px;height:28px;color:var(--gold)}.site-footer{background:var(--ink);color:var(--white);padding:80px 0 40px}.footer-top{display:grid;grid-template-columns:1fr 1.4fr;gap:80px;padding-bottom:64px;border-bottom:1px solid rgba(255,255,255,.1)}.footer-brand{display:flex;flex-direction:column;gap:20px}.footer-logo{display:flex;align-items:center;gap:10px}.footer-logo-mark{width:36px;height:36px}.footer-logo-text{font-size:16px;font-weight:700;letter-spacing:-.01em}.footer-logo-text span{display:block;font-size:11px;font-weight:400;letter-spacing:.08em;color:var(--gold);text-transform:uppercase}.footer-tagline{font-size:14px;color:#ffffff73;max-width:280px;line-height:1.7}.footer-social{display:flex;gap:12px;margin-top:4px}.footer-social a{width:36px;height:36px;border:1px solid rgba(255,255,255,.15);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:#ffffff8c;transition:border-color .2s,color .2s,background .2s}.footer-social a:hover{border-color:var(--gold);color:var(--gold);background:#c9a45414}.footer-social svg{width:16px;height:16px;fill:currentColor}.footer-nav-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}.footer-col h4{font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:20px}.footer-col ul{display:flex;flex-direction:column;gap:10px}.footer-col li a{font-size:14px;color:#ffffff8c;transition:color .2s}.footer-col li a:hover{color:var(--white)}.footer-col .contact-line{font-size:14px;color:#ffffff8c;line-height:1.6;word-break:break-word}.footer-col .contact-line a{color:#ffffff8c;transition:color .2s}.footer-col .contact-line a:hover{color:var(--gold)}.footer-bottom{display:flex;align-items:center;justify-content:space-between;padding-top:32px;gap:20px;flex-wrap:wrap}.footer-copy{font-size:13px;color:#ffffff4d}.footer-legal{display:flex;gap:20px}.footer-legal a{font-size:13px;color:#ffffff4d;transition:color .2s}.footer-legal a:hover{color:#ffffffa6}.page-hero{background:var(--ink);color:var(--white);padding:calc(var(--nav-h) + 72px) 0 80px;position:relative;overflow:hidden}.page-hero .hero-bg-grid{-webkit-mask-image:radial-gradient(ellipse 100% 100% at 50% 0%,black 40%,transparent 100%);mask-image:radial-gradient(ellipse 100% 100% at 50% 0%,black 40%,transparent 100%)}.page-hero-label{margin-bottom:20px}.page-hero h1{font-family:Playfair Display,Georgia,serif;font-size:clamp(40px,5.5vw,72px);font-weight:800;line-height:1.05;letter-spacing:-.03em;margin-bottom:20px}.page-hero p{font-size:18px;color:#ffffffa6;max-width:560px;line-height:1.75}.prose{max-width:760px;font-size:16px;line-height:1.8;color:var(--ink)}.prose h2{font-size:26px;font-weight:700;margin-top:52px;margin-bottom:16px;letter-spacing:-.01em}.prose h3{font-size:19px;font-weight:700;margin-top:36px;margin-bottom:12px}.prose p{margin-bottom:20px;color:var(--fog)}.prose p:last-child{margin-bottom:0}.prose ul{list-style:disc;padding-left:22px;margin-bottom:20px;color:var(--fog)}.prose ul li{margin-bottom:8px}.prose a{color:var(--steel);text-decoration:underline}.prose a:hover{color:var(--ink)}.prose-last-updated{display:inline-flex;align-items:center;gap:8px;font-size:13px;color:var(--fog);margin-bottom:48px;padding:10px 16px;background:var(--paper-mid);border-radius:var(--radius-sm)}.highlight-box{padding:40px 48px;background:linear-gradient(135deg,var(--ink) 0%,var(--ink-light) 100%);border-radius:var(--radius-md);border:1px solid rgba(201,164,84,.2);color:var(--white)}.highlight-box h3{font-family:Playfair Display,Georgia,serif;font-size:28px;font-weight:700;margin-bottom:12px;letter-spacing:-.01em}.highlight-box p{color:#ffffffa6;font-size:16px;line-height:1.7;margin-bottom:24px}.sector-list{display:flex;flex-wrap:wrap;gap:10px}.sector-badge{padding:7px 16px;border:1.5px solid rgba(0,0,0,.14);border-radius:100px;font-size:13px;font-weight:500;color:var(--ink-mid);transition:border-color .2s,background .2s}.sector-badge:hover{border-color:var(--gold);background:#c9a4540f}.step-list{display:flex;flex-direction:column;gap:0}.step-item{display:grid;grid-template-columns:64px 1fr;gap:28px;padding:36px 0;border-bottom:1px solid rgba(0,0,0,.08);align-items:start}.step-item:last-child{border-bottom:none}.step-num{font-family:Playfair Display,Georgia,serif;font-size:36px;font-weight:800;color:var(--gold);line-height:1}.step-item h4{font-size:18px;font-weight:700;margin-bottom:8px}.step-item p{font-size:15px;color:var(--fog);line-height:1.65}.cta-banner{background:var(--gold);padding:80px 0;text-align:center}.cta-banner h2{font-family:Playfair Display,Georgia,serif;font-size:clamp(32px,4vw,52px);font-weight:800;color:var(--ink);letter-spacing:-.02em;margin-bottom:16px}.cta-banner p{font-size:17px;color:#0c0f1ab3;margin-bottom:36px;max-width:480px;margin-left:auto;margin-right:auto}.cta-banner .btn-primary{background:var(--ink);color:var(--white)}.cta-banner .btn-primary:hover{background:var(--ink-mid);box-shadow:0 8px 24px #0c0f1a4d}.fade-up{opacity:0;transform:translateY(32px);transition:opacity .65s var(--ease-out),transform .65s var(--ease-out)}.fade-up.visible{opacity:1;transform:translateY(0)}.fade-up-delay-1{transition-delay:.1s}.fade-up-delay-2{transition-delay:.2s}.fade-up-delay-3{transition-delay:.3s}.fade-up-delay-4{transition-delay:.4s}@media(max-width:1024px){:root{--section-pad: 80px}.grid-4,.stats-bar-inner{grid-template-columns:repeat(2,1fr)}.stat-cell:nth-child(2){border-right:none}.stat-cell:nth-child(3){border-top:1px solid rgba(255,255,255,.1)}.footer-top{grid-template-columns:1fr;gap:48px}.footer-nav-cols{grid-template-columns:repeat(3,1fr)}}@media(max-width:768px){:root{--section-pad: 64px}.nav-links,.nav-actions{display:none}.burger{display:flex}.grid-2{grid-template-columns:1fr;gap:24px}.grid-3{grid-template-columns:1fr;gap:20px}.client-logo-grid,.footer-nav-cols{grid-template-columns:repeat(2,1fr)}.hero-stat-row{gap:32px;margin-top:56px}.step-item{grid-template-columns:48px 1fr;gap:16px}.form-row{grid-template-columns:1fr}.footer-bottom{flex-direction:column;align-items:flex-start}}@media(max-width:480px){:root{--section-pad: 48px}.stats-bar-inner{grid-template-columns:1fr}.stat-cell{border-right:none;border-bottom:1px solid rgba(255,255,255,.1)}.stat-cell:last-child{border-bottom:none}.client-logo-grid,.footer-nav-cols{grid-template-columns:1fr}.service-card,.highlight-box{padding:28px}}
